/* ============================================================
   Golden Nova Agency — v2 gold-on-black editorial system
   Display: Fraunces (variable) · Body/UI: Satoshi (variable)
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces-italic-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/satoshi-var.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* base */
  --black: #0a0908;
  --panel: #121009;
  --panel-2: #171410;
  --line: rgba(214, 186, 120, 0.16);
  --line-strong: rgba(214, 186, 120, 0.34);
  /* golds pulled from the logo foil */
  --gold-hi: #eddfa9;
  --gold: #c9a75f;
  --gold-deep: #96742f;
  --bronze: #6f5524;
  /* text */
  --ivory: #f3eddd;
  --body: #c8c0ad;
  --muted: #8f8674;
  /* metallic sheen — gold elements only */
  --gold-metal: linear-gradient(115deg, #8a6a2c 0%, #c9a75f 30%, #eede9e 50%, #c9a75f 68%, #7a5e28 100%);
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --disp: 'Fraunces', 'Georgia', serif;
  --sans: 'Satoshi', 'Avenir Next', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
::selection { background: rgba(201, 167, 95, 0.9); color: #14100a; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

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

/* film grain — fixed, non-interactive */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.5vw, 52px);
}

/* ---------- floating island nav ---------- */
.nav-island {
  position: fixed;
  top: clamp(12px, 2.2vh, 22px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: min(1150px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 10px 9px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(13, 11, 8, 0.58);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav-island.scrolled {
  background: rgba(12, 10, 8, 0.88);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.85);
}
.wordmark {
  font-family: var(--disp);
  font-weight: 470;
  font-size: 1.22rem;
  letter-spacing: 0.002em;
  color: var(--ivory);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.32em;
  line-height: 1;
}
.wordmark em {
  font-style: italic;
  font-weight: 440;
  color: var(--gold);
}
.wordmark .wm-tag {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 580;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  transform: translateY(-1px);
}
.island-links { display: flex; align-items: center; gap: 30px; }
.island-links .nav-link {
  font-size: 0.92rem;
  font-weight: 480;
  color: var(--body);
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease);
}
.island-links .nav-link:hover { color: var(--gold-hi); }
.island-cta { display: flex; align-items: center; gap: 8px; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 560;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), filter 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.98); }
.btn-gold {
  background: var(--gold-metal);
  color: #191305;
  box-shadow: 0 1px 0 rgba(255, 240, 190, 0.5) inset, 0 -1px 0 rgba(60, 42, 8, 0.55) inset, 0 14px 34px -14px rgba(201, 167, 95, 0.45);
}
.btn-gold:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn-gold .arr {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(20, 14, 3, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
}
.btn-gold:hover .arr { transform: translate(2px, -1px); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

/* hamburger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 55;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 22px; height: 1.6px;
  background: var(--ivory);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
.burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 39; /* below .nav-island so the wordmark + burger stay visible */
  background: rgba(8, 7, 6, 0.94);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(28px, 8vw, 64px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
.mobile-nav.open { visibility: visible; opacity: 1; transition-delay: 0s; }
.mobile-nav a.m-link {
  font-family: var(--disp);
  font-weight: 420;
  font-size: clamp(2rem, 9vw, 2.9rem);
  color: var(--ivory);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(26px);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
}
.mobile-nav.open a.m-link { transform: none; opacity: 1; }
.mobile-nav.open a.m-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.open a.m-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.open a.m-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.open a.m-link:nth-child(4) { transition-delay: 0.26s; }
.mobile-nav .m-cta { margin-top: 38px; opacity: 0; transform: translateY(26px); transition: transform 0.7s var(--ease) 0.34s, opacity 0.7s var(--ease) 0.34s; }
.mobile-nav.open .m-cta { opacity: 1; transform: none; }
.mobile-nav .m-mail { margin-top: 26px; color: var(--muted); font-size: 0.9rem; }
.mobile-nav .m-mail a { color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(140px, 17vh, 186px);
  padding-bottom: clamp(40px, 6vh, 72px);
  overflow: hidden;
}
/* atmospheric gold bloom — brand from light, not the logo */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -18%;
  width: 68vw;
  aspect-ratio: 1;
  pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(201, 167, 95, 0.16), rgba(150, 116, 47, 0.05) 46%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(214, 186, 120, 0.05) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(90deg, transparent calc(75% - 0.5px), rgba(214, 186, 120, 0.05) 75%, transparent calc(75% + 0.5px));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-hi);
}
.chip .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 167, 95, 0.55);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 167, 95, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(201, 167, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 167, 95, 0); }
}
h1 {
  font-family: var(--disp);
  font-weight: 400;
  font-variation-settings: 'opsz' 130;
  font-size: clamp(2.6rem, 5.6vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 30px 0 0;
  max-width: 15ch;
}
.rotor {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  white-space: nowrap;
  transition: width 0.55s var(--ease);
}
.rotor .word {
  display: inline-block;
  font-style: italic;
  font-weight: 460;
  color: var(--gold);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease);
}
.rotor .word.out { opacity: 0; transform: translateY(0.55em); }
.hero-sub {
  margin-top: 28px;
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  color: var(--body);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}
.avatars { display: flex; align-items: center; flex: 0 0 auto; }
.avatars img {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #0a0908;
  object-fit: cover;
}
.avatars img + img { margin-left: -12px; }
.hero-trust p { font-size: 0.9rem; color: var(--muted); max-width: 34ch; line-height: 1.5; }
.hero-trust p strong { color: var(--body); font-weight: 560; }

/* layered media stage — proof instead of logo */
.hero-stage {
  position: relative;
  min-height: clamp(320px, 38vw, 520px);
  display: grid;
  place-items: center;
}
.stage-back {
  position: absolute;
  top: 6%;
  left: 0;
  width: min(62%, 320px);
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(237, 223, 169, 0.04);
  transform: rotate(-4deg);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
}
.stage-back img { border-radius: 11px; border: 1px solid rgba(214, 186, 120, 0.1); }
.stage-video {
  position: relative;
  z-index: 1;
  width: min(58%, 264px);
  margin-left: 26%;
  aspect-ratio: 9 / 16;
  padding: 8px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: rgba(237, 223, 169, 0.05);
  transform: rotate(2.5deg);
  box-shadow:
    0 1px 0 rgba(255, 240, 190, 0.14) inset,
    0 60px 110px -50px rgba(0, 0, 0, 0.9),
    0 30px 80px -50px rgba(201, 167, 95, 0.35);
}
.stage-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 17px;
}
.stage-video figcaption {
  position: absolute;
  inset: auto 8px 8px 8px;
  padding: 40px 16px 14px;
  border-radius: 0 0 17px 17px;
  background: linear-gradient(transparent, rgba(8, 7, 5, 0.88));
  font-size: 0.84rem;
  color: var(--ivory);
  font-weight: 520;
}
.stage-video figcaption small {
  display: block;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 560;
}

/* ---------- proof marquee ---------- */
.proof { padding: clamp(48px, 7vh, 80px) 0 0; }
.proof-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.proof-label span {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 520;
  white-space: nowrap;
}
.proof-label::after { content: ''; height: 1px; flex: 1; background: var(--line); }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 140px);
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--black), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--black), transparent); }
.marquee-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track img {
  height: clamp(150px, 22vw, 230px);
  width: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* ---------- stats band ---------- */
.stats {
  margin-top: clamp(80px, 12vh, 140px);
  padding: clamp(56px, 9vh, 96px) 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23, 20, 16, 0.55), rgba(10, 9, 8, 0) 80%);
}
.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.stat-num {
  font-family: var(--disp);
  font-weight: 380;
  font-variation-settings: 'opsz' 130;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ivory);
  display: block;
}
.stat-hero .stat-num { font-size: clamp(4.4rem, 10vw, 8.2rem); }
.stat-suffix {
  font-style: italic;
  font-weight: 420;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.stat-label {
  margin-top: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 540;
}
.stat-hero .stat-label { max-width: 30ch; }
.stats-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
}
.stat-slot { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.stat-slot .stat-num { font-size: clamp(2rem, 3.4vw, 3rem); }
.stat-num.stat-tbd { color: var(--gold-deep); }
.stat-slot .stat-label { font-size: 0.72rem; margin-top: 10px; }

/* ---------- section scaffolding ---------- */
section { padding: clamp(84px, 13vh, 150px) 0 0; }
.sec-head { margin-bottom: clamp(36px, 5vh, 64px); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 560;
}
.kick-star { font-size: 0.9em; transform: translateY(-1px); }
h2 {
  font-family: var(--disp);
  font-weight: 400;
  font-variation-settings: 'opsz' 100;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.07;
  letter-spacing: -0.016em;
  color: var(--ivory);
  margin-top: 18px;
  max-width: 22ch;
}
h2 em { font-style: italic; font-weight: 440; color: var(--gold); }
.sec-head.split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.sec-head .lead {
  max-width: 38ch;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- work reel ---------- */
.reel {
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) transparent;
}
.reel::-webkit-scrollbar { height: 5px; }
.reel::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 4px; }
.reel::-webkit-scrollbar-track { background: rgba(214, 186, 120, 0.07); }
.reel-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(230px, 24vw, 296px);
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  scroll-snap-align: start;
  background: var(--panel);
}
.reel-card video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 42px 18px 16px;
  background: linear-gradient(transparent, rgba(8, 7, 5, 0.88));
  font-size: 0.86rem;
  color: var(--ivory);
  font-weight: 520;
  letter-spacing: 0.01em;
}
.reel-card figcaption small {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 560;
}
.reel-nav { display: flex; gap: 10px; }
.reel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold-hi);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.reel-btn:hover { border-color: var(--gold); background: rgba(201, 167, 95, 0.08); transform: translateY(-2px); }

/* empty slots — graceful "more coming" state */
.reel-slot, .site-slot {
  border: 1px dashed var(--line-strong);
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(150, 116, 47, 0.1), transparent 60%),
    var(--panel);
  display: grid;
  place-items: center;
}
.slot-inner { text-align: center; padding: 24px; }
.slot-star {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}
.slot-inner p {
  font-family: var(--disp);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--body);
  line-height: 1.3;
}
.slot-inner p small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 540;
}
.site-slot { aspect-ratio: 4 / 3.4; margin-bottom: clamp(16px, 2vw, 28px); border-radius: 14px; }

/* ---------- sites grid ---------- */
.sites-grid {
  columns: 3;
  column-gap: clamp(16px, 2vw, 28px);
}
.site-card {
  break-inside: avoid;
  margin-bottom: clamp(16px, 2vw, 28px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.site-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.site-card img { width: 100%; }
.site-card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ivory);
  font-weight: 520;
}
.site-card figcaption span {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 520;
}

/* ---------- services bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: clamp(14px, 1.6vw, 22px);
}
.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(165deg, var(--panel-2), var(--panel) 72%);
  padding: clamp(26px, 3vw, 42px);
  box-shadow: 0 1px 0 rgba(255, 240, 190, 0.06) inset;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.tile:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.tile h3 {
  font-family: var(--disp);
  font-weight: 430;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.tile p { margin-top: 14px; color: var(--body); max-width: 56ch; font-size: 0.99rem; }
.tile .tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.tile .tags li {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 480;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tile:hover .tags li { border-color: var(--line-strong); }

.tile-web {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  border-color: var(--line-strong);
  background:
    radial-gradient(140% 90% at 100% 0%, rgba(150, 116, 47, 0.14), transparent 55%),
    linear-gradient(165deg, #191509, var(--panel) 75%);
  box-shadow: 0 1px 0 rgba(255, 240, 190, 0.1) inset, 0 40px 90px -55px rgba(201, 167, 95, 0.35);
}
.tile-web h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.tile-web p { font-size: 1.06rem; }
.tile-web .tags li { color: var(--body); border-color: var(--line-strong); }
.tile-web .flag {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 13px;
  font-weight: 560;
  margin-bottom: 20px;
}
.tile-media {
  margin-top: 28px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(237, 223, 169, 0.04);
  overflow: hidden;
}
.tile-media img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.9s var(--ease);
}
.tile-web:hover .tile-media img { transform: scale(1.035); }
.tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 560;
  font-size: 0.95rem;
  transition: color 0.4s var(--ease);
}
.tile-cta span { transition: transform 0.4s var(--ease); }
.tile-cta:hover { color: var(--gold-hi); }
.tile-cta:hover span { transform: translate(3px, -2px); }

.tile-social { grid-column: 8 / 13; grid-row: 1; }
.tile-ads { grid-column: 8 / 13; grid-row: 2; }
.thumb-row { display: flex; gap: 10px; margin-top: 24px; }
.thumb-row img {
  width: calc((100% - 20px) / 3);
  aspect-ratio: 9 / 15;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  transition: transform 0.7s var(--ease), border-color 0.7s var(--ease);
}
.tile-social:hover .thumb-row img { border-color: var(--line-strong); }
.tile-social:hover .thumb-row img:nth-child(1) { transform: translateY(-4px); }
.tile-social:hover .thumb-row img:nth-child(2) { transform: translateY(-8px); }
.tile-social:hover .thumb-row img:nth-child(3) { transform: translateY(-4px); }

/* ---------- process rail ---------- */
.rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 3.4vw, 52px);
  padding-top: 38px;
}
.rail::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 12%, var(--gold-deep) 50%, var(--line-strong) 88%, transparent);
}
.phase { position: relative; }
.phase::before {
  content: '';
  position: absolute;
  top: -37px;
  left: 1px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 167, 95, 0.12);
}
.phase-when {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 560;
}
.phase h3 {
  font-family: var(--disp);
  font-weight: 440;
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  color: var(--ivory);
  margin: 14px 0 12px;
  letter-spacing: -0.01em;
}
.phase p { font-size: 0.97rem; color: var(--body); max-width: 40ch; }
.phase small {
  display: inline-block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 540;
}

/* ---------- the difference — ledger ---------- */
.ledger { border-top: 1px solid var(--line-strong); }
.ledger-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 0 12px;
}
.ledger-head span {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 560;
  color: var(--muted);
}
.ledger-head span:last-child { color: var(--gold); padding-left: clamp(20px, 3.4vw, 44px); }
.ledger-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  transition: background 0.5s var(--ease);
}
.ledger-row:hover { background: rgba(201, 167, 95, 0.03); }
.ledger-row p {
  display: flex;
  gap: 13px;
  align-items: baseline;
  font-size: 0.99rem;
  padding: 20px 0;
}
.ledger-row .them { color: var(--muted); padding-right: clamp(20px, 3.4vw, 44px); }
.ledger-row .us {
  color: var(--ivory);
  font-weight: 500;
  padding-left: clamp(20px, 3.4vw, 44px);
  border-left: 1px solid var(--line);
}
.ledger .mk { flex: 0 0 auto; font-size: 0.8rem; transform: translateY(-1px); }
.ledger .them .mk { color: #5c554a; }
.ledger .us .mk { color: var(--gold); }

/* ---------- testimonial ---------- */
.quote-band { position: relative; }
.quote-band .q-mark {
  font-family: var(--disp);
  font-style: italic;
  font-size: clamp(4.4rem, 8vw, 7rem);
  line-height: 0.6;
  color: var(--gold-deep);
  display: block;
}
blockquote p {
  font-family: var(--disp);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.9vw, 2.25rem);
  line-height: 1.32;
  color: var(--ivory);
  letter-spacing: -0.008em;
  max-width: 30ch;
  margin-top: 8px;
}
.quote-attrib {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}
.quote-attrib .bar { width: 52px; height: 1px; background: var(--gold); }
.quote-attrib .who { font-size: 0.95rem; color: var(--ivory); font-weight: 560; }
.quote-attrib .who span { display: block; color: var(--muted); font-weight: 420; font-size: 0.85rem; margin-top: 2px; }

/* ---------- book a call ---------- */
.book-shell {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(237, 223, 169, 0.03);
}
.book-card {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  border-radius: 25px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(150, 116, 47, 0.14), transparent 55%),
    linear-gradient(160deg, #16120a, var(--panel) 70%);
  box-shadow: 0 1px 0 rgba(255, 240, 190, 0.1) inset, 0 50px 110px -60px rgba(201, 167, 95, 0.35);
}
.book-main { padding: clamp(30px, 4.5vw, 58px); }
.book-main h2 { max-width: none; }
.book-lead { margin-top: 18px; max-width: 48ch; }
.book-list { margin-top: 26px; max-width: 52ch; }
.book-list li {
  display: flex;
  gap: 13px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-size: 0.98rem;
}
.book-list li::before {
  content: '\2726';
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.8rem;
  transform: translateY(-1px);
}
.book-main .btn { margin-top: 30px; }
.book-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: clamp(30px, 4vw, 52px);
  border-left: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.45);
}
.book-side .chip { align-self: flex-start; }
.book-side > p { font-size: 0.96rem; color: var(--body); max-width: 30ch; }
.book-side hr { border: 0; border-top: 1px solid var(--line); width: 100%; }
.book-side .side-alt { font-size: 0.9rem; color: var(--muted); }
.book-side .side-alt a {
  color: var(--gold);
  font-weight: 540;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.book-side .side-alt a:hover { color: var(--gold-hi); border-color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.faq-side .card {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
  background: var(--panel);
}
.faq-side .card p { font-size: 0.94rem; color: var(--muted); }
.faq-side .card a.mail {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 540;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.faq-side .card a.mail:hover { color: var(--gold-hi); border-color: var(--gold); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-weight: 520;
  font-size: 1.04rem;
  color: var(--ivory);
  transition: color 0.35s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-hi); }
.faq summary .pm {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.faq summary .pm::before, .faq summary .pm::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.4px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.faq summary .pm::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.45s var(--ease); }
.faq details[open] summary .pm { transform: rotate(45deg); border-color: var(--gold); }
.faq details .a {
  padding: 0 44px 24px 4px;
  color: var(--body);
  font-size: 0.98rem;
  max-width: 62ch;
}

/* ---------- final CTA ---------- */
.cta-final {
  margin-top: clamp(80px, 12vh, 140px);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(90px, 14vh, 150px) 0;
}
.cta-final .cta-nova {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(420px, 52vw, 760px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
}
.cta-final .cta-nova img { width: 100%; height: 100%; animation: nova-spin 240s linear infinite; }
@keyframes nova-spin { to { transform: rotate(360deg); } }
.cta-final h2 { margin-inline: auto; max-width: 18ch; }
.cta-final .lead { margin: 22px auto 0; max-width: 44ch; color: var(--body); }
.cta-final .hero-ctas { justify-content: center; }
.cta-final .mail-line { margin-top: 26px; font-size: 0.92rem; color: var(--muted); }
.cta-final .mail-line a { color: var(--gold); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: clamp(44px, 7vh, 70px) 0 36px;
}
.foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start;
}
.foot-brand p { margin-top: 16px; font-size: 0.9rem; color: var(--muted); max-width: 30ch; }
.foot-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 560;
  margin-bottom: 16px;
}
.foot-col ul { display: grid; gap: 10px; }
.foot-col a { font-size: 0.93rem; color: var(--body); transition: color 0.3s var(--ease); }
.foot-col a:hover { color: var(--gold-hi); }
.foot-base {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}
.foot-base a { color: var(--muted); transition: color 0.3s var(--ease); }
.foot-base a:hover { color: var(--gold-hi); }

/* ---------- legal pages ---------- */
.legal { padding-top: clamp(140px, 18vh, 190px); max-width: 760px; }
.legal h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); max-width: none; }
.legal .updated { margin-top: 16px; color: var(--muted); font-size: 0.9rem; }
.legal h3 { font-family: var(--disp); font-weight: 450; color: var(--ivory); font-size: 1.3rem; margin: 42px 0 12px; }
.legal p { margin-bottom: 14px; max-width: 68ch; }
.legal a { color: var(--gold); }

/* ---------- reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.rv.in { opacity: 1; transform: none; filter: none; }
.rv-1 { transition-delay: 0.08s; } .rv-2 { transition-delay: 0.16s; } .rv-3 { transition-delay: 0.24s; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .sites-grid { columns: 2; }
  .bento { grid-template-columns: 1fr; }
  .tile-web, .tile-social, .tile-ads { grid-column: auto; grid-row: auto; }
}
@media (max-width: 860px) {
  .island-links { display: none; }
  /* legal pages have no burger — keep their links visible */
  .nav-lite .island-links { display: flex; gap: 18px; }
  .nav-lite .island-links .nav-link { font-size: 0.84rem; }
  .nav-lite { padding-right: 20px; }
  .burger { display: block; }
  .nav-island { padding: 7px 8px 7px 20px; }
  .hero { padding-top: 118px; }
  .hero::before { right: -40%; width: 120vw; opacity: 0.8; }
  .hero::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; align-items: start; gap: 44px; }
  .hero-trust { margin-top: 36px; }
  .hero-stage {
    min-height: 0;
    width: min(100%, 420px);
    margin-inline: auto;
    padding: 10px 0 14px;
  }
  .stage-back { width: 56%; top: 4%; }
  .stage-video { width: 52%; margin-left: 30%; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .rail { grid-template-columns: 1fr; padding-top: 0; padding-left: 30px; gap: 38px; }
  .rail::before {
    top: 6px; bottom: 6px; left: 4px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, transparent, var(--line-strong) 12%, var(--gold-deep) 50%, var(--line-strong) 88%, transparent);
  }
  .phase::before { top: 7px; left: -30px; }
  .ledger-head { display: none; }
  .ledger-row { grid-template-columns: 1fr; padding: 6px 0; }
  .ledger-row p { padding: 8px 0; }
  .ledger-row .them { padding-right: 0; }
  .ledger-row .us { padding-left: 0; border-left: 0; }
  .book-card { grid-template-columns: 1fr; }
  .book-side { border-left: 0; border-top: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-side .card { margin-top: 20px; }
  h1 { max-width: 13ch; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .wordmark { font-size: 1.08rem; }
  .wordmark .wm-tag { display: none; }
  .island-cta .btn-sm { padding: 10px 16px; font-size: 0.82rem; }
  .sites-grid { columns: 1; }
  .reel-card { width: min(72vw, 270px); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-final .hero-ctas .btn { width: auto; }
  .hero-trust { flex-wrap: wrap; }
  .stats-slots { grid-template-columns: 1fr; gap: 22px; }
  .stat-slot { display: flex; align-items: baseline; gap: 16px; padding-top: 16px; }
  .stat-slot .stat-label { margin-top: 0; }
  .book-shell { padding: 7px; border-radius: 28px; }
  .book-main .btn { width: 100%; justify-content: center; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rv { opacity: 1; transform: none; filter: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .mobile-nav a.m-link, .mobile-nav .m-cta { transform: none; opacity: 1; }
}
