/* =================================================================
   BETTERHALF DIGITAL v2 — Full Premium Rebuild
   =================================================================
   Palette
     --ink     #0A0F17   blue-black
     --cream   #FDFDFD   near-white
     --yellow  #E7FF00   electric accent
     --pink    #F45188   secondary accent
     --blue    #4DC4FF   tertiary accent
     --dim     rgba(253,253,253,0.45)  muted text on dark
     --border-d rgba(253,253,253,0.1) border on dark bg

   Fonts
     Body/Display  Inter (700 for headings)
================================================================= */

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── SKIP LINK (Accessibility) ─────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 10001;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

:root {
  --ink:        #0A0F17;
  --cream:      #FDFDFD;
  --yellow:     #E7FF00;
  --yellow-dk:  #c8de00;
  --pink:       #F45188;
  --blue:       #4DC4FF;
  --white:      #FFFFFF;
  --dim:        rgba(253,253,253,0.65);
  --dim2:       rgba(253,253,253,0.4);
  --border-d:   rgba(253,253,253,0.1);
  --border-l:   rgba(10,15,23,0.1);

  /* Kept for any accidental legacy references */
  --coral:      #E7FF00;
  --coral-dark: #c8de00;

  --grad-yp:  linear-gradient(56deg, #E7FF00 -15%, #F45188 115%);
  --grad-yb:  linear-gradient(56deg, #E7FF00 -15%, #4DC4FF 115%);
  --grad-bp:  linear-gradient(56deg, #4DC4FF -15%, #F45188 115%);

  --font-d: 'Inter', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --nav-h: 84px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 0.3s var(--ease-out);
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles this */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
ul { list-style: none; }
em {
  font-style: normal;
  font-weight: 800;
  background: var(--grad-em, var(--grad-yp));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Each section gets its own gradient for em text */
.hero         { --grad-em: var(--grad-yp); }
.positioning  { --grad-em: var(--grad-bp); }
.services     { --grad-em: var(--grad-yb); }
.work         { --grad-em: var(--grad-bp); }
.numbers      { --grad-em: var(--grad-yp); }
.process      { --grad-em: var(--grad-yb); }
.about        { --grad-em: var(--grad-yp); }
.testimonials { --grad-em: var(--grad-bp); }
.contact      { --grad-em: var(--grad-yb); }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 2px; }

/* ── CONTAINER ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4.5rem);
}

/* ── TYPOGRAPHY PATTERNS ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--dim2);
}

.section-title {
  font-family: var(--font-b);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

/* Line-mask text reveal pattern */
.line-mask {
  display: block;
  overflow: hidden;
}

.line-mask .line {
  display: block;
  will-change: transform;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 100px;
  cursor: none;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: rgba(231,255,0,0.1);
  color: var(--yellow);
  border: 1.5px solid rgba(231,255,0,0.3);
  font-weight: 600;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--primary:hover {
  background: rgba(231,255,0,0.18);
  border-color: rgba(231,255,0,0.55);
  box-shadow: 0 8px 32px rgba(231,255,0,0.12);
  transform: translateY(-1px);
}

.btn--outline {
  background: rgba(253,253,253,0.04);
  color: var(--cream);
  border: 1.5px solid var(--border-d);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: rgba(253,253,253,0.08);
  border-color: rgba(253,253,253,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border-d);
}
.btn--ghost:hover {
  border-color: var(--dim);
}

.btn--full { width: 100%; justify-content: center; }

/* ── GRAIN OVERLAY ────────────────────────────────────────────── */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  width: 100%;
  height: 100%;
}

/* ── CUSTOM CURSOR ────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
}

.cursor__ring {
  position: fixed;
  top: -22px;
  left: -22px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out),
              top 0.4s var(--ease-out), left 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
  will-change: transform;
}

.cursor__dot {
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
  z-index: 10001;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor--hover .cursor__ring {
  width: 64px;
  height: 64px;
  top: -32px;
  left: -32px;
  border-color: var(--yellow);
}

.cursor--hidden .cursor__ring,
.cursor--hidden .cursor__dot {
  opacity: 0;
}

/* ── LOADER ───────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
}

.loader__bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform-origin: bottom;
}

.loader__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.loader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.loader__mark {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  width: auto;
  object-fit: contain;
}

.loader__wordmark {
  display: block;
  width: auto;
  object-fit: contain;
  transform: translateY(100%);
  overflow: hidden;
}

.loader__bar-wrap {
  width: 200px;
  height: 1px;
  background: var(--border-d);
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  width: 0%;
  background: var(--grad-yp);
  transition: none;
}

.loader__count {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--dim);
}

/* ── AVAILABILITY BANNER ──────────────────────────────────────── */
.avail-banner {
  background: rgba(231,255,0,0.06);
  border-bottom: 1px solid rgba(231,255,0,0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  will-change: transform, opacity;
}

.avail-banner.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.avail-banner__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.625rem;
  font-size: 0.8125rem;
  color: var(--dim);
  flex-wrap: wrap;
}

.avail-banner__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #4ade80; }
  50% { opacity: 0.7; box-shadow: 0 0 16px #4ade80; }
}

.avail-banner__inner strong {
  color: var(--yellow);
  font-weight: 600;
}

.avail-banner__cta {
  margin-left: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--yellow);
  transition: opacity var(--transition);
}

.avail-banner__cta:hover { opacity: 0.75; }

.avail-banner__close {
  font-size: 1.125rem;
  color: var(--dim2);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: color var(--transition);
  flex-shrink: 0;
}

.avail-banner__close:hover { color: var(--cream); cursor: pointer; }

/* ── NAVIGATION — floating glass lozenge ──────────────────────── */
.nav {
  position: fixed;
  top: calc(40px + 1rem);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: top;
}

/* When banner is hidden, move nav up */
body.banner-hidden .nav {
  top: 1rem;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 860px;
  padding: 0.625rem 0.625rem 0.625rem 1.5rem;
  background: rgba(10,15,23,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  pointer-events: all;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition);
}

.nav.scrolled .nav__inner {
  background: rgba(10,15,23,0.85);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  width: auto;
  object-fit: contain;
}

.logo-wordmark {
  display: block;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--dim);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cream);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

/* CTA sits as a pill-within-pill at the right edge of the lozenge */
.nav__cta { margin-left: auto; padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  cursor: none;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + 40px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--ink);
  padding: 0 clamp(1.25rem, 4vw, 3rem) 3rem;
  display: none;
  flex-direction: column;
}

body.banner-hidden .mobile-menu {
  top: var(--nav-h);
}

.mobile-menu.open { display: flex; }

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border-d);
  margin-bottom: 1.5rem;
}

.mobile-menu__top .nav__logo {
  display: flex;
}

.mobile-menu__top .logo-wordmark {
  height: 20px;
  width: auto;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu__links a {
  font-family: var(--font-b);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  border-bottom: 1px solid var(--border-d);
  padding-bottom: 1.5rem;
}

.mobile-menu__links .btn {
  margin-top: 1rem;
  justify-content: center;
}

/* Mobile logo in hero - hidden on desktop */
.hero__mobile-logo {
  display: none;
}

@media (max-width: 800px) {
  /* Hide fixed nav and banner on mobile */
  .nav, .avail-banner, .mobile-menu { display: none !important; }
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 5vh;
  background: var(--ink);
  overflow: hidden;
}

#webgl-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 2rem;
  opacity: 0;
}

.hero__eyebrow-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulseDot 2.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero__headline {
  font-family: var(--font-b);
  font-size: clamp(2.75rem, 6.5vw, 7rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 6vh;
}

.hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero__sub {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--dim);
  max-width: 42ch;
  line-height: 1.75;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  opacity: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--dim2);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--dim2));
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

.hero__location {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim2);
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── CLIENT CREDIBILITY BAR ───────────────────────────────────── */
.clients {
  background: var(--ink);
  padding: 3rem 0;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
}

.clients__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim2);
  margin-bottom: 1.5rem;
  text-align: center;
}

.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}

.clients__name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dim);
  transition: color var(--transition);
}

.clients__name:hover { color: var(--cream); }

.clients__sep {
  color: var(--dim2);
  font-size: 0.5rem;
}

/* ── POSITIONING SECTION ──────────────────────────────────────── */
.positioning {
  background: var(--ink);
  padding: clamp(6rem, 12vh, 10rem) 0;
  border-bottom: 1px solid var(--border-d);
}

.positioning__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.positioning__body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.positioning__body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .positioning__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── SERVICES ─────────────────────────────────────────────────── */
.services {
  background: var(--ink);
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.services__header {
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.services__list {
  border-top: 1px solid var(--border-d);
}

.service-row {
  border-bottom: 1px solid var(--border-d);
  overflow: hidden;
}

.service-row__header {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  cursor: none;
  transition: color var(--transition);
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.service-row:hover .service-row__title { color: var(--yellow); }
.service-row:hover .service-row__num { color: var(--yellow); }
.service-row:hover .service-row__arrow { transform: rotate(45deg); color: var(--yellow); }

.service-row__num {
  font-family: var(--font-b);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dim2);
  transition: color var(--transition);
}

.service-row__title {
  font-family: var(--font-b);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  transition: color var(--transition);
}

.service-row__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-row__tags span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(77,196,255,0.2);
  border-radius: 100px;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.service-row:hover .service-row__tags span {
  color: var(--yellow);
  border-color: rgba(231,255,0,0.3);
}

.service-row__arrow {
  width: 20px;
  height: 20px;
  color: var(--dim2);
  transition: transform 0.4s var(--ease-out), color var(--transition);
  flex-shrink: 0;
}

.service-row__body {
  height: 0;
  overflow: hidden;
  padding-left: 5rem;
}

.service-row.is-open .service-row__body {
  /* Height set by JS */
}

.service-row__body p {
  font-size: 1rem;
  color: var(--dim);
  line-height: 1.75;
  max-width: 60ch;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.service-row__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-bottom: 2rem;
}

.service-row__body li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream);
  padding: 0.375rem 0.875rem;
  background: rgba(253,253,253,0.06);
  border-radius: 4px;
}

/* Featured service row */
.service-row--featured {
  border-left: 2px solid rgba(231,255,0,0.25);
  padding-left: 1.5rem;
  margin-left: -1.5rem;
}

.service-row--featured .service-row__header {
  grid-template-columns: 3.5rem 1fr auto auto auto;
}

.service-row__badge {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(231,255,0,0.3);
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .service-row__header {
    grid-template-columns: 2.5rem 1fr auto;
    gap: 1rem;
  }
  .service-row__tags { display: none; }
  .service-row__body { padding-left: 3.5rem; }
}

/* ── WORK (HORIZONTAL SCROLL) ─────────────────────────────────── */
.work {
  background: transparent;
  color: var(--cream);
  position: relative;
}

.work__sticky {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.work__header {
  position: absolute;
  top: clamp(6rem, 12vh, 9rem);
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.work__header .section-title { color: var(--cream); }

.work__sub {
  font-size: 0.8125rem;
  color: var(--dim);
  letter-spacing: 0.05em;
}

.work__swipe-hint { display: none; }

.work__track-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.work__track {
  display: flex;
  gap: 1.5rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: max-content;
  align-items: stretch;
  padding-top: 22vh;
}

/* Work cards */
.work-card {
  width: min(480px, 85vw);
  flex-shrink: 0;
  background: rgba(10, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--cream);
  border-radius: 16px;
  overflow: visible;
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-d);
}

/* Hover effects removed for smoother scrolling */

.work-card__image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  flex-shrink: 0;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}


/* Abstract art for placeholders */
.work-card__art {
  position: absolute;
  inset: 0;
}

.work-card__art--1::before,
.work-card__art--1::after,
.work-card__art--2::before,
.work-card__art--2::after,
.work-card__art--3::before,
.work-card__art--3::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

/* art--1: GE Vernova — energy green */
.work-card__art--1::before {
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,195,80,0.28) 0%, transparent 70%);
  top: -15%;
  right: -10%;
}
.work-card__art--1::after {
  width: 38%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,240,120,0.15) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
}

/* art--2: COP28 × UN — UN blue / climate teal */
.work-card__art--2::before {
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,160,220,0.25) 0%, transparent 70%);
  bottom: -20%;
  right: -20%;
}
.work-card__art--2::after {
  width: 42%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,220,200,0.18) 0%, transparent 70%);
  top: 10%;
  left: 10%;
}

/* art--3: Clarks — warm amber / heritage tan */
.work-card__art--3::before {
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(210,130,40,0.26) 0%, transparent 70%);
  top: -10%;
  left: -10%;
}
.work-card__art--3::after {
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,185,60,0.18) 0%, transparent 70%);
  bottom: -10%;
  right: 5%;
}

/* art--4: SIRO — deep purple / recovery */
.work-card__art--4::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 65%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(160,80,255,0.28) 0%, transparent 70%);
  top: -15%;
  right: -10%;
}
.work-card__art--4::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 40%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(220,100,255,0.15) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
}

/* art--5: Arsenal × Citroën — red / gold */
.work-card__art--5::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(220,30,50,0.28) 0%, transparent 70%);
  top: -10%;
  left: -10%;
}
.work-card__art--5::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  width: 45%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,200,20,0.18) 0%, transparent 70%);
  bottom: -10%;
  right: 5%;
}

/* Grid lines for art */
.work-card__art--1,
.work-card__art--2,
.work-card__art--3,
.work-card__art--4,
.work-card__art--5 {
  background-image:
    linear-gradient(rgba(253,253,253,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253,253,253,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.work-card__info {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card__tags {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.work-card__tags span {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(77,196,255,0.25);
  border-radius: 100px;
}

.work-card__info h3 {
  font-family: var(--font-b);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.work-card__info p {
  font-size: 0.875rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.work-card__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color var(--transition), gap var(--transition);
  margin-top: auto;
}

.work-card__link:hover { color: var(--yellow); gap: 0.625rem; }

/* CTA card — consistent dark card with gradient accent treatment */
.work-card--cta {
  background: rgba(10, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Gradient top accent line */
.work-card--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-yp);
}

/* Radial glow behind content */
.work-card--cta::after {
  content: '';
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(231,255,0,0.07) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  pointer-events: none;
}

.work-card__cta-inner {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
  height: 100%;
}

.work-card__cta-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
}

.work-card__cta-title {
  font-family: var(--font-b);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--cream);
  text-wrap: balance;
}

/* CTA card button inherits the global glass btn--primary — no override needed */

/* ── NUMBERS ──────────────────────────────────────────────────── */
.numbers {
  background: var(--ink);
  padding: clamp(5rem, 9vh, 8rem) 0;
  border-top: 1px solid var(--border-d);
}

.numbers__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.numbers__item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--border-d);
}

.numbers__item:last-child { border-right: none; }

.numbers__val {
  font-family: var(--font-b);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}

.numbers__label {
  font-size: 0.8125rem;
  color: var(--dim);
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .numbers__inner { grid-template-columns: repeat(2, 1fr); }
  .numbers__item:nth-child(2) { border-right: none; }
  .numbers__item:nth-child(3),
  .numbers__item:nth-child(4) { border-top: 1px solid var(--border-d); }
}

@media (max-width: 560px) {
  .numbers__inner { grid-template-columns: 1fr; }
  .numbers__item { border-right: none !important; border-top: 1px solid var(--border-d); }
  .numbers__item:first-child { border-top: none; }
}

/* ── PROCESS ──────────────────────────────────────────────────── */
.process {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.process .section-title { color: var(--cream); }

.process__header { margin-bottom: clamp(3rem, 6vh, 5rem); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-d);
  border-left: 1px solid var(--border-d);
}

.process-step {
  padding: 2.5rem clamp(1.5rem, 2.5vw, 2.5rem);
  border-right: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.process-step__num {
  font-family: var(--font-b);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(253,253,253,0.06);
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-step h3 {
  font-family: var(--font-b);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.025em;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--dim);
  line-height: 1.72;
  flex-grow: 1;
}

.process-step__time {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(77,196,255,0.25);
  border-radius: 100px;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__inner { grid-template-columns: repeat(2, 1fr); }
  .numbers__item:nth-child(2) { border-right: none; }
  .numbers__item:nth-child(3),
  .numbers__item:nth-child(4) { border-top: 1px solid var(--border-d); }
}

@media (max-width: 560px) {
  .process__grid { grid-template-columns: 1fr; }
  .numbers__inner { grid-template-columns: 1fr; }
  .numbers__item { border-right: none !important; border-top: 1px solid var(--border-d); }
  .numbers__item:first-child { border-top: none; }
}

/* ── ABOUT ────────────────────────────────────────────────────── */
.about {
  background: var(--ink);
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
}

.about__values {
  margin-top: 8rem;
}

.about__text .section-title {
  margin-bottom: 2rem;
}

.about__text p {
  font-size: 1.0625rem;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about__portfolio-link {
  margin-bottom: 2.5rem;
  align-self: flex-start;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-d);
}

.about__value {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-d);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about__value span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cream);
  min-width: 180px;
  flex-shrink: 0;
}

.about__value p {
  font-size: 0.875rem;
  color: var(--dim);
  line-height: 1.65;
  margin: 0;
}

/* About visual */
.about__visual { position: relative; }

.about__vis-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 500px;
  margin: auto;
}

.about__vis-block {
  position: absolute;
  border-radius: 16px;
}

.about__vis-block--1 {
  inset: 0;
  background: rgba(253,253,253,0.03);
  border: 1px solid var(--border-d);
  backdrop-filter: blur(2px);
}

.about__vis-block--2 {
  width: 58%;
  aspect-ratio: 1;
  background: var(--yellow);
  right: -6%;
  bottom: -6%;
  border-radius: 20px;
  opacity: 0.85;
}

.about__vis-block--3 {
  width: 38%;
  aspect-ratio: 1;
  background: var(--ink);
  border: 1px solid var(--border-d);
  top: -5%;
  right: -5%;
  border-radius: 12px;
}

.about__badge {
  position: absolute;
  bottom: 14%;
  left: 10%;
  background: var(--cream);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about__badge strong {
  font-family: var(--font-b);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.05em;
}

.about__badge span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(10,15,23,0.65);
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { order: -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .about__value { flex-direction: column; gap: 0.5rem; }
  .about__value span { min-width: 0; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials {
  background: transparent;
  color: var(--cream);
  padding: clamp(6rem, 12vh, 10rem) 0;
  position: relative;
}

/* testimonials eyebrow inherits global dim style */

.testimonials__slider {
  position: relative;
  margin-top: 3rem;
  min-height: 320px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.testimonial.is-active {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

.testimonial__quote {
  font-family: var(--font-b);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-style: normal;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  border: 1.5px solid var(--border-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial footer cite {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: normal;
  color: var(--cream);
}

.testimonial footer span {
  font-size: 0.8125rem;
  color: var(--dim);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonials__prev,
.testimonials__next {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--border-d);
  border-radius: 50%;
  font-size: 1rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.testimonials__prev:hover,
.testimonials__next:hover {
  background: rgba(231,255,0,0.1);
  color: var(--yellow);
  border-color: rgba(231,255,0,0.35);
}

.testimonials__count {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--dim);
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact {
  background: var(--ink);
  padding: clamp(6rem, 12vh, 10rem) 0;
}

.contact--simple .contact__inner {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact--simple .section-eyebrow { justify-content: center; }

.contact__center p {
  font-size: 1.125rem;
  color: var(--dim);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__center .btn { margin-bottom: 1.5rem; }

.contact__note {
  font-size: 0.875rem;
  color: var(--dim2);
}

.contact__note a {
  color: var(--dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.contact__note a:hover { color: var(--cream); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: flex-start;
}

.contact__title { margin-bottom: 2rem; }

.contact__left p {
  font-size: 1rem;
  color: var(--dim);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__email {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--border-d);
  transition: color var(--transition), text-decoration-color var(--transition);
  display: block;
}

.contact__email:hover {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  color: var(--cream);
  background: rgba(253,253,253,0.05);
  border: 1px solid var(--border-d);
  border-radius: 8px;
  padding: 0.875rem 1.125rem;
  width: 100%;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dim2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(231,255,0,0.04);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(253,253,253,0.4)' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: none;
}

.form-group select option {
  background: var(--ink);
  color: var(--cream);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.8125rem;
  color: var(--dim);
  text-align: center;
}

.form-success {
  background: rgba(50,200,100,0.1);
  border: 1px solid rgba(50,200,100,0.3);
  color: #4ade80;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border-d);
  padding-top: clamp(3rem, 6vh, 5rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 5vh, 4rem);
  border-bottom: 1px solid var(--border-d);
}

.footer__brand .nav__logo { margin-bottom: 1.25rem; }
/* logo-wordmark is now an <img> — no text color needed */

.footer__brand p {
  font-size: 0.875rem;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-d);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.footer__social a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(231,255,0,0.08);
}

.footer__social svg { width: 16px; height: 16px; }

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__nav-col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.25rem;
}

.footer__nav-col a {
  font-size: 0.875rem;
  color: var(--dim);
  transition: color var(--transition);
  line-height: 1.4;
}

.footer__nav-col a:hover { color: var(--cream); }

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom span { font-size: 0.8125rem; color: var(--dim); }

.footer__legal { display: flex; gap: 1.5rem; }

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--dim);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--cream); }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

/* =================================================================
   RESPONSIVE — Full Mobile Coverage
   1024 → 768 → 640 → 480 → 375px
================================================================= */

/* ── 1024px ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__headline {
    font-size: clamp(2.25rem, 6vw, 5.5rem);
  }
  .work-card { width: min(420px, 80vw); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* ── 768px ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 76px; }

  /* ─ Shared section padding ─ */
  .services,
  .numbers,
  .process,
  .about,
  .testimonials,
  .contact { padding: 4.5rem 0; }

  /* ─ Hero ─ */
  .hero { padding-bottom: 5.5rem; }

  .hero__headline {
    font-size: clamp(2rem, 7vw, 3.75rem);
    margin-bottom: 3.5vh;
  }

  .hero__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero__sub {
    font-size: 0.9375rem;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__location { display: none; }
  .hero__scroll-hint { display: none; }

  /* ─ Section titles ─ */
  .section-title {
    font-size: clamp(1.75rem, 5.5vw, 3rem);
  }

  /* ─ Services ─ */
  .service-row__header {
    grid-template-columns: 2rem 1fr auto;
    gap: 0.875rem;
    padding: 1.25rem 0;
  }

  .service-row__title {
    font-size: clamp(1.125rem, 3.5vw, 1.625rem);
  }

  .service-row__body { padding-left: 2.875rem; }

  .service-row__body ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* ─ Work — switch to native CSS scroll-snap on mobile ─ */
  .work__sticky {
    height: auto !important;
    overflow: visible;
  }

  .work__header {
    position: relative;
    top: auto;
    padding: 5rem clamp(1.25rem, 4vw, 2.5rem) 1.75rem;
  }

  .work__track-wrap {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: block;
    inset: auto;
    padding-top: 0;
    padding-bottom: 3rem;
    touch-action: pan-x pinch-zoom;
  }

  .work__track-wrap::-webkit-scrollbar { display: none; }

  .work__track {
    padding: 0 clamp(1.25rem, 4vw, 2.5rem) 0;
    padding-top: 0;
  }

  .work-card {
    width: min(380px, 85vw);
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .work-card__image {
    aspect-ratio: 16/10;
  }

  .work__sub { display: none; }
  .work__swipe-hint {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--dim);
    padding: 0 0 0.5rem;
  }

  /* ─ About ─ */
  .about__inner { gap: 3rem; }

  .about__value {
    flex-direction: column;
    gap: 0.375rem;
  }

  .about__value span { min-width: 0; }

  /* ─ Testimonials ─ */
  .testimonials__slider { min-height: 380px; }

  /* ─ Contact ─ */
  .contact__email {
    font-size: 1rem;
    word-break: break-all;
  }

  /* ─ Numbers ─ */
  .numbers__item { padding: 2rem 1.5rem; }

  /* ─ Footer ─ */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* ── 640px ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* ─ Hero ─ */
  .hero__headline {
    font-size: clamp(1.875rem, 8vw, 3rem);
  }

  /* ─ Clients bar ─ */
  .clients__logos { gap: 1rem 2rem; }
  .clients__name { font-size: 0.875rem; }

  /* ─ Services ─ */
  .service-row__title { font-size: clamp(1rem, 3.5vw, 1.375rem); }

  /* ─ Work ─ */
  .work-card { width: min(340px, 88vw); }

  .work-card__info { padding: 1.25rem 1.25rem 1.375rem; }
  .work-card__info h3 { font-size: 1.125rem; }
  .work-card__info p { font-size: 0.8125rem; }

  /* ─ Numbers ─ */
  .numbers__val { font-size: clamp(2rem, 7.5vw, 3.25rem); }
  .numbers__item { padding: 1.75rem 1.25rem; }

  /* ─ Process ─ */
  .process__grid { grid-template-columns: 1fr; }
  .process-step { padding: 2rem 1.25rem; }

  /* ─ Testimonials ─ */
  .testimonial__quote {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }

  .testimonials__slider { min-height: 420px; }

  /* ─ Buttons ─ */
  .btn {
    padding: 0.8125rem 1.375rem;
    font-size: 0.8125rem;
  }

  /* ─ Footer ─ */
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 1; }
}

/* ── 480px ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }

  /* ─ Hero ─ */
  .hero__headline {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }

  .hero__eyebrow { font-size: 0.625rem; letter-spacing: 0.14em; }

  /* ─ Section titles ─ */
  .section-title {
    font-size: clamp(1.625rem, 7.5vw, 2.25rem);
  }

  /* ─ Work cards ─ */
  .work-card { width: min(320px, 90vw); }

  /* ─ Numbers — stay 2-col ─ */
  .numbers__inner { grid-template-columns: 1fr 1fr; }
  .numbers__item:nth-child(2) { border-right: none; }
  .numbers__item:nth-child(3),
  .numbers__item:nth-child(4) { border-top: 1px solid var(--border-d); }

  /* ─ Contact form ─ */
  .form-row { grid-template-columns: 1fr; }

  /* ─ Loader ─ */
  .loader__mark { width: 54px; height: auto; }

  /* ─ Logo ─ */
  .logo-wordmark { display: none; }

  /* ─ About badge ─ */
  .about__badge strong { font-size: 2.25rem; }

  /* ─ Testimonials ─ */
  .testimonials__nav { gap: 1rem; }
  .testimonials__prev,
  .testimonials__next { width: 44px; height: 44px; }
}

/* ── 375px (standard iPhone SE / 12 mini) ──────────────────── */
@media (max-width: 375px) {
  .hero__headline {
    font-size: clamp(1.6rem, 8.5vw, 2.125rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 8vw, 1.875rem);
  }

  .work-card { width: min(300px, 92vw); }

  .numbers__val { font-size: clamp(1.75rem, 8.5vw, 2.5rem); }
  .numbers__label { font-size: 0.75rem; }

  .service-row__title { font-size: clamp(0.9375rem, 4.5vw, 1.25rem); }

  .btn { padding: 0.75rem 1.25rem; }

  .testimonial__quote {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
  }

  .testimonials__slider { min-height: 460px; }
}

/* ── REDUCE MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .line { transform: none !important; }
  .hero__sub, .hero__actions, .hero__eyebrow { opacity: 1; }
  #grain { display: none; }
}

/* ── MOBILE: SIMPLIFIED HEADER ──────────────────────────────────── */
/* Hide nav/banner on mobile, show logo in hero only */
.hero__mobile-logo {
  display: none;
}

@media (max-width: 800px) {
  .avail-banner,
  .nav,
  .mobile-menu {
    display: none !important;
    visibility: hidden !important;
  }

  .hero__mobile-logo {
    display: block !important;
    margin-bottom: 1.5rem;
  }

  .hero__mobile-logo img {
    height: 22px;
    width: auto;
  }

  .hero {
    padding-top: 3rem;
  }
}
