:root {
  --white:   #ffffff;
  --off:     #f7f7f7;
  --light:   #f2f2f2;
  --border:  #e5e5e5;
  --border2: #cccccc;
  --black:   #0a0a0a;
  --ink:     #111111;
  --mid:     #555555;
  --muted:   #888888;
  --dark-bg: #111111;
  --dark-bg2:#1a1a1a;
  --dark-border: #2a2a2a;
  --font-h: 'Space Grotesk', sans-serif;
  --font-b: 'Inter', sans-serif;
  --max-w: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-b);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 1280px) { .container { padding: 0 48px; } }
@media (max-width: 1024px) { .container { padding: 0 40px; } }
@media (max-width: 768px)  { .container { padding: 0 28px; } }
@media (max-width: 480px)  { .container { padding: 0 20px; } }

/* Eyebrow */
.eyebrow {
  font-family: var(--font-h);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content:''; width:24px; height:1px; background:var(--muted); flex-shrink:0; }
.eyebrow--light { color: rgba(255,255,255,0.45); }
.eyebrow--light::before { background: rgba(255,255,255,0.3); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal--right { transform: translateX(24px); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } }


/* NAVBAR */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto;
  padding: 0 64px; height: 72px; position: relative;
}
.navbar__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; z-index: 1; }
.navbar__logo-icon { height: 32px; width: auto; object-fit: contain; display: block; }
.navbar__logo-text { height: 16px; width: auto; object-fit: contain; display: block; }
.navbar__logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
  white-space: nowrap;
  line-height: 1;
}

.navbar__nav {
  display: flex; align-items: center;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.navbar__link {
  font-family: var(--font-h); font-size: 13px; font-weight: 500;
  letter-spacing: -0.01em; color: #111; padding: 10px 20px;
  text-decoration: none; transition: opacity 0.2s ease; white-space: nowrap;
}
.navbar__link:hover { opacity: 0.45; }

.navbar__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-size: 13px; font-weight: 600;
  color: #111; background: #fff; border: 1.5px solid #111;
  border-radius: 100px; height: 44px; padding: 0 24px;
  text-decoration: none; flex-shrink: 0; z-index: 1;
  transition: all 0.22s ease;
}
.navbar__cta:hover { background: #111; color: #fff; transform: translateY(-1px); }
.navbar__cta-arrow { flex-shrink: 0; transition: transform 0.2s; }
.navbar__cta:hover .navbar__cta-arrow { transform: translate(2px,-2px); }

.navbar__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer; flex-shrink: 0; z-index: 910;
}
.navbar__hamburger span {
  display: block; width: 22px; height: 1.5px; background: #111;
  transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.navbar__mobile {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; position: fixed; inset: 0; top: 72px; background: #fff;
  padding: 40px 24px; z-index: 899; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.navbar__mobile.open { opacity: 1; pointer-events: all; display: flex; }
.navbar__mobile-link {
  font-family: var(--font-h); font-size: 28px; font-weight: 500;
  color: #111; text-decoration: none; padding: 12px 0; transition: opacity 0.2s;
}
.navbar__mobile-link:hover { opacity: 0.45; }
.navbar__mobile-cta {
  margin-top: 24px; font-family: var(--font-h); font-size: 14px; font-weight: 600;
  color: #111; border: 1.5px solid #111; border-radius: 100px; padding: 13px 32px;
  text-decoration: none; transition: all 0.2s;
}
.navbar__mobile-cta:hover { background: #111; color: #fff; }

@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__inner { height: 60px; padding: 0 24px; }
}
@media (max-width: 480px) {
  .navbar__inner { padding: 0 16px; }
  .navbar__logo-icon { height: 26px; }
  .navbar__logo-text { height: 13px; }
}

/* HERO — white left, black right panel */
.hero {
  min-height: 100vh; padding-top: 72px;
  display: flex; align-items: center; overflow: hidden;
  background: #ffffff; position: relative; z-index: 1;
}
/* Architectural photo — right half, fades to white on left */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 62%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center center;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
  /* Fade left edge into white */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 20%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 20%, black 60%);
}
.hero__inner { position: relative; z-index: 1; }

.hero__inner { position: relative; z-index: 1; }
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: 60px; padding-bottom: 60px;
  width: 100%;
}
.hero__headline {
  font-family: var(--font-h);
  font-size: clamp(44px, 6vw, 86px); font-weight: 400;
  line-height: 1.0; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 24px;
}
.hero__headline strong { font-weight: 700; }
.hero__sub { font-size: 16px; line-height: 1.75; color: var(--mid); font-weight: 300; max-width: 400px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__stats { display: flex; gap: 40px; border-top: 1px solid var(--border); padding-top: 32px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num { font-family: var(--font-h); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.stat__label { font-size: 12px; color: var(--muted); font-weight: 400; }

.hero__right { display: flex; justify-content: center; align-items: center; }
.hero__panel {
  position: relative; width: 100%; max-width: 500px; aspect-ratio: 1/0.9;
  background: var(--dark-bg); display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer;
}
.hero__panel-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.hero__panel-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none; z-index: 0; animation: ring-pulse 3.5s ease-out infinite;
}
.hero__panel-ring:nth-child(2) { animation-delay: 1.15s; }
.hero__panel-ring:nth-child(3) { animation-delay: 2.3s; }
@keyframes ring-pulse {
  0%   { width:80px;height:80px;opacity:0.6;transform:translate(-50%,-50%);left:50%;top:50%; }
  100% { width:420px;height:420px;opacity:0;transform:translate(-50%,-50%);left:50%;top:50%; }
}
.hero__panel-logo {
  width: 82%; height: auto; object-fit: contain; filter: invert(1); mix-blend-mode: screen;
  position: relative; z-index: 1; animation: logo-float 5s ease-in-out infinite;
  transition: transform 0.4s var(--ease), filter 0.4s;
}
@keyframes logo-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
.hero__panel:hover .hero__panel-logo { transform: scale(1.05) translateY(-4px); filter: invert(1) drop-shadow(0 0 24px rgba(255,255,255,0.2)); mix-blend-mode: normal; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero__right { display: none; }
  .hero__headline { font-size: clamp(40px, 9vw, 64px); }
}

/* SERVICES — white bg */
.services { background: #ffffff; border-top: 1px solid var(--border); }
.services__inner { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; width: 100%; }
@media (max-width: 900px) { .services__inner { grid-template-columns: 1fr; gap: 48px; } }

.services__title { font-family: var(--font-h); font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 18px; }
.services__desc { font-size: 14px; line-height: 1.75; color: var(--mid); font-weight: 300; margin-bottom: 24px; }
.services__link { font-family: var(--font-h); font-size: 13px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.services__link:hover { gap: 10px; }

.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 700px) { .services__grid { grid-template-columns: repeat(2,1fr); } }

.svc-card { background: #fff; padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: background 0.2s; position: relative; }
.svc-card:hover { background: var(--off); }
.svc-card__icon { color: var(--muted); margin-bottom: 4px; }
.svc-card__title { font-family: var(--font-h); font-size: 16px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); }
.svc-card__desc { font-size: 12px; line-height: 1.6; color: var(--muted); font-weight: 300; }

/* EXPERTISE — black bg */
.expertise { background: #111111; }
.expertise .container { position: relative; z-index: 1; }
.expertise .section__header .eyebrow { color: rgba(255,255,255,0.4); }
.expertise .section__header .eyebrow::before { background: rgba(255,255,255,0.25); }
.expertise .section__title { color: #ffffff; }
.expertise__list { border-top: 1px solid #222; }
.expertise__item {
  display: grid; grid-template-columns: 280px 1fr auto;
  gap: 40px; align-items: center; padding: 36px 0;
  border-bottom: 1px solid #1e1e1e; transition: border-color 0.2s; cursor: default;
}
.expertise__item:hover { border-color: #333; }
.expertise__item:hover .expertise__caret { color: #fff; transform: translate(2px,-2px); }
.expertise__item:hover .expertise__name { color: #fff; }
.expertise__left { display: flex; align-items: baseline; gap: 20px; }
.expertise__num { font-family: var(--font-h); font-size: 11px; font-weight: 500; letter-spacing: 0.15em; color: #555; flex-shrink: 0; }
.expertise__name { font-family: var(--font-h); font-size: clamp(16px,1.5vw,22px); font-weight: 600; color: #aaa; letter-spacing: -0.01em; transition: color 0.22s; }
.expertise__desc { font-size: 14px; line-height: 1.7; color: #555; font-weight: 300; }
.expertise__caret { font-size: 20px; color: #333; transition: color 0.22s, transform 0.22s; }
@media (max-width: 768px) { .expertise__item { grid-template-columns: 1fr; gap: 12px; } .expertise__caret { display: none; } }

/* WORK — black bg */
.work { background: #111111; padding: 100px 0; overflow: hidden; position: relative; z-index: 1; }
.work__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.work__top-left { max-width: 480px; }
.work__title { font-family: var(--font-h); font-size: clamp(34px,4.5vw,62px); font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; color: #fff; margin-bottom: 14px; }
.work__title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.5); }
.work__sub { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; margin-bottom: 24px; }
.work__cta-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 20px; transition: background 0.2s, border-color 0.2s;
}
.work__cta-circle:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.work__controls { display: flex; gap: 10px; align-items: center; }
.work__arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); font-size: 22px; display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.work__arrow:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); }
.work__slider-wrap { position: relative; }
.work__slider { display: flex; gap: 20px; padding: 0 48px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.work__slider::-webkit-scrollbar { display: none; }
.work-slide { flex: 0 0 420px; scroll-snap-align: start; background: #111111; border: 1px solid #222222; overflow: hidden; position: relative; transition: transform 0.3s var(--ease); }
.work-slide:hover { transform: translateY(-4px); }
.work-slide__img { overflow: hidden; height: 220px; }
.work-slide__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease), filter 0.4s; filter: brightness(0.75) saturate(0.85); }
.work-slide:hover .work-slide__img img { transform: scale(1.04); filter: brightness(0.9) saturate(1); }
.work-slide__info { padding: 20px 22px 24px; }
.work-slide__cat { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 8px; }
.work-slide__title { font-family: var(--font-h); font-size: 17px; font-weight: 600; color: #fff; line-height: 1.3; }
.work-slide__num { position: absolute; top: 16px; right: 18px; font-family: var(--font-h); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.2); }
.work__dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.wdot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; transition: background 0.2s, width 0.25s; }
.wdot.active { background: #fff; width: 20px; border-radius: 3px; }

/* PROCESS — white bg */
.process {
  background: #ffffff;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.process::after {
  content: '';
  position: absolute;
  top: -5%; right: -5%;
  width: 48%; height: 110%;
  background-image: url('https://images.unsplash.com/photo-1545987796-200677ee1011?w=900&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.process .container { position: relative; z-index: 1; }
.process__track { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; padding-top: 64px; }
.process__line { position: absolute; top: 20px; left: 12%; right: 12%; height: 1px; background: var(--border2); }
.process__step { padding: 0 24px 0 0; }
.process__marker {
  width: 42px; height: 42px; border: 1.5px solid var(--border2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: #fff;
  margin-bottom: 22px; position: relative; z-index: 1; transition: border-color 0.2s, background 0.2s;
}
.process__step:hover .process__marker { border-color: var(--ink); background: var(--ink); }
.process__step:hover .process__marker span { color: #fff; }
.process__marker span { font-family: var(--font-h); font-size: 11px; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.process__step-title { font-family: var(--font-h); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.process__step-desc { font-size: 13px; line-height: 1.7; color: var(--muted); font-weight: 300; }
@media (max-width: 768px) { .process__track { grid-template-columns: 1fr 1fr; gap: 40px; } .process__line { display: none; } }
@media (max-width: 480px) { .process__track { grid-template-columns: 1fr; } }

/* TRUST + CONTACT — split dark left / light right */
.trust__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
@media (max-width: 900px) { .trust__inner { grid-template-columns: 1fr; } }

.trust__left {
  background: #111111;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Subtle geometric shape bottom-left on dark side */
.trust__left::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -8%;
  width: 55%;
  height: 70%;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=700&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at bottom left, rgba(0,0,0,0.8) 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at bottom left, rgba(0,0,0,0.8) 0%, transparent 70%);
}
.trust__left > * { position: relative; z-index: 1; }
.trust__title { font-family: var(--font-h); font-size: clamp(30px,3.5vw,52px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 36px; }
.trust__title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.5); }
.trust-card { display: none; }
.trust-card--active { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.trust-card__stars { color: #fff; font-size: 14px; letter-spacing: 2px; }
.trust-card__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.7); font-weight: 300; font-style: italic; }
.trust-card__author { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); font-family: var(--font-h); }
.trust-card__fb { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); font-family: var(--font-h); font-weight: 500; margin-top: 4px; transition: color 0.2s; }
.trust-card__fb:hover { color: rgba(255,255,255,0.65); }
.trust__dots { display: flex; gap: 8px; margin-top: 32px; }
.tdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; transition: background 0.2s, width 0.25s; cursor: pointer; }
.tdot.tdot--active { background: #fff; width: 22px; border-radius: 4px; }

.trust__right { background: #f7f7f7; padding: 80px 64px; display: flex; flex-direction: column; }
.trust__contact-title { font-family: var(--font-h); font-size: clamp(22px,2.5vw,38px); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 28px; line-height: 1.1; }
.contact__details { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.contact__row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--mid); padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.18s; font-weight: 300; }
a.contact__row:hover { color: var(--ink); }
.contact__row svg { flex-shrink: 0; color: var(--muted); }
.contact__socials-row { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.csoc { width: 36px; height: 36px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--muted); border-radius: 4px; transition: all 0.18s; }
.csoc:hover { color: var(--ink); border-color: var(--ink); background: rgba(0,0,0,0.04); }
.contact__form { display: flex; flex-direction: column; gap: 12px; }
.form-input { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 12px 14px; font-family: var(--font-b); font-size: 14px; font-weight: 300; color: var(--ink); width: 100%; outline: none; transition: border-color 0.2s; }
.form-input::placeholder { color: var(--muted); }
.form-input:focus { border-color: var(--ink); }
.form-textarea { resize: vertical; min-height: 90px; }
.form-success { font-size: 13px; color: var(--mid); text-align: center; min-height: 16px; }

@media (max-width: 1024px) { .trust__left { padding: 60px 40px; } .trust__right { padding: 60px 40px; } }
@media (max-width: 640px)  { .trust__left { padding: 48px 24px; } .trust__right { padding: 48px 24px; } }

/* CTA BANNER — black bg */
.cta-banner { background: #111111; padding: 64px 0; position: relative; z-index: 1; }
.cta-banner__inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: space-between; }
.cta-banner__logo-wrap { flex-shrink: 0; }
.cta-banner__logo { height: 40px; filter: invert(1); mix-blend-mode: screen; }
.cta-banner__text { font-family: var(--font-h); font-size: clamp(20px,2.5vw,34px); font-weight: 700; color: #fff; letter-spacing: -0.02em; flex: 1; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn--dark { background: #fff; color: #111; border-color: #fff; }
.cta-banner .btn--dark:hover { background: #e8e8e8; }
.cta-banner .btn--outline { color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-banner .btn--outline:hover { border-color: #fff; }

/* FOOTER — white bg */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding-top: 72px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
/* World map / network on footer right */
.footer::before {
  content: '';
  position: absolute;
  top: 0; right: -5%;
  width: 55%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1000&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.045;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, transparent 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.footer .container,
.footer__inner,
.footer__bottom { position: relative; z-index: 1; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand { grid-column: 1; }
@media (max-width: 900px) { .footer__brand { grid-column: 1/-1; } }
.footer__logo { height: 36px; margin-bottom: 14px; }
.footer__tagline { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; max-width: 220px; }
.footer__logo-text { font-family: var(--font-h); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-family: var(--font-h); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.footer__link { font-size: 13px; color: var(--muted); font-weight: 300; transition: color 0.16s; }
.footer__link:hover { color: var(--ink); }
.footer__bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__copy { font-size: 12px; color: var(--muted); font-weight: 300; }
.footer__socials { display: flex; gap: 14px; align-items: center; }
.fsoc { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all 0.16s; }
.fsoc:hover { color: var(--ink); border-color: var(--ink); }

/* RESPONSIVE */
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 1280px) { .navbar__inner { padding: 0 32px; } .work__slider { padding: 0 32px; } }
@media (max-width: 1024px) { .navbar__link { padding: 10px 14px; font-size: 12px; } .hero__inner { gap: 32px; } .services__inner { grid-template-columns: 220px 1fr; gap: 48px; } .work-slide { flex: 0 0 340px; } .footer__inner { grid-template-columns: 1fr 1fr 1fr; } .footer__brand { grid-column: 1/-1; } }
@media (max-width: 900px) {
  .hero { padding-top: 60px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; padding-top: 32px; padding-bottom: 48px; }
  .hero__right { display: none; }
  .hero__stats { gap: 28px; }
  .services__inner { grid-template-columns: 1fr; gap: 36px; }
  .services__grid { grid-template-columns: repeat(2,1fr); }
  .expertise__item { grid-template-columns: 1fr; gap: 10px; }
  .work__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .work__slider { padding: 0 24px; }
  .work-slide { flex: 0 0 300px; }
  .cta-banner__inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-banner__logo-wrap { display: none; }
  .cta-banner__actions { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .work { padding: 60px 0; }
  .work__slider { padding: 0 20px; gap: 14px; }
  .work-slide { flex: 0 0 260px; }
  .work-slide__img { height: 160px; }
  .process__track { grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 48px; }
  .process__line { display: none; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .stat { min-width: calc(33% - 14px); }
  .cta-banner { padding: 48px 0; }
  .cta-banner__actions { flex-direction: column; width: 100%; max-width: 300px; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding-top: 56px; }
  .hero__inner { padding-top: 24px; padding-bottom: 36px; }
  .hero__headline { font-size: clamp(32px, 10vw, 48px); }
  .process__track { grid-template-columns: 1fr; }
  .navbar__mobile { top: 60px; }
  .footer__bottom-inner { flex-direction: column; gap: 12px; }
}

