/* ═══════════════════════════════════════════════════════════════
   DPG — Dubai Product Growth · "Nocturne" direction
   Rich navy + ivory + one gold whisper. Rendered in a calm
   neo-grotesque. The luxury is in restraint, type, space, material.
   Light/dark sections alternate like a lookbook to break the colour.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* ——— Grounds ——— */
  --ink:      #0B1B2B;   /* deep ink-navy — primary dark ground */
  --ink-2:    #12283D;   /* lifted navy — cards/panels on dark */
  --ink-deep: #081521;   /* vignette edge */
  --ivory:    #F4F1EA;   /* warm paper — light ground */
  --ivory-2:  #EAE5DA;   /* card fills on light */

  /* ——— The one accent ——— */
  --gold:      #C99A5B;  /* warm brass */
  --gold-soft: #DCB985;  /* hover / secondary gold */
  --gold-deep: #A07A3C;  /* gold on ivory (contrast) */

  /* ——— Text ——— */
  --on-ink:        rgba(244,241,234,0.94);
  --on-ink-muted:  #A9B4C0;
  --on-ivory:      rgba(13,22,33,0.94);
  --on-ivory-muted:#6B6256;

  /* ——— Hairlines ——— */
  --line-ink:    rgba(244,241,234,0.13);
  --line-ink-2:  rgba(244,241,234,0.22);
  --line-ivory:  rgba(13,22,33,0.13);
  --line-ivory-2:rgba(13,22,33,0.20);
  --gold-line:   rgba(201,154,91,0.42);

  /* ——— Type ——— */
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;  /* one pull-quote only */

  /* ——— Motion ——— */
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --dur:  0.55s;

  /* ——— Layout ——— */
  --container: 1240px;
  --pad: 132px;
}

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

/* ——— global film grain — barely-there, takes the edge off flat fills ——— */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 300; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  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='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ═══════════════════════════ section shells */
.section { position: relative; padding: var(--pad) 32px; isolation: isolate; }
.section > .wrap { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; }

.ink   { background: var(--ink);   color: var(--on-ink); }
.ivory { background: var(--ivory); color: var(--on-ivory); }

/* deep-velvet vignette on ink sections */
.ink::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(244,241,234,0.045), transparent 55%),
    radial-gradient(100% 100% at 50% 120%, var(--ink-deep), transparent 70%);
}
/* gold hairline transition at the top edge of selected sections */
.rule-top::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent, var(--gold-line) 18%, var(--gold-line) 82%, transparent);
}

/* ═══════════════════════════ shared atoms */
.eyebrow {
  font-family: var(--sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 13px; margin: 0;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow.plain::before { display: none; }
.proof-eyebrow { font-size: 13px; letter-spacing: 0.18em; color: var(--gold-soft); margin-bottom: 38px; }
.proof-eyebrow::before { background: var(--gold-soft); }

h2.sec-title {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(34px, 5vw, 62px); line-height: 1.04; letter-spacing: -0.03em;
  margin: 22px 0 0;
}
.lede {
  margin: 24px 0 0; max-width: 620px;
  font-size: clamp(16px, 1.55vw, 19px); line-height: 1.62; font-weight: 400;
}
.ink .lede   { color: var(--on-ink-muted); }
.ivory .lede { color: var(--on-ivory-muted); }
.sec-head { max-width: 760px; margin-bottom: 76px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 16px 28px; font-family: var(--sans); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform var(--dur) var(--ease), background var(--dur), color var(--dur), border-color var(--dur);
}
.btn svg { width: 15px; height: 15px; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-line-ink { border-color: var(--line-ink-2); color: var(--on-ink); }
.btn-line-ink:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-line-ivory { border-color: var(--line-ivory-2); color: var(--on-ivory); }
.btn-line-ivory:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-solid-ink { background: var(--ink); color: var(--ivory); }
.btn-solid-ink:hover { transform: translateY(-2px); background: var(--ink-2); }

/* drawn-underline link */
.ul {
  position: relative; padding-bottom: 2px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size var(--dur) var(--ease), color var(--dur);
}
.ul:hover { background-size: 100% 1px; color: var(--gold); }

/* reveal — transform rise (timeline-safe; never renders blank) + opacity */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
html.reveal-snap .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .vp-card { transition: none; }
  .vp-card:hover, .vp-card:focus-visible { transform: none; }
  .vp-card .vp-rule { transition: none; }
  .vp-card:hover .vp-rule, .vp-card:focus-visible .vp-rule { transform: scaleX(1); }
}

/* ═══════════════════════════ brand lockup */
.lockup { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.lockup .mark {
  font-family: var(--sans); font-weight: 600; font-size: 22px; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 9px;
}
.lockup .mark .chip {
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em;
  border: 1px solid var(--gold-line); color: var(--gold); border-radius: 2px;
  padding: 3px 5px; transform: translateY(-1px);
}
.lockup .full {
  font-family: var(--sans); font-weight: 500; font-size: 9.5px;
  letter-spacing: 0.34em; text-transform: uppercase;
}
.ink .lockup .full   { color: var(--on-ink-muted); }
.ivory .lockup .full { color: var(--on-ivory-muted); }

/* ═══════════════════════════ topbar */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px; transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(11,27,43,0.78); backdrop-filter: blur(16px);
  border-bottom-color: var(--line-ink); padding: 14px 32px;
}
.topbar .lockup .mark { color: var(--on-ink); }
.topbar nav { display: flex; align-items: center; gap: 30px; }
.topbar nav a.navlink {
  font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: 0.04em;
  color: var(--on-ink-muted); transition: color var(--dur);
}
.topbar nav a.navlink:hover { color: var(--on-ink); }
.topbar .book {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 11px 18px; border: 1px solid var(--gold); border-radius: 2px;
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); transition: background var(--dur), color var(--dur), transform var(--dur) var(--ease);
}
.topbar .book:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-ink-2); border-radius: 4px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.nav-toggle span { display: block; width: 17px; height: 1.5px; background: var(--on-ink); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 75; background: rgba(8,21,33,0.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 32px;
  transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden;
}
.mobile-menu.open { transform: none; visibility: visible; }
.mobile-menu a {
  font-family: var(--sans); font-weight: 500; font-size: 30px; letter-spacing: -0.02em;
  color: var(--on-ink); padding: 14px 0; border-bottom: 1px solid var(--line-ink);
  display: flex; align-items: baseline; gap: 16px;
}
.mobile-menu a .mn { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); }

/* ═══════════════════════════ HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 150px 32px 96px; overflow: hidden; isolation: isolate;
  /* royal-blue core glow fading to near-black edges (from the constellation ref) */
  background: radial-gradient(82% 78% at 62% 42%, #1B4A78 0%, #123A5C 26%, #0B1B2B 58%, #05101B 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* interactive constellation fills the hero */
.hero-net { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 1; }
/* OPTIONAL Higgsfield video sits here — see markup. Kept dark + low opacity. */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.30; }
/* vignette (dark edges) + left ink wash so the headline stays crisp over particles */
.hero-bg::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,16,27,0.9) 0%, rgba(7,18,30,0.55) 36%, rgba(11,27,43,0.08) 60%, rgba(11,27,43,0) 100%),
    radial-gradient(92% 88% at 64% 45%, rgba(5,16,27,0) 36%, rgba(4,11,19,0.5) 78%, rgba(2,7,12,0.9) 100%);
}
.hero-grid {
  position: relative; z-index: 5; max-width: var(--container); margin: 0 auto; width: 100%;
}
.hero-copy { max-width: 720px; }
.hero h1 {
  font-family: var(--sans); font-weight: 500; max-width: 16ch;
  font-size: clamp(44px, 6.4vw, 92px); line-height: 0.98; letter-spacing: -0.04em;
  margin: 30px 0 0; color: var(--on-ink);
}
.hero h1 .accent { color: var(--gold); font-weight: 400; }
.hero .sub { margin: 30px 0 0; max-width: 520px; font-size: clamp(16px, 1.6vw, 19px); line-height: 1.62; color: var(--on-ink-muted); }
.hero .cta-row { margin-top: 42px; display: flex; gap: 14px; flex-wrap: wrap; }

/* portrait caption labels (used by the About frames) */
.cap {
  position: absolute; font-family: var(--sans); font-weight: 600;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-ink-muted);
}
.cap.bl { left: 24px; right: 24px; bottom: 22px; display: flex; justify-content: space-between; }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 600; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--on-ink-muted); }
.scroll-hint .ln { width: 1px; height: 32px; background: linear-gradient(var(--gold), transparent); animation: drop 2.4s var(--ease) infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top;} 50%{transform:scaleY(1);transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }

/* ═══════════════════════════ PROOF BAR */
.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 6px 40px 6px 0; display: flex; flex-direction: column; gap: 16px; border-right: 1px solid var(--line-ink); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--sans); font-weight: 300; letter-spacing: -0.03em; line-height: 1; font-size: clamp(42px, 5.2vw, 66px); color: var(--gold); }
.stat .num .u { font-size: 0.42em; font-weight: 500; color: var(--gold); letter-spacing: 0.04em; vertical-align: 0.55em; margin: 0 0.06em; }
.stat .lab { font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted); line-height: 1.55; }

.logo-strip { margin-top: 66px; padding-top: 42px; border-top: 1px solid var(--line-ink); display: flex; align-items: center; gap: 16px 44px; flex-wrap: wrap; }
.logo-strip .ls-label { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--on-ink-muted); margin-right: 6px; }
.logo-strip .wm { font-family: var(--sans); font-weight: 600; font-size: 20px; letter-spacing: 0.01em; color: var(--ivory); opacity: 0.4; transition: opacity var(--dur); }
.logo-strip .wm:hover { opacity: 0.85; }
.logo-strip.ventures { margin-top: 88px; }

/* ═══════════════════════════ VALUE PROPS (ivory) */
.vp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vp-card { position: relative; padding: 42px 38px 40px; background: var(--ivory-2); border: 1px solid var(--line-ivory); overflow: hidden; outline: none; transition: transform var(--dur) var(--ease), border-color var(--dur), box-shadow var(--dur) var(--ease), background-color var(--dur); }
.vp-card::before { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity var(--dur); background: radial-gradient(70% 80% at 0% 0%, rgba(201,154,91,0.12), transparent 58%); }
.vp-card:hover, .vp-card:focus-visible { transform: translateY(-1px); border-color: var(--gold-line); box-shadow: 0 22px 44px -38px rgba(11,27,43,0.36); }
.vp-card:hover::before, .vp-card:focus-visible::before { opacity: 1; }
.vp-card:focus-visible { box-shadow: inset 0 0 0 1px var(--gold-line), 0 22px 44px -38px rgba(11,27,43,0.36); }
/* gold hairline that draws in left→right on hover/focus */
.vp-card .vp-rule { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold); opacity: 0.65; transform: scaleX(0); transform-origin: left; transition: transform 240ms var(--ease); }
.vp-card:hover .vp-rule, .vp-card:focus-visible .vp-rule { transform: scaleX(1); }
.vp-card .vp-num { position: relative; display: block; font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; font-variant-numeric: tabular-nums; color: var(--gold-soft); margin-bottom: 28px; }
.vp-card h3 { position: relative; font-family: var(--sans); font-weight: 500; font-size: 24px; letter-spacing: -0.02em; margin: 0 0 13px; color: var(--ink); }
.vp-card p { position: relative; margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--on-ivory-muted); }

/* ═══════════════════════════ SERVICES (ink) */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; gap: 20px; padding: 42px 34px; background: var(--ink-2); border: 1px solid var(--line-ink); overflow: hidden; }
.tier.featured { border-color: var(--gold-line); box-shadow: inset 0 1px 0 rgba(201,154,91,0.2); }
.tier.featured::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep)); }
.tier .corner { position: absolute; top: 26px; right: 30px; font-family: var(--sans); font-weight: 600; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.tier .t-tag { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-ink-muted); }
.tier h3 { font-family: var(--sans); font-weight: 500; font-size: 24px; line-height: 1.14; letter-spacing: -0.02em; margin: 0; color: var(--on-ink); }
.tier .who { font-size: 14.5px; line-height: 1.55; color: var(--on-ink-muted); margin: 0; }
.tier .price-block { display: flex; flex-direction: column; gap: 6px; padding: 20px 0; border-top: 1px solid var(--line-ink); border-bottom: 1px solid var(--line-ink); }
.tier .price { font-family: var(--sans); font-weight: 300; font-size: 38px; letter-spacing: -0.02em; line-height: 1; color: var(--gold); }
.tier .price small { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--on-ink-muted); margin-left: 6px; }
.tier .price.enq { font-size: 25px; color: var(--on-ink); }
.tier .price-sub { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-ink-muted); }
.tier ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tier li { display: flex; gap: 12px; align-items: baseline; font-size: 14.5px; line-height: 1.45; color: var(--on-ink-muted); }
.tier li::before { content: ""; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; transform: translateY(-2px); }
.tier .outcome { font-size: 14px; line-height: 1.5; color: var(--on-ink-muted); font-style: italic; }
.tier .t-cta { margin-top: auto; padding-top: 4px; }
.tier .t-cta .btn { width: 100%; justify-content: center; }

.free-strip { margin-top: 22px; padding: 24px 30px; border: 1px dashed var(--line-ink-2); display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.free-strip .l { display: flex; flex-direction: column; gap: 6px; }
.free-strip .lab { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.free-strip .ti { font-size: 18px; color: var(--on-ink); }

/* ═══════════════════════════ APPROACH (ivory) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-ivory); }
.step { padding: 44px 36px 48px 0; border-right: 1px solid var(--line-ivory); }
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 36px; }
.step .sn { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 30px; display: block; }
.step h3 { font-family: var(--sans); font-weight: 500; font-size: 27px; letter-spacing: -0.02em; margin: 0 0 14px; color: var(--ink); }
.step p { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--on-ivory-muted); }
.engage-note { margin-top: 42px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ivory-muted); }
.engage-note b { color: var(--ink); font-weight: 600; }

/* ═══════════════════════════ ABOUT (ink) */
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 66px; align-items: start; }
.about-media { display: grid; grid-template-columns: 1fr; gap: 16px; position: sticky; top: 104px; }
.about-media .frame { position: relative; overflow: hidden; border: 1px solid var(--gold-line); outline: 5px solid var(--ink); outline-offset: -1px; background: linear-gradient(158deg, var(--ink-2), var(--ink-deep)); }
.about-media .frame.tall { grid-row: span 2; aspect-ratio: 3 / 5; }
.about-media .frame.tall.solo { grid-row: auto; aspect-ratio: 4 / 5; }
.about-media .frame.tall.solo img { object-position: 50% 16%; }
.about-media .frame.wide { aspect-ratio: 4 / 5; }
.about-media .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.96) contrast(1.02); }
.about-media .frame.tall img { object-position: 50% 18%; }
.about-media .glow { position: absolute; inset: 0; background: radial-gradient(70% 50% at 50% 14%, rgba(201,154,91,0.14), transparent 60%); }
.about-media .stripes { position: absolute; inset: 0; opacity: 0.28; background-image: repeating-linear-gradient(46deg, rgba(244,241,234,0.03) 0 10px, transparent 10px 20px); }
.about-media .cap.bl { font-size: 9px; }
.about-copy .role { margin: 0 0 6px; }
.about-copy .name { font-family: var(--sans); font-weight: 500; font-size: clamp(32px, 4.4vw, 52px); letter-spacing: -0.03em; margin: 0 0 14px; color: var(--on-ink); }
.about-copy .standfirst { font-size: 17px; line-height: 1.6; color: var(--on-ink); margin: 0 0 26px; font-weight: 500; }
.about-copy p.body { font-size: 16px; line-height: 1.66; color: var(--on-ink-muted); margin: 0 0 18px; }
.pull-quote { margin: 40px 0; padding: 0 0 0 32px; border-left: 1px solid var(--gold); font-family: var(--serif); font-weight: 500; font-style: italic; font-size: clamp(24px, 3vw, 34px); line-height: 1.28; letter-spacing: -0.01em; color: var(--ivory); }
.about-cred { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; border-top: 1px solid var(--line-ink); padding-top: 32px; }
.about-cred .k { font-family: var(--sans); font-weight: 600; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.about-cred .v { font-size: 15px; line-height: 1.45; color: var(--on-ink); }

/* ═══════════════════════════ CONTACT (ivory) */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.contact-left .ct-title { font-family: var(--sans); font-weight: 500; font-size: clamp(34px, 5vw, 60px); line-height: 1.02; letter-spacing: -0.03em; margin: 22px 0 0; color: var(--ink); }
.contact-direct { margin-top: 42px; display: flex; flex-direction: column; gap: 24px; }
.contact-direct .row .k { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-ivory-muted); margin-bottom: 8px; }
.contact-direct .row .v { font-size: 19px; color: var(--ink); }
.cal-slot { margin-top: 6px; padding: 20px 22px; border: 1px dashed var(--line-ivory-2); font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-ivory-muted); line-height: 1.7; }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ivory-muted); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--ivory-2); border: 1px solid var(--line-ivory-2); border-radius: 2px;
  padding: 15px 16px; width: 100%; -webkit-appearance: none; appearance: none;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%236B6256' stroke-width='1.5'><path d='M3 5l4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field input::placeholder, .field textarea::placeholder { color: #9c9485; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201,154,91,0.18); }
.field .err-msg { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.02em; color: #b0563a; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c46a4a; }
.field.invalid .err-msg { display: block; }
.form-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-foot .note { font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-ivory-muted); max-width: 320px; line-height: 1.65; }
.form-success { grid-column: 1/-1; display: none; flex-direction: column; gap: 14px; padding: 42px; border: 1px solid var(--gold-line); background: linear-gradient(180deg, rgba(201,154,91,0.07), transparent 50%), var(--ivory-2); }
.form-success.show { display: flex; }
.form-success .tick { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--gold-deep); display: grid; place-items: center; color: var(--gold-deep); }
.form-success h4 { font-family: var(--sans); font-weight: 500; font-size: 24px; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.form-success p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--on-ivory-muted); }
.form-error { grid-column: 1/-1; display: none; font-family: var(--sans); font-weight: 500; font-size: 13px; color: #b0563a; padding: 14px 16px; border: 1px solid rgba(176,86,58,0.4); background: rgba(176,86,58,0.06); }
.form-error.show { display: block; }

/* ═══════════════════════════ ATMOSPHERE BANDS (full-bleed imagery) */
.atmos { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(360px, 52vh, 560px); display: flex; align-items: flex-end; background: var(--ink); }
.atmos-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.atmos.skyline .atmos-img { object-position: center 38%; }
.atmos.room .atmos-img { object-position: center 14%; }
.atmos.room { min-height: clamp(440px, 62vh, 660px); }
.atmos-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* desk shot: copy sits on the dark left negative space */
.atmos-veil.left { background: linear-gradient(90deg, rgba(8,18,30,0.92) 0%, rgba(8,18,30,0.72) 32%, rgba(8,18,30,0.12) 60%, transparent 80%), linear-gradient(0deg, rgba(8,18,30,0.5), transparent 45%); }
/* craft shot: subject sits left, copy drops into the dark right negative space */
.atmos-veil.right { background: linear-gradient(270deg, rgba(8,18,30,0.93) 0%, rgba(8,18,30,0.74) 30%, rgba(8,18,30,0.16) 60%, transparent 82%), linear-gradient(0deg, rgba(8,18,30,0.5), transparent 45%); }
.atmos.craft .atmos-img { object-position: center 40%; }
.atmos-veil.bottom { background: linear-gradient(0deg, rgba(8,18,30,0.94) 4%, rgba(8,18,30,0.55) 34%, transparent 72%); }
.atmos-inner { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px clamp(40px, 6vw, 72px); }
.atmos-inner:not(.bottom) { align-self: center; padding-top: clamp(40px, 6vw, 72px); }
.atmos-inner.right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.atmos-inner.right .atmos-line { margin-left: auto; }
.atmos .eyebrow { color: var(--gold-soft); margin: 0 0 16px; }
.atmos-line { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(24px, 3.2vw, 40px); line-height: 1.18; letter-spacing: -0.01em; color: var(--ivory); max-width: 18ch; margin: 0; text-wrap: balance; }
.atmos.skyline .atmos-line { max-width: 22ch; }
@media (max-width: 760px) {
  .atmos-veil.left { background: linear-gradient(0deg, rgba(8,18,30,0.95) 8%, rgba(8,18,30,0.55) 40%, rgba(8,18,30,0.2) 100%); }
  .atmos-veil.right { background: linear-gradient(0deg, rgba(8,18,30,0.95) 8%, rgba(8,18,30,0.55) 40%, rgba(8,18,30,0.2) 100%); }
  .atmos-inner.right { align-items: flex-start; text-align: left; }
  .atmos-inner.right .atmos-line { margin-left: 0; }
  .atmos-inner:not(.bottom) { align-self: flex-end; padding-bottom: clamp(36px, 8vw, 56px); }
  .atmos-line { max-width: 26ch; }
}

/* ═══════════════════════════ FOOTER (ink) */
.footer { background: var(--ink); border-top: 1px solid var(--line-ink); padding: 84px 32px 42px; position: relative; }
.footer.has-bg { isolation: isolate; overflow: hidden; padding-top: clamp(180px, 22vw, 300px); }
.footer-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 0; }
.footer-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(0deg, rgba(8,18,30,0.97) 30%, rgba(8,18,30,0.82) 52%, rgba(8,18,30,0.62) 74%, rgba(8,18,30,0.4) 100%); }
.footer.has-bg .footer-grid, .footer.has-bg .footer-bottom { position: relative; z-index: 2; }
.footer-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 50px; }
.footer .f-lockup .mark { font-size: 30px; color: var(--on-ink); }
.footer .f-lockup .full { font-size: 11px; letter-spacing: 0.3em; margin-top: 8px; }
.footer .pos { margin: 20px 0 0; font-size: 15px; line-height: 1.62; color: var(--on-ink-muted); max-width: 290px; }
.footer h4 { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--on-ink-muted); margin: 0 0 18px; }
.footer a.fl { display: block; color: var(--on-ink); padding: 7px 0; font-size: 15px; transition: color var(--dur); }
.footer a.fl:hover { color: var(--gold); }
.footer .sibling b { color: var(--gold); font-weight: 600; }
.footer-bottom { max-width: var(--container); margin: 48px auto 0; padding-top: 28px; border-top: 1px solid var(--line-ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: 0.08em; color: var(--on-ink-muted); }

/* ═══════════════════════════ responsive */
@media (max-width: 1000px) {
  :root { --pad: 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero .portrait { max-width: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-media { position: static; max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; }
  .vp-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .topbar nav, .topbar .book { display: none; }
  .nav-toggle { display: flex; }
  .proof-stats { grid-template-columns: 1fr; gap: 30px; }
  .stat { border-right: none; border-bottom: 1px solid var(--line-ink); padding: 0 0 26px; }
  .stat:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; padding: 36px 0 36px; border-bottom: 1px solid var(--line-ivory); }
  .step:not(:first-child) { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .about-cred { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .section { padding: var(--pad) 20px; }
  .topbar { padding: 16px 20px; }
  .hero { padding: 128px 20px 84px; }
  .form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
