/* ============================================================
   DAN GRIN — PORTRAIT · v5 "champagne"
   Warm espresso & cream, gold accents, condensed display.
   DNA: thegrin.studio (Dan's main reference).
   ============================================================ */

@font-face { font-family: 'Oswald'; src: url('../assets/fonts/oswald-var.woff2') format('woff2'); font-weight: 500 700; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('../assets/fonts/mulish-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('../assets/fonts/mulish-400i.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('../assets/fonts/mulish-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Mulish'; src: url('../assets/fonts/mulish-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
  --esp: #16110d;            /* espresso base */
  --esp-2: #211913;          /* lifted espresso */
  --cream: #ecdfc3;
  --cream-90: rgba(236, 223, 195, 0.9);
  --cream-70: rgba(236, 223, 195, 0.7);
  --cream-45: rgba(236, 223, 195, 0.45);
  --cream-16: rgba(236, 223, 195, 0.16);
  --cream-08: rgba(236, 223, 195, 0.08);
  --gold: #c8a76f;
  --gold-deep: #a8874f;
  --sand: #e9dfc8;
  --sand-2: #e0d4b8;
  --ink: #211a13;
  --ink-80: rgba(33, 26, 19, 0.82);
  --ink-55: rgba(33, 26, 19, 0.55);
  --ink-35: rgba(33, 26, 19, 0.35);
  --ink-14: rgba(33, 26, 19, 0.16);
  --ink-08: rgba(33, 26, 19, 0.08);
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-text: 'Mulish', 'Avenir Next', sans-serif;
  --gutter: clamp(20px, 5vw, 84px);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.83, 0, 0.17, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 84px); }
html, body { background: var(--esp); }
body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--esp); }

/* ---------- chrome ---------- */

.grain {
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: 0.36; mix-blend-mode: overlay;
}
.grain::before {
  content: ''; position: absolute; inset: -120px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.34'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-38px, 24px); }
  50% { transform: translate(22px, -30px); }
  75% { transform: translate(-14px, -18px); }
  100% { transform: translate(0, 0); }
}

.progress-line {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--gold); transform-origin: 0 50%; transform: scaleX(0);
  z-index: 300;
}

.cursor-dot {
  position: fixed; top: 0; left: 0; width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 400;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), opacity 0.25s, background 0.25s;
  mix-blend-mode: difference;
}
.cursor-dot.big { width: 52px; height: 52px; background: var(--cream); }
@media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }

/* warm depth for dark sections */
.sec-dark {
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(200, 167, 111, 0.07), transparent 60%),
    radial-gradient(900px 700px at 6% 110%, rgba(200, 167, 111, 0.05), transparent 55%),
    var(--esp);
  color: var(--cream);
}
.sec-sand { background: var(--sand); color: var(--ink); }

/* ---------- header ---------- */

.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(env(safe-area-inset-top, 0px) + 16px)
    max(var(--gutter), env(safe-area-inset-right, 0px))
    16px
    max(var(--gutter), env(safe-area-inset-left, 0px));
  transition: background 0.4s, padding 0.4s;
}
.site-head.scrolled {
  background: rgba(22, 17, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: calc(env(safe-area-inset-top, 0px) + 11px);
  padding-bottom: 11px;
}
.head-brand { display: flex; align-items: center; gap: 13px; }
.head-brand img { height: 28px; width: auto; filter: sepia(0.25) brightness(1.02); }
.head-brand span {
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.32em;
  font-size: 13px; text-transform: uppercase; color: var(--cream);
}
.head-right { display: flex; align-items: center; gap: clamp(14px, 3vw, 34px); }
.head-nav { display: flex; gap: clamp(14px, 2.2vw, 26px); }
.head-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 13.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-70);
  transition: color 0.25s;
}
.head-nav a:hover { color: var(--cream); }

/* cream pill button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 17px 32px; border-radius: 999px;
  background: var(--cream); color: #1c1610;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  box-shadow: 0 14px 44px -16px rgba(236, 223, 195, 0.35);
  will-change: transform;
}
.btn::after { content: '→'; font-family: var(--font-text); font-weight: 700; transition: transform 0.3s var(--ease-out); }
.btn:hover { background: #f6ecd4; box-shadow: 0 18px 54px -16px rgba(236, 223, 195, 0.5); }
.btn:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--cream-45); box-shadow: none;
}
.btn-ghost:hover { background: var(--cream-08); border-color: var(--cream); box-shadow: none; }
.btn-small { padding: 12px 22px; font-size: 11px; }
.btn-plain::after { content: none; }

/* burger + full-screen mobile menu (hidden on desktop) */
.menu-btn {
  display: none; position: relative; z-index: 120;
  width: 44px; height: 44px; margin-right: -8px;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.menu-btn span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
body.mnav-open .menu-btn span:first-child { transform: translateY(4.5px) rotate(45deg); }
body.mnav-open .menu-btn span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mnav {
  position: fixed; inset: 0; z-index: 96; /* under .site-head so the burger stays clickable */
  display: none; flex-direction: column;
  padding: calc(env(safe-area-inset-top) + 76px) var(--gutter) calc(env(safe-area-inset-bottom) + 26px);
  background:
    radial-gradient(120vw 60vh at 50% -10%, rgba(200, 167, 111, 0.12), transparent 60%),
    var(--esp);
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  opacity: 0; pointer-events: none;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0s 0.45s;
}
body.mnav-open .mnav {
  opacity: 1; pointer-events: auto;
  visibility: visible;
  transition: opacity 0.45s var(--ease-out);
}
body.mnav-open { overflow: hidden; }
body.mnav-open .head-cta { opacity: 0; pointer-events: none; }
.head-cta { transition: opacity 0.3s, background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s; }
.mnav-links { display: flex; flex-direction: column; margin-top: auto; }
.mnav-links a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 17px 0; border-bottom: 1px solid var(--cream-08);
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(27px, 7.5vw, 40px); letter-spacing: 0.08em; line-height: 1;
  color: var(--cream);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 55ms);
}
.mnav-links a:first-child { border-top: 1px solid var(--cream-08); }
body.mnav-open .mnav-links a { opacity: 1; transform: none; }
.mnav-links i {
  font-style: normal; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--gold); flex: 0 0 auto;
}
.mnav-cta {
  margin-top: 34px; width: 100%;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out) 0.3s, transform 0.5s var(--ease-out) 0.3s,
    background 0.3s, box-shadow 0.3s;
}
body.mnav-open .mnav-cta { opacity: 1; transform: none; }
.mnav-base {
  margin-top: auto; padding-top: 26px; text-align: center;
  font-family: var(--font-display); font-weight: 500; font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream-45);
}
@media (max-height: 640px) {
  .mnav { justify-content: flex-start; }
  .mnav-links { margin-top: 0; }
  .mnav-links a { padding: 13px 0; font-size: clamp(22px, 5.5vh, 30px); }
}

@media (max-width: 860px) {
  .head-nav { display: none; }
  .head-brand span { display: none; }
  .menu-btn { display: flex; }
  .mnav { display: flex; }
  .head-cta { padding: 13px 18px; font-size: 10.5px; }
}

/* ---------- preloader ---------- */

.preloader {
  position: fixed; inset: 0; z-index: 500;
  background:
    radial-gradient(900px 500px at 50% 40%, rgba(200, 167, 111, 0.08), transparent 65%),
    var(--esp);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: clip-path 0.9s var(--ease-inout);
  clip-path: inset(0 0 0 0);
}
.preloader.done { clip-path: inset(0 0 100% 0); }
.preloader .load-col {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; width: fit-content;
}
/* the hero print IS the progress: a dim ghost underneath, the real
   photo fills it bottom-up as the page loads */
.preloader .load-ph {
  position: relative; height: min(56svh, 540px); aspect-ratio: 1212 / 1800;
  border: 5px solid var(--cream); background: #221a14; overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.preloader .load-ph img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.preloader .load-ph img:first-child { opacity: 0.16; filter: grayscale(1) brightness(0.9); }
.preloader .ph-fill { clip-path: inset(100% 0 0 0); }
.pre-role {
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
  opacity: 0; animation: pre-fade 0.8s 0.5s forwards;
}
@keyframes pre-fade { to { opacity: 1; } }
.pre-track { width: 100%; height: 2px; background: var(--cream-16); overflow: hidden; border-radius: 99px; }
.pre-bar { height: 100%; width: 100%; background: var(--gold); transform-origin: 0 50%; transform: scaleX(0); }

/* ---------- shared ---------- */

.section { position: relative; }

.eyebrow {
  font-family: var(--font-display); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.sec-sand .eyebrow { color: var(--gold-deep); }

.h-display {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  line-height: 1.04; letter-spacing: 0.01em;
}
.h-xl { font-size: clamp(42px, 6.4vw, 96px); }
.h-lg { font-size: clamp(30px, 4.2vw, 62px); }
.gold-word { color: var(--gold); }
.sec-sand .gold-word { color: var(--gold-deep); }

.kinetic .kl { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.kinetic .kw {
  display: inline-block; transform: translateY(112%);
  transition: transform 1.05s var(--ease-out);
  transition-delay: calc(var(--l, 0) * 100ms);
  will-change: transform;
}
.kinetic.on .kw { transform: translateY(0); }

.rv-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); transition-delay: var(--d, 0ms); }
.rv-fade.on { opacity: 1; transform: translateY(0); }

.ph-rv { position: relative; overflow: hidden; border-radius: var(--r-md); }
.ph-rv img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12); transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.ph-rv::after {
  content: ''; position: absolute; inset: 0; background: currentColor;
  transform: scaleY(1); transform-origin: 50% 0;
  transition: transform 0.9s var(--ease-inout);
  border-radius: inherit;
}
.sec-dark .ph-rv::after { color: var(--esp); }
.sec-sand .ph-rv::after { color: var(--sand); }
.ph-rv.on::after { transform: scaleY(0); }
.ph-rv.on img { transform: scale(1.03); }

.lede { font-size: 16px; line-height: 1.7; color: var(--cream-70); max-width: 58ch; }
.sec-sand .lede { color: var(--ink-80); }
.lede + .lede { margin-top: 14px; }
.lede strong { font-weight: 700; color: var(--cream); }
.sec-sand .lede strong { color: var(--ink); }

.stat-src {
  font-family: var(--font-display); font-weight: 500;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.7;
  color: var(--cream-45);
}
.sec-sand .stat-src { color: var(--ink-35); }

.cap {
  font-family: var(--font-display); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cream-45);
}
.sec-sand .cap { color: var(--ink-35); }

/* warm stat panel — the reference's signature card */
.stat-panel {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: clamp(18px, 2vw, 26px); row-gap: 13px;
  background: linear-gradient(160deg, rgba(236, 223, 195, 0.09), rgba(236, 223, 195, 0.03));
  border: 1px solid var(--cream-16);
  border-radius: var(--r-lg);
  padding: clamp(18px, 2.2vw, 26px) clamp(20px, 2.4vw, 30px);
}
.stat-panel .sp-num {
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  font-size: clamp(42px, 4vw, 62px); color: var(--cream);
  font-variant-numeric: tabular-nums;
  padding-right: clamp(18px, 2vw, 26px);
  border-right: 1px solid var(--cream-16);
}
.stat-panel .sp-num em { font-style: normal; color: var(--gold); }
.stat-panel .sp-label { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--cream-70); }
.stat-panel .sp-label strong { color: var(--cream); }
.stat-panel .stat-src { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid var(--cream-16); }
.sec-sand .stat-panel {
  background: linear-gradient(160deg, rgba(33, 26, 19, 0.06), rgba(33, 26, 19, 0.02));
  border-color: var(--ink-14);
}
.sec-sand .stat-panel .sp-num { color: var(--ink); border-right-color: var(--ink-14); }
.sec-sand .stat-panel .sp-label { color: var(--ink-80); }
.sec-sand .stat-panel .sp-label strong { color: var(--ink); }
.sec-sand .stat-panel .stat-src { border-top-color: var(--ink-14); }
.sec-sand .dial .track { stroke: var(--ink-14); }
.sec-sand .dial-num { color: var(--ink); }
.sec-sand .dial-num small { color: var(--ink-35); }

/* corner brackets frame */
.corner-frame { position: relative; }
.corner-frame .cf {
  position: absolute; width: 22px; height: 22px; color: var(--cream-70);
  border: 0 solid currentColor; pointer-events: none;
}
.sec-sand .corner-frame .cf { color: var(--ink-55); }
.corner-frame .cf:nth-child(1) { top: -10px; left: -10px; border-top-width: 2px; border-left-width: 2px; }
.corner-frame .cf:nth-child(2) { top: -10px; right: -10px; border-top-width: 2px; border-right-width: 2px; }
.corner-frame .cf:nth-child(3) { bottom: -10px; left: -10px; border-bottom-width: 2px; border-left-width: 2px; }
.corner-frame .cf:nth-child(4) { bottom: -10px; right: -10px; border-bottom-width: 2px; border-right-width: 2px; }

/* big cinematic frame */
.bigframe {
  position: relative; overflow: hidden;
  height: clamp(440px, 86vh, 900px);
}
.bf-media { position: absolute; inset: -10% 0; will-change: transform; }
.bf-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%;
  scale: 1.16; transition: scale 2.4s var(--ease-out);
  will-change: scale;
}
.bigframe.on .bf-media img { scale: 1.03; }
.bigframe::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(22, 17, 13, 0.22), transparent 28%, transparent 68%, rgba(22, 17, 13, 0.5));
}

/* ---------- HERO ---------- */

.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(56vw 72vh at 16% 36%, rgba(200, 167, 111, 0.12), transparent 62%),
    radial-gradient(40vw 55vh at 2% 82%, rgba(200, 167, 111, 0.06), transparent 60%),
    var(--esp);
}
.hero-media {
  position: absolute; top: 0; bottom: 0; right: 0; z-index: 0;
  width: 55%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 44%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 44%);
}
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 112%; object-fit: cover; object-position: var(--hp, 50% 22%);
  transform: scale(calc(var(--hz, 1) * 1.08)); transform-origin: var(--ho, 50% 30%);
  opacity: 0;
  transition: opacity 1.3s var(--ease-out), transform 2.6s var(--ease-out);
  will-change: transform, opacity;
}
body.loaded .hero-media img { transform: scale(var(--hz, 1)); }
.hero-media img.on { opacity: 1; }
.hero-ash {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(22,17,13,0.6) 0%, rgba(22,17,13,0.16) 40%, rgba(22,17,13,0) 62%, rgba(22,17,13,0.28) 100%),
    linear-gradient(0deg, rgba(22,17,13,0.92) 0%, rgba(22,17,13,0) 44%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) clamp(36px, 6vh, 64px);
  max-width: 1200px;
}
.hero .h-display { font-size: clamp(36px, 5.5vw, 84px); }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-70);
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-sub {
  max-width: 580px; margin-top: 20px;
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7; color: var(--cream-90);
}
.hero-cta-row { display: flex; align-items: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-note {
  font-family: var(--font-display); font-weight: 500;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream-45);
}
.hero-deliver {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 24px;
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-70);
}
.hero-deliver i { font-style: normal; color: var(--gold); font-size: 10px; }

/* ---------- 01b · IG band (faces under hero) ---------- */

.igband { border-top: 1px solid var(--cream-08); border-bottom: 1px solid var(--cream-08); }
.ig-inner {
  display: flex; align-items: center; gap: clamp(18px, 2.8vw, 46px);
  padding: clamp(16px, 2.4vh, 24px) var(--gutter);
  overflow-x: auto; scrollbar-width: none;
}
.ig-inner::-webkit-scrollbar { display: none; }
.ig-lead {
  flex: 0 0 auto; max-width: 130px; line-height: 1.6;
  font-family: var(--font-display); font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--cream-45);
}
.ig-chip { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.ig-ava {
  width: 62px; height: 62px; flex: 0 0 auto; border-radius: 50%;
  padding: 3px; border: 1px solid rgba(200, 167, 111, 0.5);
  transition: border-color 0.3s;
}
.ig-chip:hover .ig-ava { border-color: var(--gold); }
.ig-ava-in { display: block; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; }
.ig-ava img {
  width: 100%; height: 100%; object-fit: cover; object-position: var(--ax, 50% 30%);
  transform: scale(var(--az, 1.8)); transform-origin: var(--ay, var(--ax, 50% 30%));
}
.ig-txt { display: grid; gap: 3px; }
.ig-name {
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
  white-space: nowrap; transition: color 0.3s;
}
.ig-chip:hover .ig-name { color: var(--gold); }
.ig-role {
  font-family: var(--font-display); font-weight: 500; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-45);
  white-space: nowrap;
}
.ig-sub {
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream-45);
}
.ig-sub svg { width: 11px; height: 11px; flex: 0 0 auto; }
.ig-sub b { font-weight: 600; font-size: 12px; letter-spacing: 0.08em; color: var(--gold); }
.ig-more {
  flex: 0 0 auto; margin-left: auto;
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-70);
  border-bottom: 1px solid var(--gold); padding-bottom: 6px; white-space: nowrap;
  transition: color 0.3s;
}
.ig-more:hover { color: var(--gold); }

/* ---------- section furniture ---------- */

.sec-pad { padding: clamp(72px, 11vh, 130px) 0; }
.sec-intro { padding: 0 var(--gutter); }

/* ---------- 01c · proof line ---------- */

.proofline {
  padding: clamp(64px, 10vh, 118px) var(--gutter) clamp(40px, 6.5vh, 72px);
  text-align: center;
}
.proofline .pf-big {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(17px, 2.15vw, 34px); line-height: 1.3; letter-spacing: 0.015em;
  max-width: 36em; margin: 0 auto; color: var(--cream);
}
.proofline .stat-src { margin-top: clamp(14px, 2.2vh, 22px); }

/* ---------- 02 · THE WORK ---------- */

.work { overflow: hidden; padding: 0 0 clamp(56px, 8vh, 96px); }

.film { overflow: hidden; padding: 9px 0; }
.film-track { display: flex; gap: clamp(10px, 1.2vw, 16px); width: max-content; will-change: transform; }
.film-item {
  height: clamp(160px, 26vh, 260px); flex: 0 0 auto;
  overflow: hidden; position: relative; border-radius: var(--r-sm);
}
.film-item img {
  height: 100%; width: auto; display: block;
  filter: sepia(0.08) saturate(0.94);
  transition: filter 0.45s, transform 0.45s var(--ease-out);
}
.film-item:hover img { filter: none; transform: scale(1.05); }

/* ---------- dial + deck (shared components) ---------- */

.dial { position: relative; width: clamp(96px, 9vw, 128px); flex: 0 0 auto; }
.dial svg { display: block; width: 100%; height: auto; transform: rotate(-90deg); }
.dial .track { fill: none; stroke: var(--cream-16); stroke-width: 5; }
.dial .fill { fill: none; stroke: var(--gold); stroke-width: 5; stroke-linecap: round; }
.dial-num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 1.9vw, 26px); line-height: 1; color: var(--cream);
}
.dial-num small {
  font-family: var(--font-display); font-weight: 500; font-size: 8.5px;
  letter-spacing: 0.26em; color: var(--cream-45); margin-top: 5px; text-transform: uppercase;
}
.dial-copy { max-width: 360px; }
.dial-copy p { font-size: 14px; line-height: 1.65; color: var(--cream-70); margin-bottom: 8px; }
.dial-copy p strong { color: var(--cream); }

.deck {
  position: relative; aspect-ratio: 3/4; max-width: 420px; width: 100%;
  justify-self: end; overflow: hidden; border-radius: var(--r-lg);
}
.deck img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
}
.deck img.on { opacity: 1; }
.deck-dots { position: absolute; z-index: 3; left: 24px; bottom: 22px; display: flex; gap: 7px; }
.deck-dots i { width: 22px; height: 2px; background: var(--cream-45); transition: background 0.3s; border-radius: 99px; }
.deck-dots i.on { background: var(--gold); }

/* ---------- 02b · EXCEPT YOU (paper) ---------- */

.paper { background: #f8f4ea; }
.except { padding: clamp(72px, 11vh, 130px) 0; }
.except-grid {
  display: grid; grid-template-columns: 6fr 6fr; gap: clamp(30px, 5vw, 84px);
  padding: 0 var(--gutter); align-items: center;
}
.except-copy .h-display { margin-bottom: 20px; }
.except-copy .lede { font-size: clamp(13.5px, 1.15vw, 15.5px); max-width: 66ch; }
.except-copy .stat-panel { margin-top: clamp(26px, 4vh, 40px); max-width: 520px; }

.except .deck { max-width: 570px; width: 100%; justify-self: start; }
.paper .deck-dots i { background: var(--ink-14); }
.paper .deck-dots i.on { background: var(--gold-deep); }

@media (max-width: 860px) {
  .except-grid { grid-template-columns: 1fr; }
  .except .deck { max-width: 400px; }
}

/* ---------- 05 · PROCESS ROADMAP (video) ---------- */

.roadmap { position: relative; overflow: hidden; padding: clamp(80px, 12vh, 150px) 0; color: var(--cream); }
.rm-bg { position: absolute; inset: 0; }
.rm-bg video { width: 100%; height: 100%; object-fit: cover; }
.rm-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,17,13,0.9) 0%, rgba(22,17,13,0.72) 45%, rgba(22,17,13,0.9) 100%),
    radial-gradient(900px 500px at 20% 10%, rgba(200, 167, 111, 0.1), transparent 60%);
}
.rm-inner { position: relative; z-index: 2; }
.rm-head { padding: 0 var(--gutter); margin-bottom: clamp(36px, 6vh, 64px); max-width: 1000px; }
.rm-head .h-display { margin-bottom: 16px; }
.rm-head .lede { color: var(--cream-70); }
.rm-track {
  display: flex; align-items: stretch; gap: clamp(8px, 1vw, 16px);
  padding: 0 var(--gutter); list-style: none;
}
.rm-step {
  flex: 1 1 0;
  border: 1px solid var(--cream-16); border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(33, 26, 19, 0.62), rgba(22, 17, 13, 0.4));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: clamp(16px, 1.8vw, 24px);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.rm-step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
.rm-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.08em;
  transition: background 0.35s, color 0.35s;
}
.rm-step:hover .rm-num { background: var(--gold); color: #16110d; }
.rm-name {
  display: block; margin-top: 12px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(15px, 1.35vw, 19px); letter-spacing: 0.1em; color: var(--cream);
}
.rm-step p { margin-top: 8px; font-size: 12.5px; line-height: 1.6; color: var(--cream-70); }
.rm-arrow { flex: 0 0 clamp(26px, 3vw, 52px); display: flex; align-items: center; }
.rm-arrow svg { width: 100%; height: 12px; overflow: visible; }
.rm-arrow path { stroke: var(--gold); stroke-width: 1.6; fill: none; }

.ms-demo {
  display: flex; flex-direction: column; align-items: center;
  margin: clamp(64px, 10vh, 104px) var(--gutter) 0;
  text-align: center;
  user-select: none; -webkit-tap-highlight-color: transparent;
}
.ms-demo .stat-src { margin-top: 14px; }
.ms-ends {
  align-self: stretch;
  display: flex; justify-content: space-between;
  margin-top: clamp(34px, 5vh, 52px); margin-bottom: 12px;
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-70);
}
.ms-line { align-self: stretch; }
.ms-demo .ms-btn { margin-top: calc(clamp(34px, 5vh, 52px) + 26px); }
.ms-line {
  position: relative; height: 3px; border-radius: 2px;
  background: rgba(236, 223, 195, 0.24);
  cursor: pointer;
}
/* a 3px line is untappable: give it an invisible 40px-tall hit area */
.ms-line::before { content: ''; position: absolute; left: 0; right: 0; top: -20px; bottom: -20px; }
.ms-dot {
  position: absolute; top: 50%; left: 0; width: 15px; height: 15px;
  border-radius: 50%; background: var(--gold);
  transform: translate(0, -50%);
  box-shadow: 0 0 18px rgba(200, 167, 111, 0.95), 0 0 44px rgba(200, 167, 111, 0.45);
}
.ms-trail {
  position: absolute; top: -2px; bottom: -2px; left: 0; right: 0;
  border-radius: 3px; opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(200, 167, 111, 0.35) 40%, var(--gold));
  box-shadow: 0 0 24px rgba(200, 167, 111, 0.5);
}
.ms-btn { cursor: pointer; padding: 19px 44px; font-size: 14px; }
.ms-hint {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px, 1.7vw, 24px); line-height: 1.45;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-90);
  transition: color 0.4s;
}
.ms-hint .ms-gold, .ms-hint strong { color: var(--gold); }
.ms-demo.fired .ms-hint { color: var(--gold); }

@media (max-width: 1020px) {
  .rm-track { flex-direction: column; align-items: stretch; max-width: 520px; }
  .rm-arrow { flex-basis: 36px; justify-content: center; }
  .rm-arrow svg {
    width: 15px; height: 36px; transform: rotate(90deg); transform-origin: center;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.7));
  }
  .rm-arrow path { stroke-width: 2.4; }
}

/* ---------- 06 · PRICING ---------- */

.pricing { position: relative; padding: clamp(72px, 11vh, 130px) 0; }
.pricing-ash {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.pricing-head { position: relative; padding: 0 var(--gutter); margin-bottom: clamp(30px, 5vh, 50px); max-width: 1000px; }
.pricing-head .h-display { margin-bottom: 14px; }
.pricing-head .lede { font-size: 15.5px; }
.pk-stack {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 28px);
  padding: 0 var(--gutter);
  align-items: stretch;
}
.pk-note {
  margin-top: clamp(22px, 3.5vh, 36px);
  padding: 0 var(--gutter);
  text-align: center;
  font-size: 14px;
  color: var(--cream-70);
  letter-spacing: .02em;
}

/* cinema-ticket package cards: vertical, stub at the bottom */
.tkt {
  position: relative; overflow: hidden;
  display: grid; grid-template-rows: auto 1fr auto auto;
  background: linear-gradient(160deg, #1c1712 0%, #120e0b 58%);
  border: 1px solid var(--cream-16); border-radius: var(--r-lg);
  box-shadow: 0 54px 110px -38px rgba(0, 0, 0, 0.6);
}
.tkt::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(90% 130% at 10% -20%, rgba(200, 167, 111, 0.12), transparent 55%);
}
/* pearl ticket: The Signature */
.tk-pearl {
  border-color: rgba(236, 223, 195, 0.34);
  box-shadow:
    0 54px 110px -38px rgba(0, 0, 0, 0.6),
    0 0 48px -10px rgba(222, 206, 255, 0.16);
  animation: pearl-border 9s ease-in-out infinite alternate;
}
.tk-pearl::before {
  background:
    radial-gradient(90% 130% at 10% -20%, rgba(214, 196, 255, 0.14), transparent 55%),
    radial-gradient(80% 120% at 105% 115%, rgba(255, 198, 214, 0.1), transparent 60%);
}
.tk-pearl::after {
  content: ''; position: absolute; inset: -1px;
  z-index: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(105deg,
    rgba(255, 190, 205, 0) 44%,
    rgba(255, 190, 205, 0.17) 46.5%,
    rgba(205, 228, 255, 0.24) 48.5%,
    rgba(255, 246, 224, 0.3) 50%,
    rgba(205, 255, 232, 0.24) 51.5%,
    rgba(232, 205, 255, 0.17) 53.5%,
    rgba(232, 205, 255, 0) 56%);
  background-size: 320% 100%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  animation: pearl-sweep 6.5s ease-in-out infinite;
}
@keyframes pearl-sweep {
  0% { background-position: 100% 0; }
  62% { background-position: 0% 0; }
  100% { background-position: 0% 0; }
}
@keyframes pearl-border {
  0% { border-color: rgba(255, 208, 220, 0.36); }
  33% { border-color: rgba(205, 228, 255, 0.4); }
  66% { border-color: rgba(214, 255, 233, 0.36); }
  100% { border-color: rgba(238, 214, 255, 0.4); }
}

.tk-edge {
  position: relative; z-index: 1; overflow: hidden;
  height: 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 26px, #000 calc(100% - 26px), transparent);
  border-bottom: 1px solid var(--cream-16);
  background: rgba(236, 223, 195, 0.035);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 10px; font-weight: 500; color: var(--cream-45);
  user-select: none;
}
.tk-rail {
  position: absolute; top: 50%; left: 0; translate: 0 -50%;
  display: inline-block; white-space: nowrap;
  animation: tk-rail-x 70s linear infinite;
}
.tk-body { position: relative; z-index: 1; padding: clamp(22px, 2.2vw, 34px); }
.tk-kick { position: relative; padding-bottom: 14px; border-bottom: 1px solid var(--cream-16); }
.tk-flag {
  position: absolute; top: 3px; right: 0;
  font-style: normal; font-family: var(--font-display); font-weight: 600;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #16110d; background: var(--gold);
  padding: 7px 13px 6px; border-radius: 99px;
}
.tk-kick b {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(21px, 1.8vw, 28px); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); line-height: 1.1;
}
.tk-kick span {
  display: block; margin-top: 8px;
  font-family: var(--font-display); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.tk-list { list-style: none; margin: 8px 0 0; }
.tk-list li {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; column-gap: clamp(15px, 1.5vw, 24px);
  align-items: start;
  padding: clamp(12px, 1.4vh, 17px) 2px;
  border-bottom: 1px solid var(--cream-08);
}
.tk-list li:last-child { border-bottom: 0; }
.tk-i {
  font-style: normal; font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.12em; color: var(--gold);
  width: 36px; height: 36px; margin-top: 2px;
  border: 1px solid rgba(200, 167, 111, 0.42); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.6s var(--ease-out);
}
.tk-list li:hover .tk-i {
  background: var(--gold); color: #16110d; border-color: var(--gold);
  transform: rotate(-7deg) scale(1.06);
}
.tk-t b {
  display: block; font-family: var(--font-display); text-transform: uppercase; font-weight: 600;
  font-size: clamp(14px, 1.15vw, 17px); letter-spacing: 0.1em; line-height: 1.2;
  color: var(--cream); transition: color 0.35s;
}
.tk-list li:hover .tk-t b { color: var(--gold); }
.tk-t span {
  display: block; margin-top: 4px;
  font-size: 13px; color: var(--cream-45); line-height: 1.55; max-width: 60ch;
}
.tk-tear {
  position: relative; z-index: 2; height: 2px;
  background: repeating-linear-gradient(to right, rgba(236, 223, 195, 0.3) 0 7px, transparent 7px 16px);
}
.tk-tear::before, .tk-tear::after {
  content: ''; position: absolute; top: 50%;
  width: 15px; height: 30px; background: var(--esp);
  border: 1px solid var(--cream-16);
}
.tk-tear::before { left: -1px; transform: translateY(-50%); border-left: 0; border-radius: 0 30px 30px 0; }
.tk-tear::after { right: -1px; transform: translateY(-50%); border-right: 0; border-radius: 30px 0 0 30px; }
.tk-stub {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  padding: clamp(22px, 2.2vw, 32px);
  background:
    repeating-linear-gradient(-45deg, rgba(200, 167, 111, 0.05) 0 1px, transparent 1px 8px),
    linear-gradient(200deg, #1f1913, #110e0b);
}
.stub-top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 10.5px; font-weight: 500; color: var(--cream-45);
  padding-bottom: 16px; border-bottom: 1px solid var(--cream-16);
}
.stub-top i { font-style: normal; letter-spacing: 0.14em; color: var(--gold); }
.stub-price { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 24px; }
.p-amt {
  display: inline-flex; font-family: var(--font-display); font-weight: 700; color: var(--gold);
  font-size: clamp(44px, 3.4vw, 62px); line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(100deg,
    #c8a76f 0%, #c8a76f 30%, #f2ddb2 44%, #fdf3d9 50%, #f2ddb2 56%, #c8a76f 70%, #c8a76f 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: p-shimmer 4.6s ease-in-out infinite;
}
@keyframes p-shimmer {
  0% { background-position: 125% 0; }
  100% { background-position: -125% 0; }
}
.p-amt em { font-style: normal; font-size: 0.6em; align-self: flex-start; margin-top: 0.28em; margin-right: 3px; }
.per {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(12px, 1vw, 14px); letter-spacing: 0.14em; color: var(--cream-45);
}
.stub-note { margin-top: 16px; font-size: 13.5px; color: var(--cream-70); line-height: 1.6; }
.stub-code { margin-top: auto; padding-top: 24px; }
.stub-bars {
  height: 32px; border-radius: 2px; opacity: 0.55;
  background: repeating-linear-gradient(90deg,
    rgba(236, 223, 195, 0.9) 0 2px, transparent 2px 5px,
    rgba(236, 223, 195, 0.9) 5px 8px, transparent 8px 10px,
    rgba(236, 223, 195, 0.9) 10px 11px, transparent 11px 16px,
    rgba(236, 223, 195, 0.9) 16px 18px, transparent 18px 21px);
}
.stub-code small {
  display: block; margin-top: 8px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.32em;
  font-size: 8.5px; font-weight: 500; color: var(--cream-45);
}
.stub-cta { width: 100%; margin-top: 20px; padding: 15px 20px; font-size: 12px; }
@media (max-width: 1020px) {
  .pk-stack { grid-template-columns: 1fr; max-width: 620px; }
}
@keyframes tk-rail-x { to { transform: translateX(-50%); } }

.includes-line {
  padding: clamp(26px, 4vh, 38px) var(--gutter) 0;
  display: flex; flex-wrap: wrap; gap: 10px 0; align-items: baseline;
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--cream-70);
}
.includes-line i { font-style: normal; color: var(--gold); margin: 0 13px; font-size: 10px; }
.includes-line .ul-tag { color: var(--cream-45); margin-right: 20px; }


/* ---------- 07 · TRUST ---------- */

.trust { padding: clamp(72px, 11vh, 130px) 0; }
.trust-grid {
  display: grid; grid-template-columns: 6fr 6fr; gap: clamp(30px, 5vw, 84px);
  padding: 0 var(--gutter); align-items: center;
}
.trust-photo { position: relative; max-width: 570px; width: 100%; }
.trust-photo .ph-rv { aspect-ratio: 3/4; border-radius: var(--r-lg); }
.trust-copy .h-display { margin-bottom: 20px; }
.trust-copy .lede { font-size: clamp(13.5px, 1.15vw, 15.5px); max-width: 66ch; }
.trust-copy .lede a { border-bottom: 1px solid var(--gold-deep); transition: color 0.3s; }
.trust-copy .lede a:hover { color: var(--gold-deep); }

.cred-line {
  display: flex; flex-wrap: wrap; gap: clamp(22px, 3.5vw, 54px);
  margin-top: clamp(26px, 4vh, 40px);
}
.cred { display: flex; flex-direction: column; gap: 4px; }
.cred .c-num {
  font-family: var(--font-display); font-weight: 600; line-height: 1;
  font-size: clamp(30px, 3vw, 46px); color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cred .c-num em { font-style: normal; color: var(--gold-deep); }
.cred .c-label {
  font-family: var(--font-display); font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-55);
  max-width: 150px; line-height: 1.5;
}

.laurels {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px); align-items: center;
  margin-top: clamp(26px, 4vh, 40px); max-width: 640px;
  margin-left: -7px; /* optical: laurel PNGs carry transparent left padding */
}
.laurel-img {
  width: 100%; max-width: 170px; height: auto;
  filter: brightness(0.3);
}

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-photo { max-width: 400px; }
}
@media (max-width: 560px) {
  .laurels { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 420px; }
}

/* ---------- 09 · FAQ ---------- */

.faq { position: relative; overflow: hidden; padding: clamp(72px, 11vh, 130px) 0 clamp(32px, 5vh, 52px); }
.faq-bts {
  position: absolute; top: 0; bottom: 0; left: 0; z-index: 0;
  width: 46%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 60%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 60%, transparent 100%);
}
/* height:auto keeps the crop independent of section height, so opening
   an accordion item does not re-crop (jump) the photo */
.faq-bts img {
  display: block; width: 100%; height: auto;
  filter: sepia(0.25) saturate(0.9) brightness(0.92);
  -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 80%, transparent 99%);
}
.faq-bts::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22, 17, 13, 0.52) 0%, rgba(22, 17, 13, 0.18) 22%, transparent 36%);
}
.faq-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(30px, 5vw, 84px);
  padding: 0 var(--gutter); align-items: start;
}
.faq-head .h-display { margin-bottom: 18px; }
.faq-head .lede { font-size: clamp(13.5px, 1.15vw, 15.5px); max-width: 34ch; }
@media (min-width: 861px) {
  .faq .eyebrow { color: var(--gold); }
  .faq-head .h-display { color: var(--cream); }
  .faq-head .lede { color: var(--cream-90); }
}
.faq-item { border-bottom: 1px solid var(--ink-14); }
.faq-item:first-child { border-top: 1px solid var(--ink-14); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: clamp(16px, 2vw, 26px);
  padding: clamp(22px, 3.4vh, 34px) 0;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 1.9vw, 26px);
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  transition: color 0.25s;
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .fq-i {
  font-style: normal; font-weight: 500; font-size: 11px; letter-spacing: 0.14em;
  color: var(--gold-deep); flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--ink-14); border-radius: 11px;
}
.faq-item .fq-q { flex: 1; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-display); font-weight: 500; color: var(--gold-deep);
  font-size: 32px; line-height: 1; transition: transform 0.3s var(--ease-out); flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  padding: 0 44px clamp(24px, 3vh, 32px) calc(36px + clamp(16px, 2vw, 26px));
  font-size: 15.5px; line-height: 1.75; color: var(--ink-80); max-width: 60ch;
}
.faq-a a { border-bottom: 1px solid var(--gold-deep); transition: color 0.3s; }
.faq-a a:hover { color: var(--gold-deep); }
@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-bts {
    position: relative; width: 100%; height: 320px; margin-top: calc(-1 * clamp(72px, 11vh, 130px));
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }
  .faq-bts img {
    height: 100%; object-fit: cover; object-position: 50% 26%;
    -webkit-mask-image: none; mask-image: none;
  }
  .faq-item .faq-a { padding-left: 0; padding-right: 0; }
}

/* ---------- 10 · BOOK ---------- */

.cta {
  position: relative; padding: clamp(88px, 13vh, 160px) 0 0; overflow: hidden;
  background:
    radial-gradient(1000px 600px at 10% 6%, rgba(200, 167, 111, 0.09), transparent 60%),
    radial-gradient(900px 640px at 38% 104%, rgba(200, 167, 111, 0.05), transparent 55%),
    var(--esp);
}
.cta-media { position: absolute; inset: -10% 0; z-index: 0; overflow: hidden; }
.cta-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 32% 30%;
  will-change: transform;
}
.cta-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 17, 13, 0.97) 0%, rgba(22, 17, 13, 0.92) 30%, rgba(22, 17, 13, 0.55) 56%, rgba(22, 17, 13, 0.2) 80%, rgba(22, 17, 13, 0.34) 100%),
    linear-gradient(180deg, rgba(22, 17, 13, 0.5) 0%, transparent 22%, transparent 70%, rgba(22, 17, 13, 0.82) 100%);
}
.cta-inner { position: relative; z-index: 2; padding: 0 var(--gutter); }
.cta-head { max-width: min(680px, calc(52vw - var(--gutter))); margin-bottom: clamp(30px, 5vh, 52px); }
.cta-head .h-display { margin-bottom: 16px; }
.cta-head .lede { font-size: 16.5px; color: var(--cream-90); }

.book-grid { max-width: min(680px, calc(52vw - var(--gutter))); }
.book-form {
  display: flex; flex-direction: column; gap: clamp(18px, 2.6vh, 24px);
  background: rgba(28, 21, 15, 0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--cream-16); border-radius: var(--r-lg);
  padding: clamp(24px, 3.6vw, 44px);
  box-shadow: 0 36px 90px -36px rgba(0, 0, 0, 0.65);
}
.book-form .bf-tag {
  font-family: var(--font-display); font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
}
.book-form h3 {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(24px, 2.6vw, 38px); line-height: 1.05; margin: -12px 0 4px; color: var(--cream);
}
.bf-field { display: grid; gap: 8px; }
.bf-label {
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-70);
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%;
  font-family: var(--font-text); font-size: 16px; color: var(--cream);
  background: var(--cream-08);
  border: 1px solid var(--cream-16); border-radius: var(--r-sm);
  padding: 13px 16px; outline: none;
  -webkit-appearance: none; appearance: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.book-form input:hover, .book-form select:hover, .book-form textarea:hover { border-color: var(--cream-45); }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  border-color: var(--gold);
  background: rgba(236, 223, 195, 0.11);
  box-shadow: 0 0 0 3px rgba(200, 167, 111, 0.2);
}
.book-form input::placeholder, .book-form textarea::placeholder { color: rgba(236, 223, 195, 0.52); }
.book-form input:-webkit-autofill {
  -webkit-text-fill-color: var(--cream);
  -webkit-box-shadow: 0 0 0 1000px #261d14 inset;
  caret-color: var(--cream);
}
.book-form textarea { resize: vertical; min-height: 88px; line-height: 1.55; }
.bf-select { position: relative; display: block; }
.bf-select select { cursor: pointer; padding-right: 46px; }
.bf-select::after {
  content: ''; position: absolute; right: 18px; top: 50%;
  width: 9px; height: 9px; pointer-events: none;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease-out);
}
.bf-select:hover::after { transform: translateY(-50%) rotate(45deg); }
.book-form select option { background: var(--esp-2); color: var(--cream); }
.book-form select:invalid { color: rgba(236, 223, 195, 0.52); }
.bf-flash { animation: bf-flash 1.5s var(--ease-out); }
@keyframes bf-flash {
  0% { box-shadow: 0 0 90px -12px rgba(200, 167, 111, 0.6); }
  100% { box-shadow: 0 36px 90px -36px rgba(0, 0, 0, 0.65); }
}
.bf-flash select { animation: bf-under 1.5s var(--ease-out); }
@keyframes bf-under {
  0%, 40% { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 167, 111, 0.2); }
}
.book-form .bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.bf-send { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 8px; }
.book-form .btn { padding: 18px 46px; }
.book-form .bf-note { font-size: 13px; color: var(--cream-70); line-height: 1.65; max-width: 400px; flex: 1; min-width: 260px; }
.book-form .bf-note a { color: var(--cream-70); border-bottom: 1px solid var(--cream-45); }
.book-form .bf-note a:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 860px) {
  .cta-media {
    position: relative; inset: auto; width: 100%; height: 300px;
    margin-top: calc(-1 * clamp(88px, 13vh, 160px));
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }
  .cta-media img { height: 100%; }
  .cta-media::after { display: none; }
  .cta-head, .book-grid { max-width: none; }
}

.cta-foot-stat {
  max-width: 1180px; margin-top: clamp(36px, 6vh, 60px);
  padding: 22px 0 0; border-top: 1px solid var(--cream-16);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: baseline;
}
.cta-foot-stat p { font-size: 13.5px; color: var(--cream-70); max-width: 640px; line-height: 1.7; }
.cta-foot-stat p b { color: var(--cream); }

.site-foot {
  position: relative; z-index: 2; margin-top: clamp(56px, 9vh, 100px);
  border-top: 1px solid var(--cream-16);
  background: rgba(22, 17, 13, 0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: clamp(30px, 4.5vh, 48px) var(--gutter)
    calc(clamp(30px, 4.5vh, 48px) + env(safe-area-inset-bottom, 0px));
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between;
}
.foot-brand { display: flex; align-items: center; gap: 16px; }
.foot-brand img { height: 32px; filter: sepia(0.25) brightness(1.02); }
.foot-brand .fb-name { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.3em; font-size: 13px; text-transform: uppercase; color: var(--cream); }
.foot-brand .fb-base { font-family: var(--font-display); font-weight: 500; font-size: 10px; color: var(--cream-45); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 4px; }
.foot-links { display: flex; flex-wrap: wrap; gap: clamp(16px, 3vw, 36px); }
.foot-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 11.5px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-70);
  transition: color 0.3s;
}
.foot-links a:hover { color: var(--gold); }
.foot-copy { font-size: 11.5px; color: var(--cream-45); letter-spacing: 0.08em; width: 100%; text-align: left; }

@media (max-width: 860px) {

  .book-form .bf-row { grid-template-columns: 1fr; }
  .hero-inner { padding-bottom: max(16px, calc(env(safe-area-inset-bottom) + 8px)); }
  .hero { justify-content: flex-end; }
  .hero-media { width: 100%; -webkit-mask-image: none; mask-image: none; }

  /* mobile hero: face high in frame, copy sits on a deep bottom scrim */
  .hero-media img { object-position: 50% 12%; }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(22, 17, 13, 0.55) 0%, transparent 20%),
      linear-gradient(0deg, rgba(22, 17, 13, 0.97) 0%, rgba(22, 17, 13, 0.78) 26%, rgba(22, 17, 13, 0.3) 48%, rgba(22, 17, 13, 0) 64%);
  }
  /* the eyebrow line lands on the model's face: the audience is named
     in the deliverables and packages, so mobile drops it */
  .hero-eyebrow { display: none; }
  .hero-sub { margin-top: 16px; }
  .hero-cta-row { margin-top: 24px; gap: 16px; }
  /* deliverables: one quiet single line under the CTA */
  .hero-deliver {
    flex-wrap: nowrap; white-space: nowrap; gap: 0; margin-top: 18px;
    font-size: clamp(7.5px, 2.2vw, 9px); letter-spacing: 0.06em;
    color: var(--cream-45);
  }
  .hero-deliver i { font-size: 0.9em; margin: 0 8px; }

  /* header: legible logo, comfortable CTA hit box */
  .head-brand img { height: 31px; filter: sepia(0.25) brightness(1.3); }

  /* client band: fade the cut edge as a scroll hint */
  .ig-inner {
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
  }

  /* work strips: balance the block padding */
  .work { padding: 16px 0 30px; }

  /* deck dots: readable over any photo */
  .deck-dots {
    left: 14px; bottom: 14px; padding: 7px 9px; border-radius: 99px;
    background: rgba(22, 17, 13, 0.42);
  }

  /* proofline: the full quote, flowing as one paragraph small enough
     for 3-4 lines (the desktop per-line blocks would force 6) */
  .proofline { padding: 44px 16px 34px; }
  .proofline .pf-big { font-size: clamp(11.5px, 3.25vw, 13px); line-height: 1.65; letter-spacing: 0.01em; }
  .proofline .pf-big .kl, .proofline .pf-big .kw { display: inline; }
  .proofline .pf-big .kl { padding: 0; margin: 0; }
  .proofline .pf-big .kl::after { content: ' '; }
  .proofline .stat-src { margin-top: 12px; font-size: 9px; letter-spacing: 0.16em; }

  /* belt and suspenders: even a stale cached script cannot parallax the
     in-flow media blocks (important beats inline style transforms) */
  .hero-media, .cta-media { transform: none !important; }

  /* roadmap: tighter column rhythm, opaque cards instead of five live blurs */
  .rm-track { margin-inline: auto; }
  .rm-arrow { flex-basis: 18px; }
  .rm-arrow svg { height: 24px; }
  .rm-step {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: linear-gradient(160deg, rgba(33, 26, 19, 0.94), rgba(22, 17, 13, 0.88));
  }

  /* film grain: keep the texture, stop the per-frame blend repaints */
  .grain { opacity: 0.26; }
  .grain::before { animation: none; }

  .pricing-head .lede { font-size: 14.5px; }
  .pk-note { font-size: 13px; color: var(--cream-90); }

  .book-form textarea { resize: none; }
  .foot-links a { padding: 10px 4px; margin: -10px -4px; }
}

@media (max-width: 560px) {
  .hero .h-display { font-size: clamp(28px, 8.4vw, 34px); }
  .film-item { height: clamp(140px, 22vh, 190px); }

  /* tickets: tighter list rhythm on a narrow screen */
  .tk-body { padding: 20px 18px; }
  .tk-stub { padding: 20px 18px 22px; }
  .tk-list li { padding: 11px 0; column-gap: 13px; }
  .tk-i { width: 31px; height: 31px; border-radius: 9px; }
  .tk-t span { font-size: 12.5px; }
  .stub-price { padding-top: 18px; }

  /* counters: three in one row instead of 2 + 1 orphan */
  .cred-line { flex-wrap: nowrap; gap: 16px; }
  .cred { flex: 1 1 0; }
  .cred .c-num { font-size: 27px; }

  /* laurels: normalize ragged asset heights */
  .laurels { margin-top: 20px; align-items: center; justify-items: center; }
  .laurel-img { max-height: 92px; width: auto; max-width: 100%; }

  .pk-stack { gap: 26px; }

  .book-form input, .book-form select { padding: 15px 16px; }
  .bf-send { gap: 18px; }
  .book-form .btn { width: 100%; }
  .site-foot { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .kinetic .kw { transform: none; }
  .ph-rv::after { display: none; }
  .ph-rv img { transform: none; }
  .rv-fade { opacity: 1; transform: none; }
  .grain { display: none; }
  .cursor-dot { display: none; }
}
