/* ==========================================================================
   Aakash Kumar Jha — aakashkumarjha.com
   Design system: editorial luxury. Charcoal, ivory, champagne, navy, one blue.
   Fonts: Instrument Serif (display) + Hanken Grotesk (text), with safe fallbacks.
   ========================================================================== */

:root {
  --ink: #15171c;
  --ink-2: #1d2027;
  --navy: #0e1a30;
  --navy-2: #14264a;
  --ivory: #f3eee3;
  --ivory-2: #e8e1d0;
  --champagne: #c4a76c;
  --champagne-soft: #d8c497;
  --gold-ink: #7a6130;
  --blue: #4c78ff;
  --wa: #25d366;

  --serif: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 56px);
  --maxw: 1280px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* theme defaults (overridden per section) */
  --bg: var(--ink);
  --fg: var(--ivory);
  --muted: rgba(243, 238, 227, 0.7);
  --rule: rgba(243, 238, 227, 0.16);
  --accent: var(--champagne);
  --cta-bg: var(--champagne);
  --cta-fg: var(--ink);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 88px;
  overflow-x: clip;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
}

/* subtle film grain, drawn once as an image (no animation, no blend modes) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='.33 .33 .33 0 0 .33 .33 .33 0 0 .33 .33 .33 0 0 0 0 0 0 1'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

[hidden] { display: none !important; }
img, svg { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--champagne); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--champagne);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ic { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}
h2 { font-size: clamp(2.4rem, 5.2vw, 4.7rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.05rem); line-height: 1.12; }

.lede {
  font-size: clamp(1.14rem, 1.55vw, 1.36rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 34em;
}
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }

.wrap {
  width: min(var(--maxw), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

/* ---------- section themes ---------- */
.section {
  position: relative;
  background: var(--bg);
  color: var(--fg);
  padding-block: clamp(84px, 11vw, 160px);
  isolation: isolate;
}
.t-dark   { --bg: var(--ink);  --fg: var(--ivory); --muted: rgba(243,238,227,.7); --rule: rgba(243,238,227,.16); --accent: var(--champagne); --cta-bg: var(--champagne); --cta-fg: var(--ink); }
.t-navy   { --bg: var(--navy); --fg: var(--ivory); --muted: rgba(243,238,227,.72); --rule: rgba(243,238,227,.18); --accent: var(--champagne); --cta-bg: var(--champagne); --cta-fg: var(--ink); }
.t-light  { --bg: var(--ivory);   --fg: var(--ink); --muted: rgba(21,23,28,.7); --rule: rgba(21,23,28,.16); --accent: var(--gold-ink); --cta-bg: var(--ink); --cta-fg: var(--ivory); }
.t-light2 { --bg: var(--ivory-2); --fg: var(--ink); --muted: rgba(21,23,28,.72); --rule: rgba(21,23,28,.18); --accent: var(--gold-ink); --cta-bg: var(--ink); --cta-fg: var(--ivory); }
.t-gold   { --bg: #c9af78; --fg: var(--ink); --muted: rgba(21,23,28,.78); --rule: rgba(21,23,28,.28); --accent: var(--ink); --cta-bg: var(--ink); --cta-fg: var(--ivory); }

/* ---------- buttons & links ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }
.btn .ic { font-size: 1.25em; }

.btn-primary { background: var(--cta-bg); color: var(--cta-fg); }
.btn-primary::before { background: var(--fg); }
.btn-primary:hover, .btn-primary:focus-visible { color: var(--bg); }

.btn-ghost { border-color: var(--rule); color: var(--fg); background: transparent; }
.btn-ghost::before { background: var(--fg); }
.btn-ghost:hover, .btn-ghost:focus-visible { color: var(--bg); border-color: var(--fg); }

.btn-wa .ic { color: var(--wa); }
.btn-wa:hover .ic, .btn-wa:focus-visible .ic { color: #128c4a; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* animated underline for text links */
.link {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  padding-bottom: 2px;
  transition: background-size 0.4s var(--ease), color 0.3s;
}
.link:hover, .link:focus-visible { background-size: 0 1px; background-position: 100% 100%; }

/* line-extending "more" link (no arrow glyph, just a growing rule) */
.more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
}
.more::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.more:hover::after, .more:focus-visible::after { width: 64px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding-block: 22px;
  color: var(--ivory);
  transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-block: 11px;
  background: rgba(21, 23, 28, 0.9);
  border-bottom-color: rgba(243, 238, 227, 0.1);
}
@supports (backdrop-filter: blur(1px)) {
  .site-header.is-scrolled {
    background: rgba(21, 23, 28, 0.6);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    backdrop-filter: blur(16px) saturate(1.3);
  }
}
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.02em;
  padding-right: 14px;
  border-right: 1px solid rgba(196, 167, 108, 0.6);
  transition: font-size 0.4s var(--ease);
}
.brand-name { font-size: 0.86rem; letter-spacing: 0.04em; line-height: 1.2; color: rgba(243,238,227,.86); }
.is-scrolled .brand-mark { font-size: 1.55rem; }

.nav-desktop { display: none; }
.nav-list { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 28px); }
.nav-list a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 0;
  color: rgba(243, 238, 227, 0.82);
  background-image: linear-gradient(var(--champagne), var(--champagne));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 0.4s var(--ease), color 0.3s;
}
.nav-list a:hover, .nav-list a:focus-visible, .nav-list a[aria-current] { color: var(--ivory); background-size: 100% 1px; }
.header-cta { display: none; min-height: 44px; padding: 0 22px; }

.nav-toggle {
  position: relative;
  z-index: 2;
  width: 46px; height: 46px;
  border: 1px solid rgba(243, 238, 227, 0.25);
  background: transparent;
  border-radius: 2px;
  display: grid;
  place-items: center;
}
.nav-toggle span {
  position: absolute;
  left: 13px; right: 13px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.45s var(--ease), opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 1180px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: var(--ink);
  color: var(--ivory);
  padding: 112px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  visibility: hidden;
  clip-path: circle(0 at calc(100% - 44px) 44px);
  transition: clip-path 0.7s var(--ease), visibility 0s linear 0.7s;
}
.mobile-nav.is-open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s var(--ease), visibility 0s;
}
.mobile-nav ul { display: grid; gap: 2px; }
.mobile-nav li a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: clamp(2rem, 8.5vw, 3.2rem);
  line-height: 1.15;
  padding: 8px 0;
  border-bottom: 1px solid rgba(243, 238, 227, 0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-nav.is-open li a { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 45ms + 180ms); }
.mobile-nav li a:hover, .mobile-nav li a[aria-current] { color: var(--champagne); }
.mobile-actions { display: grid; gap: 12px; margin-top: 32px; }
.mobile-actions .btn { width: 100%; }

body.nav-open { overflow: hidden; }

/* ---------- progress + indicator + cursor ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 95;
  background: var(--champagne);
  transform-origin: left;
  transform: scaleX(var(--sp, 0));
  pointer-events: none;
}

.section-nav {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: none;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  mix-blend-mode: difference;
}
.section-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 22px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-nav .lbl { opacity: 0; transform: translateX(6px); transition: opacity 0.3s, transform 0.3s var(--ease); pointer-events: none; }
.section-nav .pip { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 50%; transition: transform 0.3s var(--ease), background-color 0.3s; }
.section-nav a:hover .lbl, .section-nav a:focus-visible .lbl, .section-nav a.is-active .lbl { opacity: 1; transform: none; }
.section-nav a.is-active .pip { background: currentColor; transform: scale(1.5); }
@media (min-width: 1280px) { .section-nav { display: flex; } }

.cursor-glow, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transition: opacity 0.4s;
  will-change: transform;
}
.cursor-glow {
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  background: radial-gradient(circle, rgba(196, 167, 108, 0.13), rgba(196, 167, 108, 0) 62%);
}
.cursor-ring {
  z-index: 96;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(196, 167, 108, 0.85);
  border-radius: 50%;
  transition: opacity 0.4s, width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), background-color 0.3s;
}
.cursor-ring.is-link { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(196, 167, 108, 0.14); }
body.has-cursor .cursor-glow, body.has-cursor .cursor-ring { opacity: 1; }

/* ---------- page transition ---------- */
body { animation: pageIn 0.7s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body.is-leaving { opacity: 0; transition: opacity 0.28s ease; }

/* ---------- reveal on scroll ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].in { opacity: 1; transform: none; }

/* masked line reveal (used for the closing quote) */
.mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.mask > span { display: block; }
.js .mask > span { transform: translateY(108%); transition: transform 1.15s var(--ease); transition-delay: var(--d, 0s); }
.js .in .mask > span, .js .mask.in > span { transform: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  overflow: clip;
  isolation: isolate;
  padding: 118px 0 36px;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}
.hero::before { /* architectural grid, faded toward the edges */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(243, 238, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 238, 227, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 70% 55%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 70% at 70% 55%, #000 10%, transparent 75%);
}
.hero::after { /* soft navy light */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(60% 70% at 78% 40%, rgba(20, 38, 74, 0.95), rgba(20, 38, 74, 0) 70%),
    radial-gradient(40% 40% at 8% 100%, rgba(196, 167, 108, 0.09), rgba(196, 167, 108, 0) 70%);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; pointer-events: none; }

.hl { position: absolute; background: rgba(196, 167, 108, 0.3); }
.hl-v { width: 1px; top: 0; bottom: 0; transform-origin: top; animation: drawY 1.6s var(--ease) 0.2s both; }
.hl-h { height: 1px; left: 0; right: 0; transform-origin: left; animation: drawX 1.8s var(--ease) 0.5s both; }
.hl-v.a { left: var(--gutter); }
.hl-v.b { right: var(--gutter); animation-delay: 0.45s; }
.hl-h.a { top: 100px; background: rgba(243, 238, 227, 0.1); }
@keyframes drawY { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes drawX { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-ghost {
  position: absolute;
  left: -1vw;
  bottom: -0.18em;
  font-family: var(--serif);
  font-size: clamp(9rem, 32vw, 32rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 238, 227, 0.09);
  white-space: nowrap;
  user-select: none;
  animation: fadeIn 2s ease 0.6s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.dot {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--champagne);
  opacity: 0.35;
  animation: drift var(--t, 16s) ease-in-out var(--dl, 0s) infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0); opacity: 0.15; }
  to   { transform: translate3d(var(--dx, 16px), var(--dy, -34px), 0); opacity: 0.6; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  width: min(var(--maxw), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}
.hero-copy { position: relative; z-index: 3; padding-block: 8px 0; min-width: 0; }

.eyebrow-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 26px;
  animation: riseIn 0.9s var(--ease) 0.1s both;
}
.eyebrow-hero::before { content: ""; width: 34px; height: 1px; background: var(--champagne); flex: none; }

.hero h1 {
  font-size: clamp(2.5rem, 9.4vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  text-wrap: nowrap;
}
.hero h1 .ln { display: block; overflow: hidden; padding: 0.06em 0 0.1em; margin: -0.06em 0 -0.1em; text-wrap: balance; white-space: normal; }
.hero h1 .ln > span { display: block; animation: lineUp 1.15s var(--ease) both; }
.hero h1 .ln:nth-child(1) > span { animation-delay: 0.18s; }
.hero h1 .ln:nth-child(2) > span { animation-delay: 0.32s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: 0.46s; color: var(--champagne-soft); font-style: italic; }
@keyframes lineUp { from { transform: translateY(105%); } to { transform: none; } }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero .lede { color: rgba(243, 238, 227, 0.78); margin-bottom: 34px; animation: riseIn 1s var(--ease) 0.75s both; }
.hero .btn-row { animation: riseIn 1s var(--ease) 0.9s both; }

.trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 38px 0 0;
  font-size: 0.95rem;
  color: rgba(243, 238, 227, 0.74);
  animation: riseIn 1s var(--ease) 1.05s both;
}
.trust::before { content: ""; width: 44px; height: 1px; background: rgba(196, 167, 108, 0.7); flex: none; }
.trust strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--ivory);
  margin-right: 6px;
  vertical-align: -0.12em;
}

/* portrait stage */
.hero-stage {
  --pw: clamp(280px, 80vw, 340px);
  position: relative;
  z-index: 2;
  width: var(--pw);
  margin: 12px auto 0;
  animation: stageIn 1.3s var(--ease) 0.35s both;
}
@keyframes stageIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.hero-stage img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: auto;
  aspect-ratio: 1086 / 1448;
  object-fit: contain; /* never cover: the cut-out must never be cropped */
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}
.stage-panel {
  position: absolute;
  z-index: 1;
  left: -7%; right: 9%;
  bottom: 0;
  height: 76%;
  background: linear-gradient(172deg, var(--navy-2) 0%, var(--navy) 100%);
  border: 1px solid rgba(196, 167, 108, 0.32);
  transform-origin: bottom;
  animation: panelUp 1.4s var(--ease) 0.25s both;
}
@keyframes panelUp { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.stage-frame {
  position: absolute;
  z-index: 0;
  left: 14%; right: -6%;
  top: 14%; bottom: 3%;
  border: 1px solid rgba(243, 238, 227, 0.16);
}
.stage-glow {
  position: absolute;
  z-index: 2;
  left: 8%; right: 8%;
  top: 4%;
  height: 46%;
  background: radial-gradient(closest-side, rgba(196, 167, 108, 0.26), rgba(196, 167, 108, 0) 100%);
  pointer-events: none;
}
.stage-arc {
  position: absolute;
  z-index: 2;
  inset: -3% -8% -1% -8%;
  width: 116%;
  height: 104%;
  max-width: none;
  overflow: visible;
  pointer-events: none;
}
.stage-arc path { fill: none; stroke: rgba(196, 167, 108, 0.55); stroke-width: 1; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.4s var(--ease) 0.7s forwards; }
.stage-arc path.b { stroke: rgba(243, 238, 227, 0.2); animation-delay: 1s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.stage-ground {
  position: absolute;
  z-index: 4;
  left: -16%; right: -16%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 167, 108, 0.75) 22%, rgba(196, 167, 108, 0.75) 78%, transparent);
  transform-origin: center;
  animation: drawX 1.6s var(--ease) 0.9s both;
}
.float-tag {
  position: absolute;
  z-index: 5;
  display: none;
  color: var(--ivory);
  animation: riseIn 1.2s var(--ease) 1.2s both;
}
.float-tag.years { left: -11%; top: 30%; }
.float-tag.years b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(2.8rem, 5vw, 4.4rem); line-height: 0.9; color: var(--champagne-soft); font-style: italic; }
.float-tag.years i { display: block; font-style: normal; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 8px; color: rgba(243,238,227,.72); }
.float-tag.markets {
  left: -9%; bottom: 5%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(243, 238, 227, 0.7);
}
.float-tag .bob { display: block; animation: bob 7s ease-in-out infinite alternate; }
@keyframes bob { from { transform: translateY(-6px); } to { transform: translateY(8px); } }

@media (max-width: 639px) {
  .hl-v { display: none; }
  .eyebrow-hero { letter-spacing: 0.14em; }
  .eyebrow-hero::before { display: none; }
  .hero .btn-row .btn { flex: 1 1 100%; }
}
@media (min-width: 640px) {
  .hero-stage { --pw: clamp(380px, 52vw, 450px); }
  .float-tag { display: block; }
  .hero h1 { font-size: clamp(3rem, 8vw, 4.6rem); }
}
@media (min-width: 1024px) {
  .hero { padding-bottom: 40px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(28px, 4vw, 64px);
  }
  .hero-copy { align-self: center; padding-bottom: clamp(24px, 6vh, 72px); }
  .hero-stage {
    /* ~ min(42vw, 560px), also capped so the whole figure fits short screens */
    --pw: min(42vw, 560px, max(380px, calc((100svh - 150px) * 0.75)));
    margin: 0 0 0 auto;
  }
  .hero h1 { font-size: clamp(2.9rem, 4.2vw, 4.7rem); }
}
@media (min-width: 1024px) and (max-width: 1199px) { .float-tag { display: none; } }
@media (min-width: 1500px) { .hero h1 { font-size: 4.9rem; } }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(150px, 18vw, 220px) 0 clamp(56px, 7vw, 96px);
  overflow: clip;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(243, 238, 227, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 238, 227, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 85% 30%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 90% at 85% 30%, #000, transparent 75%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -3;
  background: radial-gradient(55% 80% at 88% 20%, rgba(20, 38, 74, 0.95), rgba(20, 38, 74, 0) 70%);
}
.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 6rem);
  max-width: 13em;
  animation: riseIn 1s var(--ease) 0.15s both;
}
.page-hero .lede { margin-top: 26px; color: rgba(243, 238, 227, 0.75); animation: riseIn 1s var(--ease) 0.35s both; }
.page-hero .ghost-num {
  position: absolute; right: 2vw; bottom: -0.2em;
  font-family: var(--serif);
  font-size: clamp(8rem, 26vw, 24rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 238, 227, 0.08);
  z-index: -1;
  user-select: none;
}
.crumbs { margin-bottom: 30px; font-size: 0.86rem; color: rgba(243, 238, 227, 0.62); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: rgba(196, 167, 108, 0.7); }
.crumbs a { color: rgba(243, 238, 227, 0.86); }
.crumbs a:hover { color: var(--champagne); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; gap: 48px; }
.about-head h2 { max-width: 8.5em; }
.about-body .story-lede {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin-bottom: 1.1em;
}
.about-body p:not(.story-lede) { max-width: 38em; color: var(--muted); }
.pull {
  margin: 44px 0 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.25;
  max-width: 24em;
}
.pillars { display: grid; gap: 0; margin-top: clamp(56px, 8vw, 104px); border-top: 1px solid var(--rule); }
.pillar { padding: 26px 0; border-bottom: 1px solid var(--rule); display: grid; gap: 6px; }
.pillar h3 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.pillar p { margin: 0; color: var(--muted); max-width: 26em; }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 5fr 7fr; gap: clamp(40px, 7vw, 110px); }
  .about-head { position: sticky; top: 120px; align-self: start; }
  .pillars { grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); }
  .pillar { padding: 28px 24px 34px 0; border-bottom: 0; border-right: 1px solid var(--rule); padding-left: 24px; }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { border-right: 0; }
}

/* ==========================================================================
   PRINCIPLES
   ========================================================================== */
.section-title { display: grid; gap: 22px; margin-bottom: clamp(44px, 7vw, 88px); }
.section-title .lede { margin: 0; }
@media (min-width: 900px) {
  .section-title.split { grid-template-columns: 7fr 5fr; align-items: end; gap: 60px; }
}
.principles li {
  display: grid;
  gap: 8px 32px;
  padding: clamp(26px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--rule);
  transition: padding-left 0.5s var(--ease);
}
.principles li:last-child { border-bottom: 1px solid var(--rule); }
.principles .num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  transition: color 0.5s var(--ease);
}
.principles h3 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1; }
.principles p { margin: 0; color: var(--muted); max-width: 24em; }
.principles li:hover .num { color: var(--accent); }
@media (min-width: 860px) {
  .principles li { grid-template-columns: 190px minmax(0, 1fr) minmax(0, 0.8fr); align-items: center; }
  .principles li:hover { padding-left: 18px; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.grid-bg::before { /* the "digital grid" */
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 15% 20%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 15% 20%, #000, transparent 75%);
}
.grid-bg::after { /* one slow scan line */
  content: "";
  position: absolute; left: 0; right: 0; top: 0; z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
  animation: scan 12s linear infinite;
  pointer-events: none;
}
@keyframes scan { from { transform: translateY(0); } to { transform: translateY(var(--sh, 900px)); } }

.svc-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.follow { position: relative; }
.follow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent calc(var(--mx, 50%) - 110px), var(--accent) var(--mx, 50%), transparent calc(var(--mx, 50%) + 110px));
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.follow:hover::after { opacity: 1; }
.svc {
  padding: clamp(28px, 3.4vw, 46px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 210px;
}
.svc-in { transition: transform 0.5s var(--ease); display: grid; gap: 14px; align-content: start; }
.svc:hover .svc-in { transform: translateY(-4px); }
.svc h3 { font-size: clamp(1.7rem, 2.7vw, 2.3rem); }
.svc p { margin: 0; color: var(--muted); max-width: 30em; }
.svc .extra { font-size: 0.97rem; }
@media (min-width: 760px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
.section-foot { margin-top: clamp(32px, 4vw, 56px); display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; }
.disclaimer { font-size: 0.92rem; color: var(--muted); max-width: 44em; margin: 0; }

/* ==========================================================================
   AUDIENCE
   ========================================================================== */
.aud-grid { display: grid; gap: 40px; }
.aud-head { display: grid; gap: 22px; align-content: start; }
.aud-head h2 { max-width: 9em; }
.aud-list { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
.aud-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  gap: 4px;
  transition: padding-left 0.45s var(--ease), background-color 0.45s;
}
.aud-list h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); transition: color 0.3s; }
.aud-list p { margin: 0; color: var(--muted); font-size: 0.98rem; max-width: 28em; }
.aud-list li:hover { padding-left: 14px; background: rgba(243, 238, 227, 0.03); }
.aud-list li:hover h3 { color: var(--champagne); }
@media (min-width: 720px) {
  .aud-list { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}
@media (min-width: 1000px) {
  .aud-grid { grid-template-columns: 4.4fr 7.6fr; gap: clamp(40px, 6vw, 96px); }
  .aud-head { position: sticky; top: 120px; align-self: start; }
}

/* ==========================================================================
   BUSINESSES
   ========================================================================== */
.biz-main {
  position: relative;
  display: grid;
  gap: 34px;
  padding: clamp(28px, 4.4vw, 64px);
  background: var(--navy);
  color: var(--ivory);
  border: 1px solid rgba(196, 167, 108, 0.45);
  overflow: hidden;
  isolation: isolate;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.biz-main::before {
  content: "";
  position: absolute; z-index: -1;
  right: -8%; top: -30%;
  width: 60%; aspect-ratio: 1;
  border: 1px solid rgba(196, 167, 108, 0.22);
  border-radius: 50%;
}
.biz-main::after {
  content: "";
  position: absolute; z-index: -1;
  right: 2%; top: -10%;
  width: 36%; aspect-ratio: 1;
  border: 1px solid rgba(243, 238, 227, 0.1);
  border-radius: 50%;
}
.biz-main .tag { color: var(--champagne); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin: 0 0 16px; }
.biz-main h3 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1; margin-bottom: 20px; }
.biz-main p { color: rgba(243, 238, 227, 0.78); max-width: 34em; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.chips li {
  padding: 9px 14px;
  border: 1px solid rgba(243, 238, 227, 0.22);
  font-size: 0.88rem;
  color: rgba(243, 238, 227, 0.9);
  transition: border-color 0.3s, background-color 0.3s;
}
.chips li:hover { border-color: var(--champagne); background: rgba(196, 167, 108, 0.1); }
@media (min-width: 900px) { .biz-main { grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: end; } }

.venture-grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2vw, 24px); }
.venture {
  position: relative;
  padding: 30px 28px 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ivory);
  border: 1px solid var(--rule);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.venture:hover { border-color: var(--accent); transform: translateY(-4px); }
.venture .initial {
  position: absolute;
  z-index: -1;
  right: 14px; top: -0.12em;
  font-family: var(--serif);
  font-size: 11rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 23, 28, 0.2);
  transition: color 0.5s var(--ease), -webkit-text-stroke-color 0.5s;
}
.venture:hover .initial { color: rgba(196, 167, 108, 0.22); -webkit-text-stroke-color: var(--accent); }
.venture h3 { font-size: clamp(1.7rem, 2.4vw, 2.1rem); margin-bottom: 8px; overflow-wrap: anywhere; }
.venture p { margin: 0; color: var(--muted); font-size: 0.97rem; }
.venture .tag { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
@media (min-width: 640px) { .venture-grid { grid-template-columns: 1fr 1fr; } }

.note { margin-top: 28px; font-size: 0.92rem; color: var(--muted); max-width: 46em; }

/* ==========================================================================
   JOURNEY
   ========================================================================== */
.journey-grid { display: grid; gap: 40px; }
.journey-head h2 { max-width: 7em; margin-bottom: 22px; }
.journey { position: relative; --p: 1; }
.journey::before, .journey::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 14px; bottom: 14px;
  width: 1px;
}
.journey::before { background: var(--rule); }
.journey::after { background: var(--accent); transform-origin: top; transform: scaleY(var(--p)); }
.journey li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 0 0 clamp(34px, 5vw, 60px); }
.journey li:last-child { padding-bottom: 0; }
.journey .n {
  position: relative;
  z-index: 1;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--accent);
}
.journey h3 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 6px 0 8px; }
.journey p { margin: 0; color: var(--muted); max-width: 32em; }
@media (min-width: 900px) {
  .journey-grid { grid-template-columns: 4.5fr 7.5fr; gap: clamp(40px, 7vw, 110px); }
  .journey-head { position: sticky; top: 120px; align-self: start; }
}

/* ==========================================================================
   EXPERIENCE
   ========================================================================== */
.exp-grid { display: grid; gap: 0; border-top: 1px solid var(--rule); margin-top: clamp(30px, 5vw, 56px); }
.exp-item { padding: 34px 0; border-bottom: 1px solid var(--rule); display: grid; gap: 10px; align-content: end; }
.exp-item .big {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.exp-item .big.xl { font-size: clamp(7rem, 20vw, 15rem); line-height: 0.8; color: var(--fg); }
.exp-item .big small { font-size: 0.4em; }
.exp-item .cap { color: var(--muted); font-size: 0.98rem; margin: 0; }
.exp-item .big em { font-style: italic; color: var(--accent); }
@media (min-width: 900px) {
  .exp-grid { grid-template-columns: 1.15fr 1fr 1fr; border-bottom: 1px solid var(--rule); }
  .exp-item { border-bottom: 0; padding: 40px 32px 40px 0; }
  .exp-item + .exp-item { padding-left: 32px; border-left: 1px solid var(--rule); }
  .exp-item .big:not(.xl) { font-size: clamp(2.2rem, 3.6vw, 3.4rem); line-height: 1.02; }
}

/* ==========================================================================
   WORK
   ========================================================================== */
.case-grid { display: grid; gap: clamp(14px, 2vw, 22px); align-items: start; }
.case { border: 1px solid var(--rule); background: rgba(243, 238, 227, 0.02); transition: border-color 0.4s, transform 0.5s var(--ease); }
.case:hover, .case[open] { border-color: rgba(196, 167, 108, 0.6); }
.case:hover { transform: translateY(-3px); }
.case summary { list-style: none; cursor: pointer; display: block; }
.case summary::-webkit-details-marker { display: none; }
.case-cover {
  position: relative;
  height: 148px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background:
    repeating-linear-gradient(var(--a, 32deg), rgba(196, 167, 108, 0.2) 0 1px, transparent 1px 15px),
    linear-gradient(160deg, var(--navy-2), var(--navy));
}
.case-cover .ini {
  position: absolute;
  left: 22px; bottom: 6px;
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 238, 227, 0.5);
  transition: color 0.5s var(--ease);
}
.case:hover .case-cover .ini { color: rgba(243, 238, 227, 0.14); }
.case-row { min-height: 118px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 22px 22px; }
.case-row h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.case-row small { display: block; margin-top: 4px; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--champagne); }
.case-plus { position: relative; width: 34px; height: 34px; flex: none; border: 1px solid var(--rule); border-radius: 50%; }
.case-plus::before, .case-plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1px; background: var(--ivory); transform: translate(-50%, -50%); transition: transform 0.4s var(--ease); }
.case-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.case[open] .case-plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.case-body { padding: 0 22px 24px; color: var(--muted); }
.case-body p { margin: 0 0 16px; max-width: 32em; }
@media (min-width: 720px) { .case-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .case-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   WHY
   ========================================================================== */
.why-grid { display: grid; gap: 48px; }
.why-head { display: grid; gap: 22px; align-content: start; }
.why-head h2 { max-width: 7em; }
.why-list { display: grid; gap: 0; }
.why-list li { padding: 26px 0; border-top: 1px solid var(--rule); display: grid; gap: 8px; }
.why-list li:last-child { border-bottom: 1px solid var(--rule); }
.why-list h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.why-list p { margin: 0; color: var(--muted); max-width: 32em; }
@media (min-width: 760px) {
  .why-list { grid-template-columns: 1fr 1fr; column-gap: clamp(28px, 4vw, 56px); }
  .why-list li:nth-last-child(2) { border-bottom: 1px solid var(--rule); }
}
@media (min-width: 1060px) {
  .why-grid { grid-template-columns: 4.4fr 7.6fr; gap: clamp(40px, 6vw, 96px); }
  .why-head { position: sticky; top: 120px; align-self: start; }
}

/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote { padding-block: clamp(110px, 16vw, 240px); overflow: clip; }
.quote::before {
  content: "\201C";
  position: absolute;
  left: 2vw; top: 0.02em;
  font-family: var(--serif);
  font-size: clamp(16rem, 44vw, 44rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 167, 108, 0.22);
  z-index: -1;
}
.quote blockquote { margin: 0; }
.quote p.q {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7.6vw, 7.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 12.5em;
}
.quote p.q .mask:last-child > span { color: var(--champagne-soft); font-style: italic; }
.quote footer { margin-top: clamp(30px, 4vw, 56px); display: flex; align-items: center; gap: 18px; font-size: 1rem; color: var(--muted); }
.quote footer::before { content: ""; width: 56px; height: 1px; background: var(--champagne); }

/* ==========================================================================
   INSIGHTS / QUICK ANSWERS / FAQ
   ========================================================================== */
.qa-grid { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.qa { padding: 28px 0; border-bottom: 1px solid var(--rule); display: grid; gap: 10px; }
.qa h3 { font-size: clamp(1.55rem, 2.3vw, 2rem); }
.qa p { margin: 0; color: var(--muted); max-width: 36em; }
.qa p a { color: var(--fg); }
@media (min-width: 900px) {
  .qa-grid { grid-template-columns: 1fr 1fr; column-gap: clamp(36px, 6vw, 96px); }
  .qa { grid-template-columns: 1fr; }
}

.faq-wrap { margin-top: clamp(64px, 9vw, 120px); display: grid; gap: 34px; }
.faq-wrap h3 { font-size: clamp(2rem, 3.4vw, 3rem); }
.faq { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item h4 { margin: 0; font-size: inherit; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.2;
  color: var(--fg);
}
.faq-q .case-plus { border-color: var(--rule); }
.faq-q .case-plus::before, .faq-q .case-plus::after { background: var(--fg); }
.faq-q[aria-expanded="true"] .case-plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a { display: grid; grid-template-rows: 1fr; transition: grid-template-rows 0.5s var(--ease); }
.js .faq-a { grid-template-rows: 0fr; }
.js .faq-a.is-open { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0 0 24px; color: var(--muted); max-width: 40em; }
.js .faq-a:not(.is-open) > div { visibility: hidden; }
@media (min-width: 960px) { .faq-wrap { grid-template-columns: 4fr 8fr; gap: clamp(40px, 6vw, 96px); } }

/* ==========================================================================
   SOCIAL
   ========================================================================== */
.social-band { padding-block: clamp(64px, 8vw, 110px); }
.social-grid { display: grid; gap: 32px; }
.social-grid h2 { font-size: clamp(2.2rem, 4.4vw, 3.8rem); max-width: 8em; }
.social-links { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.social-links a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--rule);
  transition: padding 0.45s var(--ease), background-color 0.45s, color 0.45s;
}
.social-links .ic { width: 28px; height: 28px; }
.social-links strong { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; line-height: 1.1; }
.social-links small { color: var(--muted); font-size: 0.95rem; }
.social-links a:hover, .social-links a:focus-visible { background: var(--fg); color: var(--bg); padding-inline: 20px; }
.social-links a:hover small, .social-links a:focus-visible small { color: var(--bg); opacity: 0.75; }
.social-links .go { width: 30px; height: 1px; background: currentColor; transition: width 0.4s var(--ease); }
.social-links a:hover .go { width: 56px; }
@media (min-width: 900px) { .social-grid { grid-template-columns: 4fr 8fr; gap: clamp(40px, 6vw, 96px); align-items: start; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; gap: clamp(44px, 6vw, 80px); }
.contact-copy h2 { font-size: clamp(2.6rem, 6.2vw, 5.6rem); line-height: 1; margin-bottom: 26px; max-width: 8em; }
.contact-lines { margin: 36px 0; display: grid; gap: 20px; }
.contact-lines a.big {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.contact-lines small { display: block; color: var(--muted); font-size: 0.86rem; letter-spacing: 0.06em; margin-bottom: 4px; }

.form { display: grid; gap: 4px; }
.form-panel { padding: clamp(24px, 3.4vw, 48px); border: 1px solid var(--rule); background: rgba(243, 238, 227, 0.03); }
.form-panel > h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 26px; }
.field { position: relative; margin-bottom: 8px; }
.field label { display: block; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 2px; }
.field label .req { color: var(--champagne); }
.field input, .field select, .field textarea {
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  color: var(--fg);
  font-size: 1.05rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--champagne) 50%), linear-gradient(135deg, var(--champagne) 50%, transparent 50%);
  background-position: calc(100% - 12px) 55%, calc(100% - 6px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field select option { color: #15171c; background: #f3eee3; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--blue); box-shadow: 0 1px 0 0 var(--blue); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-bottom-color: #e58a7b; }
.field-error { min-height: 1.4em; margin: 4px 0 0; font-size: 0.85rem; color: #f0a394; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; gap: 0 28px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-actions { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.form-actions .fine { font-size: 0.85rem; color: var(--muted); margin: 0; max-width: 24em; }
.form-actions .fine a { text-decoration: underline; text-underline-offset: 3px; }

.form-success { display: none; padding: clamp(24px, 3.4vw, 48px); border: 1px solid rgba(196, 167, 108, 0.55); background: rgba(196, 167, 108, 0.06); }
.form-success h3 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 14px; }
.form-success p { color: var(--muted); max-width: 32em; }
.is-sent .form-panel { display: none; }
.is-sent .form-success { display: block; }

@media (min-width: 1000px) { .contact-grid { grid-template-columns: 5fr 6fr; } }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { padding-block: clamp(90px, 13vw, 180px); overflow: clip; }
.final-cta::before {
  content: "AKJ";
  position: absolute; right: -2vw; bottom: -0.2em; z-index: -1;
  font-family: var(--serif);
  font-size: clamp(10rem, 38vw, 38rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 23, 28, 0.16);
}
.final-cta h2 { font-size: clamp(2.8rem, 8vw, 7.4rem); line-height: 0.98; max-width: 10em; margin-bottom: 26px; }
.final-cta p.lede { margin-bottom: 36px; color: var(--muted); }
.final-cta .direct { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px 36px; font-size: 1.05rem; }
.final-cta .direct a { font-weight: 500; }
.t-gold .btn-primary::before { background: var(--ivory); }
.t-gold .btn-primary:hover { color: var(--ink); }
.t-gold .btn-ghost { border-color: rgba(21, 23, 28, 0.5); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--ivory); padding: clamp(64px, 8vw, 110px) 0 32px; border-top: 1px solid rgba(243, 238, 227, 0.1); }
.foot-top { display: grid; gap: 44px; }
.foot-brand .name { font-family: var(--serif); font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1; margin: 0 0 14px; }
.foot-brand .role { margin: 0 0 6px; color: var(--champagne); font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; }
.foot-brand .line { margin: 0; color: rgba(243, 238, 227, 0.7); max-width: 22em; }
.foot-cols { display: grid; gap: 34px 24px; grid-template-columns: 1fr 1fr; }
.foot-cols h2 { font-family: var(--sans); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(243, 238, 227, 0.55); margin-bottom: 16px; }
.foot-cols li + li { margin-top: 10px; }
.foot-cols a { color: rgba(243, 238, 227, 0.9); background-image: linear-gradient(var(--champagne), var(--champagne)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0 1px; padding-bottom: 2px; transition: background-size 0.4s var(--ease); }
.foot-cols a[href^="mailto:"] { white-space: nowrap; }
@media (max-width: 420px) { .foot-cols a[href^="mailto:"] { white-space: normal; overflow-wrap: anywhere; } }
.foot-cols a:hover, .foot-cols a:focus-visible { background-size: 100% 1px; }
.foot-bottom { margin-top: clamp(44px, 6vw, 80px); padding-top: 24px; border-top: 1px solid rgba(243, 238, 227, 0.1); display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; font-size: 0.88rem; color: rgba(243, 238, 227, 0.6); }
.foot-bottom ul { display: flex; gap: 22px; }
.foot-bottom a:hover { color: var(--champagne); }
@media (min-width: 900px) {
  .foot-top { grid-template-columns: 4fr 8fr; gap: 64px; }
  .foot-cols { grid-template-columns: 0.8fr 0.8fr 1.6fr; }
}

/* ==========================================================================
   LEGAL
   ========================================================================== */
.legal { background: var(--ivory); color: var(--ink); padding-block: clamp(64px, 8vw, 110px); }
.legal .wrap { max-width: 820px; }
.legal h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 2em 0 0.5em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: rgba(21, 23, 28, 0.82); }
.legal ul { list-style: disc; padding-left: 1.3em; margin: 0 0 1.2em; }
.legal li + li { margin-top: 6px; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal .updated { font-size: 0.92rem; color: rgba(21, 23, 28, 0.6); margin-bottom: 2em; }

/* ==========================================================================
   FLOATING / STICKY CONTACT
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 75;
  display: none;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 0 17px;
  background: var(--wa);
  color: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.wa-float .ic { width: 24px; height: 24px; }
.wa-float span { max-width: 0; overflow: hidden; white-space: nowrap; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em; transition: max-width 0.5s var(--ease), margin 0.5s var(--ease); }
.wa-float:hover, .wa-float:focus-visible { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4); }
.wa-float:hover span, .wa-float:focus-visible span { max-width: 160px; margin-left: 10px; }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 75;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  background: rgba(21, 23, 28, 0.96);
  border-top: 1px solid rgba(243, 238, 227, 0.14);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ivory);
  border-right: 1px solid rgba(243, 238, 227, 0.1);
}
.sticky-cta a:last-child { background: var(--champagne); color: var(--ink); border-right: 0; }
.sticky-cta .ic { color: var(--wa); width: 20px; height: 20px; }
.sticky-cta a:nth-child(2) .ic { color: var(--champagne); }
body { padding-bottom: 58px; }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
  .wa-float { display: inline-flex; }
}
@media (max-width: 359px) {
  .sticky-cta a { font-size: 0.72rem; gap: 5px; }
  .brand-name { display: none; }
}

/* ==========================================================================
   REDUCED MOTION — remove all non-essential motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js .mask > span { transform: none !important; }
  .stage-arc path { stroke-dashoffset: 0; }
  .dot, .cursor-glow, .cursor-ring, .grid-bg::after { display: none !important; }
  .mobile-nav li a { opacity: 1; transform: none; }
}

.nw { white-space: nowrap; }

/* project details */
.case-body h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne); font-weight: 600; margin: 20px 0 10px; }
.case-body h4:first-child { margin-top: 4px; }
.case-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.case-chips li { border: 1px solid var(--rule); padding: 5px 10px; font-size: 0.82rem; color: var(--ivory); }
.case-steps { list-style: none; margin: 0 0 18px; padding: 0; counter-reset: cs; display: grid; gap: 12px; }
.case-steps li { counter-increment: cs; position: relative; padding-left: 34px; display: grid; gap: 2px; font-size: 0.92rem; }
.case-steps li::before { content: counter(cs, decimal-leading-zero); position: absolute; left: 0; top: 1px; font-family: var(--serif); color: var(--champagne); font-size: 0.95rem; }
.case-steps strong { color: var(--ivory); font-weight: 600; }
.case-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; padding: 12px 0 4px; }
.case-meta .k { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.blur-name { filter: blur(6px); -webkit-user-select: none; user-select: none; pointer-events: none; color: var(--ivory); font-family: var(--serif); font-size: 1.2rem; }
.case-sector { font-size: 0.82rem; color: var(--champagne); }
.case-results { margin: 0 0 16px; padding-left: 18px; }
.case[open] { grid-column: 1 / -1; }
.case[open] .case-cover { height: 84px; }
.case[open] .case-body { max-width: none; padding-bottom: 28px; }
@media (min-width: 720px) {
  .case-steps { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
}

/* selected work: two-column expanded layout */
.case-cols { display: grid; gap: 4px 48px; }
@media (min-width: 900px) { .case-cols { grid-template-columns: 5fr 7fr; } }
.case-body p { max-width: 44em; }
.case-facts { margin: 0; display: grid; gap: 10px; }
.case-facts div { display: grid; gap: 2px; }
.case-facts dt { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.case-facts dd { margin: 0; color: var(--ivory); }
.case-row h3 { overflow-wrap: anywhere; }
.case-steps li { align-content: start; }

/* ===== Selected Work v3: luxury project cards ===== */
.case-cover .ini { left: 22px; bottom: 4px; font-size: clamp(3.4rem, 5vw, 4.6rem); }
.case.long .case-cover .ini { font-size: clamp(2.6rem, 3.6vw, 3.4rem); }
.case-cover .num {
  position: absolute; right: 18px; top: 12px; left: auto; bottom: auto;
  font-family: var(--serif); font-size: 2.6rem; line-height: 1; letter-spacing: 0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(196, 167, 108, 0.7);
}
.pat-1 .case-cover {
  background:
    radial-gradient(circle, rgba(196, 167, 108, 0.32) 1px, transparent 1.6px) 0 0 / 16px 16px,
    linear-gradient(160deg, var(--navy-2), var(--navy));
}
.pat-2 .case-cover {
  background:
    repeating-linear-gradient(45deg, rgba(196, 167, 108, 0.14) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(196, 167, 108, 0.14) 0 1px, transparent 1px 14px),
    linear-gradient(160deg, var(--navy-2), var(--navy));
}
.pat-3 .case-cover {
  background:
    repeating-radial-gradient(circle at 100% 0%, rgba(196, 167, 108, 0.22) 0 1px, transparent 1px 16px),
    linear-gradient(160deg, var(--navy-2), var(--navy));
}
.case-row { align-items: flex-start; padding: 20px 22px 22px; }
.case-head { min-width: 0; }
.case-head .case-sector { margin: 0 0 8px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.case-head h3 { font-size: clamp(1.55rem, 2.2vw, 2rem); line-height: 1.1; overflow-wrap: anywhere; }
.case-head .case-areas { margin: 10px 0 0; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--champagne); line-height: 1.45; }
.case-view { margin: 14px 0 0; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--ivory); }
.case-view .v-open::after, .case-view .v-close::after { content: " \2192"; display: inline-block; transition: transform 0.4s var(--ease); }
.case:hover .case-view .v-open::after { transform: translateX(5px); }
.case-view .v-close { display: none; color: var(--champagne); }
.case[open] .case-view .v-open { display: none; }
.case[open] .case-view .v-close { display: inline; }
.case-plus { margin-top: 2px; }
.case[open] .case-plus { background: var(--champagne); border-color: var(--champagne); }
.case[open] .case-plus::before, .case[open] .case-plus::after { background: var(--ink); }
.case-tag { display: inline-block; margin: 0 22px 18px; padding: 4px 9px; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid rgba(196, 167, 108, 0.5); color: var(--champagne); }
.case[open] { background: rgba(243, 238, 227, 0.035); }
.case[open] .case-body { animation: caseIn 0.55s var(--ease) both; }
@keyframes caseIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.case-body { padding: 0 22px 26px; }
@media (min-width: 720px) { .case-body { padding: 4px 32px 32px; } }
.case-list { margin: 0 0 16px; padding: 0; list-style: none; display: grid; gap: 8px; }
.case-list li { position: relative; padding-left: 18px; font-size: 0.95rem; }
.case-list li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 8px; height: 1px; background: var(--champagne); }
.case-scope { margin: 0 0 16px; display: grid; gap: 14px; }
.case-scope div { display: grid; gap: 2px; padding-left: 14px; border-left: 1px solid rgba(196, 167, 108, 0.5); }
.case-scope dt { color: var(--ivory); font-weight: 600; font-size: 0.92rem; }
.case-scope dd { margin: 0; color: var(--muted); font-size: 0.92rem; }
.case-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--rule); }
.case-actions .more::after { content: "\2192"; width: auto; height: auto; background: none; font-size: 1.15em; transition: transform 0.4s var(--ease); }
.case-actions .more:hover::after, .case-actions .more:focus-visible::after { width: auto; transform: translateX(6px); }
.case-close {
  font: inherit; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--ink); background: var(--champagne); border: 1px solid var(--champagne);
  padding: 12px 20px; cursor: pointer; transition: background 0.3s, color 0.3s;
}
.case-close:hover, .case-close:focus-visible { background: transparent; color: var(--champagne); }
@media (max-width: 719px) {
  .case-actions { flex-direction: column; align-items: stretch; }
  .case-close { width: 100%; padding: 15px 20px; }
  .case-actions .more { padding: 6px 0; }
}
.case-grid { align-items: stretch; }
.case:not([open]) > summary { height: 100%; display: flex; flex-direction: column; }
.case:not([open]) .case-row { flex: 1 1 auto; }
.case-view .v-open::after, .case-view .v-close::after { margin-left: 6px; }
