/* ========================================
   Dreamscape — Round 2: Enterprise Editorial
   Warm dark, no hairline cage, image-led
   ======================================== */
:root {
  /* warm dark palette */
  --bg:          oklch(0.13 0.008 70);
  --bg-2:        oklch(0.16 0.010 70);
  --bg-3:        oklch(0.20 0.012 70);
  --ink:         oklch(0.97 0.006 80);
  --ink-dim:     oklch(0.74 0.008 80);
  --ink-mute:    oklch(0.50 0.010 70);
  --rule:        oklch(0.26 0.012 70);
  --rule-strong: oklch(0.40 0.014 70);
  --gold:        oklch(0.79 0.13 82);
  --gold-hi:     oklch(0.86 0.14 84);

  --f-display: 'Archivo', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --col-w: 1500px;
  --gutter: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-display);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rule); }

/* ---------- Layout primitives ---------- */
.shell {
  width: 100%;
  max-width: var(--col-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* gold scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  z-index: 200;
  width: 0%;
  transition: width .1s linear;
  box-shadow: 0 0 14px rgba(212,168,83,0.35);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.88;
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(40px, 5.4vw, 96px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 0.94;
}
.lede {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 60ch;
}
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.gold { color: var(--gold); }
.italic-serif { font-style: italic; }

/* ---------- Reveal animations ----------
   GSAP owns these once .gsap-ready is on <html>;
   the CSS rules below are the no-JS / pre-GSAP fallback. */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .1s; }
.reveal[data-d="2"] { transition-delay: .2s; }
.reveal[data-d="3"] { transition-delay: .3s; }
.reveal[data-d="4"] { transition-delay: .4s; }

/* When GSAP boots, neutralize the CSS opacity/transform so it can drive things itself */
html.gsap-ready .reveal,
html.gsap-ready .slide-l,
html.gsap-ready .kb img,
html.gsap-ready .headline-mask > span {
  transition: none !important;
}

/* ---------- Word-mask splits (driven by JS) ---------- */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  /* small bottom padding so descenders aren't clipped */
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.word-mask__inner {
  display: inline-block;
  will-change: transform;
}
html.gsap-ready .word-mask__inner { transform: translateY(110%); }

/* Magnetic button base (GSAP writes the transform via gsap.set/to) */
.btn { will-change: transform; }
html.gsap-ready .btn .arr { transition: none; }

/* clip-path curtain reveal for headlines */
.headline-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.headline-mask > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.headline-mask.in > span,
.in .headline-mask > span { transform: translateY(0); }
.headline-mask[data-d="1"] > span { transition-delay: .1s; }
.headline-mask[data-d="2"] > span { transition-delay: .25s; }
.headline-mask[data-d="3"] > span { transition-delay: .4s; }

/* slide from left */
.slide-l { opacity: 0; transform: translateX(-32px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.slide-l.in { opacity: 1; transform: none; }
.slide-l[data-d="1"] { transition-delay: .08s; }
.slide-l[data-d="2"] { transition-delay: .16s; }
.slide-l[data-d="3"] { transition-delay: .24s; }
.slide-l[data-d="4"] { transition-delay: .32s; }

/* image ken-burns lite */
.kb { overflow: hidden; }
.kb img { transform: scale(1.06); opacity: 0; transition: transform 1.6s cubic-bezier(.2,.7,.2,1), opacity 1.4s cubic-bezier(.2,.7,.2,1); }
.kb.in img { transform: scale(1); opacity: 1; }

/* gold rule draw */
.rule-gold { height: 1px; background: var(--gold); width: 0; transition: width 1.4s cubic-bezier(.2,.7,.2,1); }
.rule-gold.in { width: 100%; }

/* ---------- Header ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav__logo-mark {
  width: 30px; height: 30px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  position: relative;
}
.nav__logo-mark::before {
  content: ""; position: absolute; inset: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.nav__menu {
  display: flex; align-items: center; gap: 40px;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
}
.nav__menu a {
  color: var(--ink-dim);
  transition: color .2s;
  position: relative; padding: 4px 0;
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-2px;
  height:1px; background: var(--gold);
  transition: right .35s ease;
}
.nav__menu a:hover::after { right: 0; }
.nav__cta {
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--gold);
  box-shadow: 0 18px 40px -14px rgba(212,168,83,0.55);
}

/* mobile burger */
.nav__burger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 4px; right: 4px; height: 1.5px; background: var(--ink);
  transition: transform .3s, opacity .3s, top .3s;
}
.nav__burger span:nth-child(1) { top: 11px; }
.nav__burger span:nth-child(2) { top: 20px; }
body.menu-open .nav__burger span:nth-child(1) { top: 16px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { top: 16px; transform: rotate(-45deg); }

/* mobile overlay menu */
.mob-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 32px 32px;
}
body.menu-open .mob-menu { transform: translateY(0); }
.mob-menu a {
  font-size: 36px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
body.menu-open .mob-menu a { opacity: 1; transform: none; }
body.menu-open .mob-menu a:nth-child(1) { transition-delay: .1s; }
body.menu-open .mob-menu a:nth-child(2) { transition-delay: .15s; }
body.menu-open .mob-menu a:nth-child(3) { transition-delay: .2s; }
body.menu-open .mob-menu a:nth-child(4) { transition-delay: .25s; }
body.menu-open .mob-menu a:nth-child(5) { transition-delay: .3s; }
body.menu-open .mob-menu a:nth-child(6) { transition-delay: .35s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  background: var(--ink);
  color: var(--bg);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, box-shadow .3s;
  min-height: 52px;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 22px 48px -16px rgba(212,168,83,0.5);
}
.btn--gold { background: var(--gold); color: var(--bg); }
.btn--gold:hover { background: var(--gold-hi); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-dim);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn .arr { width: 18px; transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }
.btn--lg { padding: 24px 32px; font-size: 15px; min-height: 60px; }

/* ---------- Sections ---------- */
.section { padding: 200px 0; position: relative; }
.section--md { padding: 160px 0; }
.section--snug { padding: 120px 0; }

.section-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 120px;
}
.section-head__title { display: flex; flex-direction: column; gap: 32px; }
.section-head__lede { padding-bottom: 8px; }

/* ============================================
   HERO — full-bleed image, massive type
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroIn 1.8s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes heroIn { to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,8,0.85) 0%, rgba(15,12,8,0.78) 40%, rgba(15,12,8,0.92) 100%),
    linear-gradient(90deg, rgba(15,12,8,0.55) 0%, rgba(15,12,8,0.25) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero__title {
  font-size: clamp(60px, 13vw, 240px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-wrap: balance;
  margin: 0;
}
.hero__title .accent { color: var(--gold); font-style: italic; font-weight: 600; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; transform: translateY(110%); transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.hero.loaded .hero__title .line > span { transform: translateY(0); }
.hero.loaded .hero__title .line:nth-child(1) > span { transition-delay: .2s; }
.hero.loaded .hero__title .line:nth-child(2) > span { transition-delay: .35s; }
/* When GSAP is driving the page, hand control of the hero curtain over to it */
html.gsap-ready .hero__title .line > span,
html.gsap-ready .hero__bottom,
html.gsap-ready .hero__chip,
html.gsap-ready .hero__media img { transition: none !important; }

.hero__bottom {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease .9s, transform .9s ease .9s;
}
.hero.loaded .hero__bottom { opacity: 1; transform: none; }
.hero__sub {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 50ch;
}
.hero__sub strong { color: var(--gold); font-weight: 500; font-style: italic; }
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .8s ease .15s, transform .8s ease .15s;
}
.hero.loaded .hero__chip { opacity: 1; transform: none; }
.hero__chip .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(212,168,83,0.6);
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,168,83,0.6); }
  50% { opacity: .5; box-shadow: 0 0 0 6px rgba(212,168,83,0); }
}

/* ============================================
   STATS — clean horizontal row, count-up
   ============================================ */
.stats {
  padding: 160px 0;
  background: var(--bg);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 0 40px;
  border-left: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 24px;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(64px, 7.5vw, 128px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
  color: var(--ink);
}
.stat__num .unit { color: var(--gold); font-weight: 700; }
.stat__label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 24ch;
}

/* ============================================
   SERVICES — editorial zigzag
   ============================================ */
.services {
  padding: 200px 0;
}
.svc-block {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 96px;
  align-items: center;
  margin-bottom: 180px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block:nth-child(even) .svc-block__media { order: 2; }
.svc-block__media {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.svc-block__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.svc-block__media:hover img { transform: scale(1.04); }
.svc-ph {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.025) 14px 15px),
    var(--bg-2);
}
.svc-ph[data-tone="a"] { background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.030) 14px 15px), var(--bg-2); }
.svc-ph[data-tone="b"] { background: repeating-linear-gradient(45deg,  transparent 0 14px, rgba(212,168,83,0.06) 14px 15px), var(--bg-2); }
.svc-ph[data-tone="c"] { background: repeating-linear-gradient(90deg,  transparent 0 22px, rgba(255,255,255,0.025) 22px 23px), var(--bg-3); }
.svc-ph[data-tone="d"] { background: repeating-linear-gradient(0deg,   transparent 0 22px, rgba(212,168,83,0.05) 22px 23px), var(--bg-2); }
.svc-block__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.15) 0%, rgba(20,16,12,0.45) 100%);
  pointer-events: none;
}
/* canvas service visuals */
.svc-block__media--canvas { background: transparent; }
.svc-block__media--canvas::after { display: none; }
.svc-canvas {
  display: block;
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
/* SVG sketch service visuals */
.svc-block__media--sketch { background: transparent; }
.svc-block__media--sketch::after { display: none; }
.svc-block__media--sketch { perspective: 800px; }
.svc-sketch {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 32px;
  will-change: transform;
  transform-style: preserve-3d;
}
/* funnel interstitial */
.funnel-break {
  position: relative;
  height: clamp(350px, 50vw, 550px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.funnel-break__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.funnel-break__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.funnel-break__text {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 24px;
}
.svc-block__chip {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(20,16,12,0.7);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-left: 1px solid var(--gold);
}
.svc-block__title {
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 24px 0 32px;
}
.svc-block__body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 50ch;
}
.svc-block__link {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rule);
  transition: border-color .3s, color .3s;
}
.svc-block__link:hover { border-color: var(--gold); color: var(--gold); }
.svc-block__link .arr { transition: transform .3s; }
.svc-block__link:hover .arr { transform: translateX(6px); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 200px 0;
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 96px;
  align-items: start;
}
.about__visual {
  aspect-ratio: 4/5;
  position: sticky;
  top: 120px;
  overflow: hidden;
}
.about__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.about__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0) 50%, rgba(20,16,12,0.5) 100%);
}
.about__list {
  display: flex; flex-direction: column;
  gap: 64px;
}
.about__row { display: flex; flex-direction: column; gap: 16px; }
.about__row h3 {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.05;
}
.about__row p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  max-width: 56ch;
}

/* ============================================
   PROCESS — large numbered editorial blocks
   ============================================ */
.process {
  padding: 200px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.process__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.18;
}
.process__bg img { width: 100%; height: 100%; object-fit: cover; }
.process__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, rgba(0,0,0,0.4) 60%, var(--bg-2) 100%);
}
.process > .shell { position: relative; z-index: 2; }

.process__rail {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proc {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 80px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--rule);
  position: relative;
  transition: padding-left .4s cubic-bezier(.2,.7,.2,1);
}
.proc:last-child { border-bottom: 1px solid var(--rule); }
.proc::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.proc:hover::before { transform: scaleX(1); }
.proc:hover { padding-left: 24px; }
.proc__num {
  font-size: clamp(72px, 9vw, 144px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.85;
  color: var(--gold);
  font-style: italic;
}
.proc__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
  line-height: 1.05;
}
.proc__body { font-size: 17px; line-height: 1.6; color: var(--ink-dim); max-width: 50ch; }
.proc__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; flex-direction: column; gap: 8px;
  text-align: right;
  padding-top: 10px;
}
.proc__tag .v { color: var(--gold); }

/* ============================================
   INDUSTRIES — full-width editorial rows w/ image preview
   ============================================ */
.industries { padding: 200px 0; position: relative; }
.industries__list { margin-top: 0; position: relative; }
.ind-row {
  display: grid;
  grid-template-columns: 1fr 2fr 60px;
  gap: 64px;
  padding: 48px 0;
  align-items: center;
  border-top: 1px solid var(--rule);
  cursor: default;
  transition: padding .4s cubic-bezier(.2,.7,.2,1), background .4s;
  position: relative;
  overflow: hidden;
}
.ind-row:last-child { border-bottom: 1px solid var(--rule); }
.ind-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,83,0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.ind-row:hover::before { transform: translateX(100%); }
.ind-row:hover {
  padding-left: 24px; padding-right: 24px;
}
.ind-row__name {
  font-size: clamp(36px, 4.4vw, 80px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 0.95;
  transition: color .3s, transform .4s cubic-bezier(.2,.7,.2,1);
}
.ind-row:hover .ind-row__name { color: var(--gold); transform: translateX(8px); }
.ind-row__desc {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
}
.ind-row__arrow {
  width: 22px; height: 14px;
  display: grid; place-items: center;
  color: var(--ink-mute);
  transition: color .3s, transform .35s;
}
.ind-row:hover .ind-row__arrow { color: var(--gold); transform: translateX(10px); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 200px 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 96px;
}
.tcard {
  display: flex; flex-direction: column; gap: 32px;
  padding: 40px 32px 32px;
  position: relative;
  border-left: 1px solid var(--rule);
  transition: border-color 0.4s ease;
}
.tcard:hover { border-color: var(--gold); }
.tcard--featured {
  grid-column: 1 / -1;
  border-left: 2px solid var(--gold);
  background: oklch(0.15 0.01 70 / 0.4);
  border-radius: 0 8px 8px 0;
  padding: 48px 40px;
}
.tcard::before {
  content: "“";
  position: absolute; top: 4px; left: 16px;
  font-family: 'Times New Roman', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
  opacity: 0.3;
}
.tcard--featured::before { opacity: 0.5; font-size: 96px; }
.tcard__quote {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.012em;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  flex: 1;
}
.tcard--featured .tcard__quote { font-size: clamp(20px, 1.8vw, 28px); font-weight: 500; }
.tcard__meta {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-dim);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tcard__meta strong { color: var(--ink); font-weight: 500; }
.testimonials__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.metric-card {
  display: flex; flex-direction: column; gap: 8px;
  text-align: center;
}
.metric-card__num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.metric-card__plus, .metric-card__unit {
  font-size: 0.5em;
  font-weight: 600;
  opacity: 0.7;
}
.metric-card__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.metric-card__desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.4;
}

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: 200px 0; background: var(--bg); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tier {
  border-left: 1px solid var(--rule);
  padding: 48px 40px 56px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .3s;
}
.tier:first-child { border-left: 0; }
.tier:hover { background: var(--bg-2); }
.tier--featured {
  background: var(--bg-2);
  border-top: 1.5px solid var(--gold);
}
.tier--featured::before {
  content: "Most Popular";
  position: absolute;
  top: 0; right: 24px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  transform: translateY(-50%);
  font-weight: 500;
}
.tier__head { display: flex; flex-direction: column; gap: 8px; }
.tier__name {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.022em;
}
.tier__sub {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0;
}
.tier__price {
  margin-top: 36px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: baseline; gap: 8px;
}
.tier__price .currency { font-size: 20px; color: var(--ink-dim); }
.tier__price .amount {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.tier__price .per { font-size: 13px; color: var(--ink-dim); margin-left: auto; }
.tier__list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 16px; flex: 1;
}
.tier__list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-dim);
  align-items: start;
}
.tier__list li > .bullet {
  width: 8px; height: 8px;
  background: var(--gold);
  margin-top: 8px;
  margin-left: 2px;
  display: block;
}

/* Small Business banner */
.pricing__smallbiz {
  margin-top: 64px;
  border: 1px solid var(--rule);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.pricing__smallbiz::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.smallbiz__content {
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.smallbiz__text { max-width: 640px; }
.smallbiz__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.smallbiz__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
}

/* One-time services */
.pricing__onetime {
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--rule);
}
.pricing__onetime-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  color: var(--ink);
}
.pricing__onetime-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.onetime-card {
  border-left: 1px solid var(--rule);
  padding: 48px 40px 56px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: background .3s;
}
.onetime-card:first-child { border-left: 0; }
.onetime-card:hover { background: var(--bg-2); }
.onetime-card__top { display: flex; flex-direction: column; gap: 12px; }
.onetime-card__name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.onetime-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
}
.onetime-card__bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.onetime-card__price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.btn--sm {
  font-size: 12px;
  padding: 10px 20px;
  letter-spacing: 0.12em;
}

/* Included in every plan */
.pricing__included {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.pricing__included-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 32px;
  font-family: var(--f-mono);
}
.pricing__included-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.included-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink-dim);
}
.included-item__icon {
  font-size: 18px;
  color: var(--gold);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* ============================================
   FAQs
   ============================================ */
.faqs { padding: 200px 0; }
.faqs__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.faq { border-top: 1px solid var(--rule); }
.faqs__list .faq:last-child { border-bottom: 1px solid var(--rule); }
.faq__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 24px;
  padding: 32px 0;
  text-align: left;
  align-items: center;
  transition: padding .3s;
}
.faq:hover .faq__btn { padding-left: 12px; }
.faq__q {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: -0.008em;
  color: var(--ink);
  line-height: 1.3;
  transition: color .25s;
}
.faq:hover .faq__q { color: var(--gold); }
.faq__plus { width: 20px; height: 20px; position: relative; justify-self: end; color: var(--ink-dim); transition: color .3s; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: currentColor; left: 50%; top: 50%; }
.faq__plus::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 1.5px; height: 16px; transform: translate(-50%, -50%); transition: transform .35s; }
.faq.open .faq__plus { color: var(--gold); }
.faq.open .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.4,0,.2,1); }
.faq__panel-inner { overflow: hidden; }
.faq.open .faq__panel { grid-template-rows: 1fr; }
.faq__a {
  padding: 0 60px 36px 0;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.65;
  max-width: 70ch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease .15s, transform .4s ease .15s;
}
.faq.open .faq__a { opacity: 1; transform: none; }

/* ============================================
   BOOKING
   ============================================ */
.booking { padding: 200px 0; background: var(--bg); }
.booking__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.booking__left { position: sticky; top: 120px; }
.booking__form {
  background: var(--bg-2);
  padding: 56px 48px;
  display: flex; flex-direction: column; gap: 0;
}

/* floating-label fields */
.field {
  position: relative;
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--rule);
  transition: border-color .3s;
}
.field:focus-within { border-bottom-color: var(--gold); }
.field label {
  position: absolute;
  top: 26px; left: 0;
  font-size: 16px;
  color: var(--ink-mute);
  pointer-events: none;
  transition: top .25s, font-size .25s, color .25s, transform .25s;
}
.field label .req { color: var(--gold); margin-left: 2px; }
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 17px;
  padding: 4px 0 6px;
  outline: none;
  width: 100%;
  min-height: 32px;
}
.field textarea { min-height: 90px; resize: vertical; }
.field:focus-within label,
.field.has-value label {
  top: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.calendar {
  margin-top: 24px;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.cal-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.cal-head .month { color: var(--ink); font-weight: 600; font-size: 16px; }
.cal-head button { color: var(--ink-dim); font-size: 13px; }
.cal-head button:hover { color: var(--gold); }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .dow { font-family: var(--f-mono); font-size: 10px; color: var(--ink-mute); text-align: center; padding: 8px 0; letter-spacing: 0.14em; }
.cal-grid .day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 14px;
  color: var(--ink-dim);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  min-height: 44px;
}
.cal-grid .day:hover { border-color: var(--rule-strong); color: var(--ink); }
.cal-grid .day.muted { color: var(--ink-mute); cursor: default; }
.cal-grid .day.muted:hover { border-color: transparent; color: var(--ink-mute); }
.cal-grid .day.selected { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.timeslots {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.timeslots .slot {
  font-family: var(--f-mono);
  font-size: 12px;
  padding: 14px 8px;
  border: 1px solid var(--rule);
  text-align: center;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  color: var(--ink-dim);
  min-height: 44px;
}
.timeslots .slot:hover { border-color: var(--ink); color: var(--ink); }
.timeslots .slot.selected { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ============================================
   CTA — full-bleed image
   ============================================ */
.cta {
  padding: 220px 0;
  position: relative;
  overflow: hidden;
}
.cta__media {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.cta__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.cta:hover .cta__media img { transform: scale(1); }
.cta__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.7) 0%, rgba(20,16,12,0.85) 100%),
    radial-gradient(ellipse at center, rgba(20,16,12,0.2) 0%, rgba(20,16,12,0.85) 100%);
}
.cta > .shell { position: relative; z-index: 2; }
.cta h2 {
  font-size: clamp(56px, 10vw, 176px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-wrap: balance;
}
.cta__row {
  margin-top: 64px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.cta__meta {
  margin-top: 96px;
  display: flex; gap: 48px;
  font-size: 13px;
  color: var(--ink-dim);
  flex-wrap: wrap;
}
.cta__meta span { display: inline-flex; align-items: center; gap: 8px; }
.cta__meta span::before {
  content: ""; width: 4px; height: 4px;
  background: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.foot { padding: 80px 0 48px; }
.foot__grid {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 2fr;
  gap: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.foot__brand h4 { font-size: 24px; letter-spacing: -0.012em; margin-bottom: 16px; }
.foot__brand p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; max-width: 38ch; }
.foot__col .foot__heading {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 600;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.foot__col a {
  font-size: 14px; color: var(--ink-dim); transition: color .2s;
}
.foot__col a:hover { color: var(--gold); }
.foot__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .section, .stats, .services, .about, .process, .industries, .testimonials, .faqs, .pricing, .booking, .cta { padding: 120px 0; }
  .section-head { grid-template-columns: 1fr; gap: 32px; align-items: start; margin-bottom: 64px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 56px 0; }
  .stat { padding: 0 32px; }
  .stat:first-child, .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(3) { padding-top: 0; }
  .svc-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 100px; }
  .svc-block:nth-child(even) .svc-block__media { order: 0; }
  .about__grid, .booking__grid, .faqs__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__visual, .booking__left { position: static; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 48px; }
  .tcard--featured { grid-column: 1; }
  .testimonials__metrics { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .tier { border-left: 0; border-top: 1px solid var(--rule); }
  .tier:first-child { border-top: 0; }
  .smallbiz__content { flex-direction: column; padding: 36px 32px; gap: 28px; text-align: center; }
  .smallbiz__title { font-size: 24px; }
  .pricing__onetime-grid { grid-template-columns: 1fr; }
  .onetime-card { border-left: 0; border-top: 1px solid var(--rule); }
  .onetime-card:first-child { border-top: 0; }
  .pricing__included-grid { grid-template-columns: repeat(3, 1fr); }
  .proc { grid-template-columns: 100px 1fr; gap: 40px; }
  .proc__tag { display: none; }
  .ind-row { grid-template-columns: 1fr 50px; gap: 24px; padding: 32px 0; }
  .ind-row__desc { display: none; }
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .booking__form { padding: 32px 24px; }
}
@media (max-width: 640px) {
  .section, .stats, .services, .about, .process, .industries, .testimonials, .faqs, .pricing, .booking, .cta { padding: 96px 0; }
  .shell { padding: 0 20px; }
  .hero__title { font-size: clamp(48px, 13vw, 80px); }
  .hero__bottom { grid-template-columns: 1fr; gap: 32px; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { padding: 0; border-left: 0; }
  .testimonials__grid { gap: 40px; }
  .testimonials__metrics { grid-template-columns: 1fr; gap: 32px; }
  .timeslots { grid-template-columns: repeat(3, 1fr); }
  .foot__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta__meta { gap: 16px; }
  .cta__meta span { font-size: 12px; }
  .pricing__included-grid { grid-template-columns: repeat(2, 1fr); }
  .onetime-card__price { font-size: 32px; }
  .smallbiz__title { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .slide-l, .kb img, .headline-mask > span, .hero__media img,
  .hero__title .line > span, .hero__bottom, .hero__chip { transition: none !important; animation: none !important; transform: none !important; opacity: 1 !important; }
}
