/* =================================================================
   ACTORS REELS — Cinematic Black & Gold
   Typography: Outfit (throughout) · Theme: ink + champagne gold
   Premium polish layer: see "ULTRA PREMIUM POLISH" section at end
   ================================================================= */

:root {
  /* Ink palette */
  --ink-900: #07070a;
  --ink-850: #0a0a0f;
  --ink-800: #0d0d14;
  --ink-750: #101019;
  --ink-700: #15151f;
  --ink-600: #1c1c28;
  --line: rgba(212, 175, 55, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* Gold */
  --gold-300: #f6e7b4;
  --gold-400: #ecd591;
  --gold-500: #d4af37;
  --gold-600: #b8902c;
  --gold-700: #8a6a1e;
  --gold-grad: linear-gradient(135deg, #f6e7b4 0%, #d4af37 42%, #b8902c 100%);
  --gold-grad-soft: linear-gradient(135deg, #ecd591 0%, #c79b32 100%);

  /* Text */
  --fg: #f4f1ea;
  --fg-muted: #b3afa4;
  --fg-dim: #6f6c64;

  /* System */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --maxw: 1200px;
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.45);
  --shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 24px 70px -22px rgba(212, 175, 55, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font);
  background: var(--ink-900);
  color: var(--fg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  letter-spacing: 0.01em;
}
html { overflow-x: clip; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: rgba(212, 175, 55, 0.3); color: #fff; }

/* Film-grain overlay across whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: 120px 0; }
.section--tight { padding: 88px 0; }
.relative { position: relative; z-index: 2; }

/* Decorative gold orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.orb--gold { background: radial-gradient(circle, rgba(212, 175, 55, 0.45), transparent 70%); }
.orb--warm { background: radial-gradient(circle, rgba(184, 144, 44, 0.35), transparent 70%); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.05);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold-grad);
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: #fff; }
.display {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}
.h-section { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--fg-muted); font-weight: 300; max-width: 60ch; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.serif-italic { font-style: italic; font-weight: 300; }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .h-section { margin: 22px 0 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn-primary {
  background: var(--gold-grad);
  color: #1a1407;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 30px 80px -20px rgba(212, 175, 55, 0.55); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--gold-500); color: var(--gold-300); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-weight: 500;
  font-size: 0.95rem;
}
.text-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

/* =================================================================
   NAVBAR
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* iOS notch / Android status-bar safe area: extend the bar up to the very
     top edge of the screen, push its content (logo, nav, burger) down. */
  padding-top: env(safe-area-inset-top);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 10, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  text-decoration: none;
}
.brand::before, .brand::after { content: none !important; display: none !important; }
.brand-mark { display: none; }
.brand-logo { display: none !important; }
.brand-name { display: none; }
/* Gold film-reel mark — static at rest, spins on hover */
.brand-reel {
  width: 46px;
  height: 46px;
  color: var(--gold-500);
  flex-shrink: 0;
  transform-origin: 50% 50%;
  will-change: transform;
  filter: none;
  object-fit: contain;
  display: block;
}
img.brand-reel { background: transparent; }
.brand:hover .brand-reel,
.brand:focus-visible .brand-reel { animation: brandSpin 2.4s linear infinite; }
@keyframes brandSpin { to { transform: rotate(360deg); } }
/* Touch devices have no hover — keep the reel alive with a slow ambient spin,
   matching the mobile-menu brand mark. Faster while pressed for feedback. */
@media (hover: none) {
  .brand .brand-reel { animation: brandSpin 8s linear infinite; }
  .brand:active .brand-reel { animation-duration: 1.8s; }
}
/* Respect users who've opted out of motion. */
@media (prefers-reduced-motion: reduce) {
  .brand .brand-reel,
  .brand:hover .brand-reel { animation: none !important; }
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--gold-500);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: none;
}
.brand-text span { display: block; }
.footer-brand .brand-reel { width: 88px; height: 88px; }
.footer-brand .brand-text { font-size: 2rem; }
@media (max-width: 768px) {
  /* Slim nav but keep the brand mark at desktop proportions so the logo
     looks identical on phone and desktop. */
  .nav-inner { height: 64px; }
  .brand-reel { width: 46px; height: 46px; }
  .brand-text { font-size: 1.15rem; }
  .footer-brand .brand-reel { width: 72px; height: 72px; }
  .footer-brand .brand-text { font-size: 1.65rem; }

  /* Touch devices can't hover, so the film-reel never spins on mobile.
     Run a gentle continuous spin instead so the mark feels alive. */
  .nav .brand-reel {
    animation: brandSpin 9s linear infinite;
  }
}

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--fg-muted);
  position: relative;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 0; height: 1.5px;
  background: var(--gold-grad);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--fg-muted); font-weight: 400; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-500); }
.nav-btn { padding: 11px 24px; font-size: 0.9rem; }

/* Premium circular burger with asymmetric gold bars + brand dot */
.burger {
  display: none;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
  position: relative;
  z-index: 1500;
  transition: background 0.35s, border-color 0.35s, transform 0.5s var(--ease);
  align-items: center;
  justify-content: center;
}
.burger:hover { border-color: var(--gold-500); background: rgba(212,175,55,0.1); }
.burger.open { border-color: var(--gold-500); background: rgba(212,175,55,0.14); }
.burger .b-bar {
  position: absolute;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  left: 50%;
  transform-origin: center;
  transition: transform 0.45s var(--ease), opacity 0.3s, width 0.35s var(--ease);
  box-shadow: 0 0 6px rgba(212,175,55,0.45);
}
.burger .b-bar.b1 { width: 22px; transform: translate(-50%, -7px); }
.burger .b-bar.b2 { width: 14px; transform: translate(calc(-50% - 4px), 0); }
.burger .b-bar.b3 { width: 22px; transform: translate(-50%, 7px); }
.burger.open .b-bar.b1 { transform: translate(-50%, 0) rotate(45deg); width: 22px; }
.burger.open .b-bar.b2 { opacity: 0; width: 0; }
.burger.open .b-bar.b3 { transform: translate(-50%, 0) rotate(-45deg); width: 22px; }
.burger .b-dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-grad);
  bottom: 9px; right: 9px;
  box-shadow: 0 0 10px rgba(212,175,55,0.8);
}

/* =================================================================
   MOBILE MENU — simple, bulletproof
   ================================================================= */
/* New mobile menu — full-screen overlay with monogram backdrop,
   eyebrow + huge nav links + featured "most booked" card + foot CTA. */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1400;
  display: grid;                              /* lock the menu shell */
  grid-template-rows: auto 1fr;
  height: 100vh; height: 100dvh;
  background: linear-gradient(180deg, #08080c 0%, #050507 100%);
  visibility: hidden; pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1), visibility 0s linear 0.5s;
  overflow: hidden;                           /* shell never scrolls */
}
.mobile-menu.open {
  visibility: visible; pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0s;
}
/* Ambient gold gradient behind everything */
.mobile-menu__bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 10% 5%, rgba(212, 175, 55, 0.20) 0%, transparent 65%),
    radial-gradient(60% 60% at 95% 95%, rgba(212, 175, 55, 0.14) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu.open .mobile-menu__bg { opacity: 1; }
/* Huge "A" monogram watermark */
.mobile-menu__monogram {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: var(--font);
  font-weight: 800; font-size: 64vw;
  line-height: 0.85; letter-spacing: -0.06em;
  color: rgba(212, 175, 55, 0.055);
  pointer-events: none; user-select: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mobile-menu.open .mobile-menu__monogram { opacity: 1; }

/* TOP — brand mark + cinematic close */
.mobile-menu__top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.mobile-menu__brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.mobile-menu__brand .brand-reel {
  width: 42px; height: 42px;
  color: #ffffff;
  animation: brandSpin 9s linear infinite;
  flex-shrink: 0;
}
.mobile-menu__brand-text {
  display: inline-flex; flex-direction: column;
  font-family: var(--font);
  font-weight: 800; font-size: 1rem;
  line-height: 0.92; letter-spacing: -0.02em;
  color: #ffffff;
}
.mobile-menu__brand-text span { display: block; }
.mobile-menu__close {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font);
}
.mobile-menu__close-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.mobile-menu__close-mark {
  position: relative; width: 36px; height: 36px;
  border: 1.5px solid var(--gold-500);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.mobile-menu__close:hover .mobile-menu__close-mark {
  background: var(--gold-500);
  transform: rotate(90deg);
}
.mobile-menu__close-mark span {
  position: absolute; left: 50%; top: 50%;
  width: 16px; height: 2px; background: var(--gold-500);
  transform-origin: center;
  transition: background-color 0.25s;
}
.mobile-menu__close:hover .mobile-menu__close-mark span { background: #08080c; }
.mobile-menu__close-mark span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu__close-mark span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* INNER content */
.mobile-menu__inner {
  position: relative; z-index: 1;
  padding: 30px 22px calc(28px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 26px;
  min-height: 0;                              /* allow shrink inside grid */
  overflow-y: auto;                           /* inner is now the scroll container */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;               /* no parent rubber-band leak */
}
.mobile-menu__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease 0.1s, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s;
}
.mobile-menu__eyebrow-line { width: 28px; height: 1.5px; background: var(--gold-500); }
.mobile-menu.open .mobile-menu__eyebrow { opacity: 1; transform: translateY(0); }

/* NAV LINKS — huge editorial */
.mobile-menu__nav { display: flex; flex-direction: column; }
.mob-link {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: baseline; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  text-decoration: none;
  opacity: 0; transform: translateY(16px);
  transition:
    opacity 0.55s ease var(--mob-delay, 0s),
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) var(--mob-delay, 0s),
    background-color 0.25s ease, padding 0.25s ease;
}
.mobile-menu.open .mob-link { opacity: 1; transform: translateY(0); }
.mob-link:hover, .mob-link:focus {
  background: rgba(212, 175, 55, 0.06);
  padding-left: 8px; padding-right: 8px;
}
.mob-link__num {
  font-family: var(--font);
  font-weight: 800; font-size: 18px; letter-spacing: -0.04em;
  color: var(--gold-400); opacity: 0.75;
  min-width: 32px;
}
.mob-link__text {
  font-family: var(--font);
  font-weight: 800; font-size: 38px; line-height: 1; letter-spacing: -0.035em;
  color: #ffffff;
}
.mob-link__arrow {
  font-size: 18px; color: var(--gold-400);
  transition: transform 0.3s ease;
}
.mob-link:hover .mob-link__arrow { transform: translate(3px, -3px); }

/* FEATURED card — "Most Booked Session" */
.mobile-menu__feature {
  position: relative;
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid var(--gold-500);
  border-radius: 16px;
  padding: 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease var(--mob-delay, 0s), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) var(--mob-delay, 0s);
}
.mobile-menu.open .mobile-menu__feature { opacity: 1; transform: translateY(0); }
.mobile-menu__feature-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.mobile-menu__feature-eyebrow-line { width: 18px; height: 1px; background: var(--gold-500); }
.mobile-menu__feature-title {
  font-family: var(--font);
  font-weight: 800; font-size: 26px; line-height: 1.05; letter-spacing: -0.025em;
  color: #ffffff;
  margin: 6px 0 4px;
}
.mobile-menu__feature-title em {
  font-style: italic; font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.mobile-menu__feature-desc {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(244, 241, 234, 0.78);
  margin: 0;
}
.mobile-menu__feature-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff; border-bottom: 1.5px solid var(--gold-500);
  padding-bottom: 3px; align-self: flex-start;
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}
.mobile-menu__feature-link:hover { color: var(--gold-300); gap: 14px; }

/* FOOT — phone + CTA */
.mobile-menu__foot {
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.55s ease var(--mob-delay, 0s), transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) var(--mob-delay, 0s);
}
.mobile-menu.open .mobile-menu__foot { opacity: 1; transform: translateY(0); }
.mobile-menu__phone {
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none;
}
.mobile-menu__phone-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.mobile-menu__phone strong {
  font-family: var(--font);
  font-weight: 800; font-size: 28px; letter-spacing: -0.025em;
  color: #ffffff;
}
.mobile-menu__foot .btn {
  display: flex; width: 100%; justify-content: center;
  padding: 16px 22px;
}

/* META — studio address */
.mobile-menu__meta {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  color: rgba(244, 241, 234, 0.5); text-align: center;
  padding-top: 8px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.55s ease var(--mob-delay, 0s), transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) var(--mob-delay, 0s);
}
.mobile-menu.open .mobile-menu__meta { opacity: 1; transform: translateY(0); }
.mobile-menu__meta-dot { color: var(--gold-500); }

body.menu-open { overflow: hidden; }

@media (min-width: 769px) { .burger, .mobile-menu { display: none !important; } }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 75% 15%, rgba(212, 175, 55, 0.16), transparent 55%),
    radial-gradient(90% 70% at 15% 90%, rgba(184, 144, 44, 0.12), transparent 60%),
    linear-gradient(180deg, #08080c 0%, #0b0b12 50%, #07070a 100%);
}
/* cinematic spotlight sweep */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 210deg at 70% 20%, transparent 0deg, rgba(212,175,55,0.07) 40deg, transparent 120deg);
}
/* letterbox vignette */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 220px 60px rgba(0, 0, 0, 0.85);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 620px; }
.hero h1 { margin: 26px 0 24px; }
.hero h1 em { font-style: normal; display: block; }
.hero .lead { margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.hero-meta .stat-num { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
.hero-meta .stat-label { font-size: 0.82rem; color: var(--fg-dim); letter-spacing: 0.06em; }

/* Hero showcase — stacked film frames */
.hero-stage { position: relative; height: 540px; }
.film-frame {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--ink-700), var(--ink-850));
}
.film-frame .scene {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.film-frame .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  background: #000;
  display: block;
  transform: scale(1.45);
  transform-origin: center center;
}
.film-frame .hero-video + .frame-tag,
.film-frame .hero-video ~ .frame-tag { z-index: 5; }
.film-frame .scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,7,10,0.85));
}
.frame-a { inset: 0; width: 100%; height: 100%; z-index: 3; }
.frame-b { width: 46%; height: 54%; bottom: 0; left: 0; z-index: 4; }
.frame-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 5;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: flex; align-items: center; gap: 8px;
}
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #e5484d; box-shadow: 0 0 10px #e5484d; animation: blink 1.6s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }
.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.92);
  display: grid; place-items: center;
  z-index: 6;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}
.play-badge svg { width: 24px; height: 24px; color: #14100a; margin-left: 3px; }
.play-badge::after {
  content: "";
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.5);
  animation: ring 2.4s var(--ease) infinite;
}
@keyframes ring { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(1.5);opacity:0} }

/* floating glass credential card */
.cred-card {
  position: absolute;
  right: -8px; bottom: 26px;
  z-index: 7;
  background: rgba(13, 13, 20, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.cred-card .ring { width: 42px; height: 42px; flex-shrink: 0; }
.cred-card b { display: block; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.cred-card small { color: var(--fg-muted); font-size: 0.78rem; letter-spacing: 0.04em; }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fg-dim);
}
.scroll-cue .mouse { width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 2px; background: var(--gold-500); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} }

/* =================================================================
   MARQUEE / TRUST STRIP
   ================================================================= */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.012);
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: slide 32s linear infinite; will-change: transform; }
@media (hover: hover) { .marquee:hover .marquee-track { animation-play-state: paused; } }
@keyframes slide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.marquee-item { display: flex; align-items: center; gap: 14px; padding-right: 56px; color: var(--fg-dim); font-size: 1.02rem; font-weight: 400; letter-spacing: 0.04em; white-space: nowrap; }
.marquee-item svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; }

/* =================================================================
   SERVICE / REEL CARDS
   ================================================================= */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-750), var(--ink-850));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 30px 34px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212,175,55,0.4), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card-chip {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--gold-grad);
  display: grid; place-items: center;
  margin-bottom: 26px;
  box-shadow: 0 14px 30px -10px rgba(212,175,55,0.5);
}
.card-chip svg { width: 28px; height: 28px; color: #14100a; }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--fg-muted); font-size: 0.97rem; margin-bottom: 22px; }
.card-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--fg-muted); }
.card-list svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.card-price { font-size: 0.8rem; color: var(--fg-dim); }
.card-price b { display: block; font-size: 1.5rem; color: #fff; font-weight: 700; letter-spacing: -0.01em; }
.card-num { position: absolute; top: 26px; right: 30px; font-size: 3.4rem; font-weight: 700; line-height: 1; color: rgba(212,175,55,0.1); letter-spacing: -0.04em; }

/* featured card */
.card.featured { background: linear-gradient(165deg, rgba(212,175,55,0.1), var(--ink-850)); border-color: var(--line); }
.card-flag { position: absolute; top: 18px; right: 18px; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: #14100a; background: var(--gold-grad); padding: 5px 12px; border-radius: 100px; font-weight: 700; }

/* =================================================================
   PROCESS / STEPS
   ================================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 30px; }
.step::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--line);
}
.step-num {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold-500);
  display: block; margin-bottom: 18px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 12px; }
.step p { color: var(--fg-muted); font-size: 0.93rem; }
.step.active::before { background: var(--gold-grad); height: 2px; }

/* =================================================================
   SHOWREEL GALLERY
   ================================================================= */
.reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reel-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  background: linear-gradient(160deg, var(--ink-700), var(--ink-850));
}
.reel-tile .scene { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.reel-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,0.1) 30%, rgba(7,7,10,0.92));
  z-index: 1;
}
.reel-tile:hover .scene { transform: scale(1.07); }
.reel-meta { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 3; }
.reel-meta .role { font-size: 1.12rem; font-weight: 600; color: #fff; }
.reel-meta .type { font-size: 0.8rem; color: var(--gold-300); letter-spacing: 0.06em; }
.reel-play {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,13,20,0.6); border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.3s, transform 0.3s;
}
.reel-play svg { width: 18px; height: 18px; color: var(--gold-300); margin-left: 2px; }
.reel-tile:hover .reel-play { background: var(--gold-grad); transform: scale(1.08); }
.reel-tile:hover .reel-play svg { color: #14100a; }
.reel-dur { position: absolute; top: 22px; left: 18px; z-index: 3; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--fg); background: rgba(7,7,10,0.6); padding: 4px 10px; border-radius: 100px; border: 1px solid var(--line-soft); }

/* scene background tints (CSS-only, no external images) */
.tint-1 { background: radial-gradient(120% 100% at 30% 20%, #3a2c4d, #120d1d 70%), linear-gradient(160deg,#2a1f3a,#0c0814); }
.tint-2 { background: radial-gradient(120% 100% at 70% 25%, #4a3320, #16100a 70%), linear-gradient(160deg,#3a2613,#120c07); }
.tint-3 { background: radial-gradient(120% 100% at 40% 30%, #1f3a3c, #0a1516 70%), linear-gradient(160deg,#143033,#08110f); }
.tint-4 { background: radial-gradient(120% 100% at 60% 20%, #3a1f2a, #150a10 70%), linear-gradient(160deg,#33141f,#0f0709); }
.tint-5 { background: radial-gradient(120% 100% at 30% 25%, #2a2f4a, #0c0e1a 70%), linear-gradient(160deg,#1f2438,#080a14); }
.tint-6 { background: radial-gradient(120% 100% at 65% 30%, #46402a, #161308 70%), linear-gradient(160deg,#33301a,#0c0b07); }

/* =================================================================
   SPLIT / ABOUT
   ================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.media-frame .scene { position: absolute; inset: 0; background-size: cover; background-position: center; }
.media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,7,10,0.7)); }
.media-badge {
  position: absolute; left: -18px; bottom: 30px; z-index: 4;
  background: rgba(13,13,20,0.78); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.media-badge svg { width: 34px; height: 34px; color: var(--gold-500); }
.media-badge b { display: block; font-size: 1rem; }
.media-badge small { color: var(--fg-muted); font-size: 0.8rem; }
.split-copy .h-section { margin: 22px 0 22px; }
.split-copy p { color: var(--fg-muted); margin-bottom: 18px; }
.signature { margin-top: 30px; }
.signature .sig-name { font-size: 1.7rem; font-weight: 600; font-style: italic; color: var(--gold-300); letter-spacing: -0.01em; }
.signature .sig-role { font-size: 0.85rem; color: var(--fg-dim); letter-spacing: 0.06em; margin-top: 4px; }

.feature-list { display: grid; gap: 18px; margin: 30px 0; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .fl-ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(212,175,55,0.1); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.feature-list .fl-ic svg { width: 20px; height: 20px; color: var(--gold-400); }
.feature-list b { display: block; color: #fff; font-weight: 500; margin-bottom: 3px; }
.feature-list span { color: var(--fg-muted); font-size: 0.93rem; }

/* =================================================================
   STATS BAND
   ================================================================= */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.stat-big { text-align: center; padding: 30px 12px; position: relative; min-width: 0; }
.stat-big:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--line-soft); }
.stat-big .num {
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.stat-big .lbl { color: var(--fg-muted); font-size: 0.88rem; margin-top: 12px; letter-spacing: 0.04em; white-space: nowrap; }
@media (max-width: 540px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .stat-big { padding: 18px 8px; }
  .stat-big .num { font-size: clamp(1.2rem, 5.4vw, 1.9rem); }
  .stat-big .lbl { font-size: 0.74rem; margin-top: 8px; }
  .stat-big:not(:last-child)::after { display: none; }
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-750), var(--ink-850));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 38px 32px 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
  display: flex;
  flex-direction: column;
  height: auto;
}
.quote-card p { flex: 1 1 auto; }
.quote-card .quote-by { margin-top: auto; }
.quote-card:hover { transform: translateY(-6px); border-color: var(--line); }
.quote-mark { font-size: 5rem; line-height: 0.6; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; height: 36px; }
.quote-card p { color: var(--fg); font-size: 1.02rem; font-weight: 300; margin-bottom: 26px; }
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 17px; height: 17px; color: var(--gold-500); }
.quote-by { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.q-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; font-weight: 700; color: #14100a; font-size: 1.05rem; flex-shrink: 0; }
.quote-by b { display: block; font-weight: 500; font-size: 0.98rem; }
.quote-by small { color: var(--fg-dim); font-size: 0.82rem; }

/* =================================================================
   FAQ
   ================================================================= */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(255,255,255,0.015); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 26px; font-size: 1.06rem; font-weight: 500; color: #fff; }
.faq-q .ic { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold-500); transition: transform 0.3s var(--ease); }
.faq-q .ic::before { width: 14px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 14px; }
.faq-item.open .faq-q .ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 26px 26px; color: var(--fg-muted); font-size: 0.98rem; }

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 80px 60px; text-align: center; border: 1px solid var(--line); background: linear-gradient(160deg, var(--ink-700), var(--ink-850)); }
.cta-band .h-section { margin-bottom: 20px; }
.cta-band .lead { margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-info .h-section { margin: 20px 0 22px; }
.info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.info-row { display: flex; align-items: center; gap: 18px; padding: 18px 20px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(255,255,255,0.015); transition: border-color 0.3s, transform 0.3s; }
.info-row:hover { border-color: var(--line); transform: translateX(4px); }
.info-ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(212,175,55,0.1); border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; }
.info-ic svg { width: 22px; height: 22px; color: var(--gold-400); }
.info-row small { color: var(--fg-dim); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.info-row b { display: block; font-weight: 500; font-size: 1.02rem; margin-top: 3px; }

.form-card { background: linear-gradient(165deg, var(--ink-750), var(--ink-850)); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 9px; font-weight: 400; letter-spacing: 0.02em; }
.field label .req { color: var(--gold-500); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(7,7,10,0.6);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-size: 0.97rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-dim); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-500); background: rgba(7,7,10,0.85); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { font-size: 0.84rem; color: var(--fg-dim); margin-top: 16px; text-align: center; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(46, 160, 90, 0.12); border: 1px solid rgba(46,160,90,0.4); color: #8fe3b0; }
.form-status.err { background: rgba(229, 72, 77, 0.12); border: 1px solid rgba(229,72,77,0.4); color: #f3a3a6; }

/* page hero (inner pages) */
.page-hero { position: relative; padding: 220px 0 70px; overflow: hidden; text-align: center; }
.page-hero .display { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin: 24px 0 22px; }
.page-hero .lead { margin: 0 auto; }
.breadcrumb { display: none !important; }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { position: relative; border-top: 1px solid var(--line); padding: 80px 0 30px; background: linear-gradient(180deg, var(--ink-850), #050507); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
.footer-grid--3 { grid-template-columns: 1.7fr 1fr 1.3fr; }
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand p { color: var(--fg-muted); font-size: 0.95rem; max-width: 34ch; margin-bottom: 24px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-soft); display: grid; place-items: center; transition: border-color 0.3s, background 0.3s, transform 0.3s; }
.socials a:hover { border-color: var(--gold-500); background: rgba(212,175,55,0.08); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; color: var(--fg-muted); }
.socials a:hover svg { color: var(--gold-400); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 22px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { color: var(--fg-muted); font-size: 0.95rem; transition: color 0.25s, padding 0.25s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--fg-muted); font-size: 0.95rem; margin-bottom: 14px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; margin-top: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: var(--fg-dim); font-size: 0.86rem; }
.footer-bottom a { color: var(--gold-600); }
.footer-bottom .credit { color: var(--fg-dim); }

/* =================================================================
   MOBILE STICKY CTA
   ================================================================= */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7,7,10,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}
.mobile-cta a { flex: 1; justify-content: center; padding: 13px; font-size: 0.92rem; }

/* =================================================================
   REVEAL ANIMATION
   ================================================================= */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
/* Only hide reveals once JS is active, so content never vanishes if JS/observer fails */
.js .reveal { opacity: 0; transform: translateY(30px); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-stage { height: 440px; max-width: 520px; }
  .cards-grid, .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 44px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-big:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-btn { display: none; }
  .section { padding: 80px 0; }
  .section--tight { padding: 64px 0; }
  .hero { padding: 96px 0 80px; }
  .hero-meta { gap: 24px; }
  .cta-band { padding: 56px 26px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .media-badge { left: 16px; }
  .quote-grid { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body.has-sticky { padding-bottom: 76px; }
  .scroll-cue { display: none; }
  .form-card { padding: 28px 22px; }
  .page-hero { padding: 130px 0 50px; }
}

@media (max-width: 540px) {
  .wrap { padding: 0 18px; }
  .cards-grid, .cards-grid.cols-4 { grid-template-columns: 1fr; }
  .reel-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-stage { height: 400px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cred-card { right: 0; }
}

/* =================================================================
   STUDIO SESSIONS — premium 2-card layout
   ================================================================= */
.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}
.session-card {
  position: relative;
  background: linear-gradient(165deg, var(--ink-750), var(--ink-850));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  overflow: hidden;
}
.session-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212,175,55,0.35), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.session-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.session-card:hover::before { opacity: 1; }
.session-card.featured {
  background: linear-gradient(165deg, rgba(212,175,55,0.14), var(--ink-850) 65%);
  border-color: var(--line);
  box-shadow: 0 30px 80px -30px rgba(212,175,55,0.35);
}
.session-card.featured::before { opacity: 1; background: linear-gradient(160deg, rgba(212,175,55,0.7), transparent 55%, rgba(212,175,55,0.2)); }
.session-flag {
  position: absolute; top: 22px; right: 22px;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #14100a; background: var(--gold-grad);
  padding: 6px 14px; border-radius: 100px; font-weight: 700;
}
.session-card .duration {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-400); margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(212,175,55,0.05);
}
.session-card .duration::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-grad);
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
}
.session-card h3 { font-size: 1.85rem; margin-bottom: 10px; letter-spacing: -0.015em; }
.session-card .desc { color: var(--fg-muted); font-size: 0.96rem; margin-bottom: 26px; line-height: 1.6; }
.session-card .price {
  font-size: clamp(2.6rem, 5.2vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: #fff;
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 4px;
}
.session-card .price .gold-text { font-size: 1em; line-height: 1; }
.session-card .price small {
  font-size: 0.78rem; color: var(--fg-dim); font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.session-card .price-note { color: var(--fg-dim); font-size: 0.84rem; letter-spacing: 0.04em; margin-bottom: 24px; }
.session-list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 32px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.session-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--fg); font-weight: 300; }
.session-list svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }
.session-card .btn { width: 100%; justify-content: center; padding: 16px 28px; }

/* =================================================================
   OFFER CARDS — editorial spread (15% discount + partnership)
   ================================================================= */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1px 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 44px 40px 44px 44px;
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(165deg, var(--ink-750), var(--ink-850));
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.offer-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212,175,55,0.45), transparent 50%, rgba(212,175,55,0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}
.offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 36px 80px -28px rgba(0,0,0,0.65);
}

/* Film-strip perforations down one edge */
.offer-card__perfs {
  position: absolute; top: 0; bottom: 0; left: 0; width: 14px;
  background: repeating-linear-gradient(180deg,
    transparent 0 9px,
    rgba(212,175,55,0.16) 9px 13px,
    transparent 13px 22px);
  opacity: 0.55;
  pointer-events: none;
}
.offer-card__perfs--right { left: auto; right: 0; }

/* HERO column — numeral or venn */
.offer-card__hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

/* Rotating circular seal */
.offer-card__seal {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 240px; height: 240px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.32;
}
.offer-card__seal-svg {
  width: 100%; height: 100%;
  animation: offerSealSpin 30s linear infinite;
  color: var(--gold-300);
}
.offer-card__seal-svg text {
  font-family: var(--font);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  font-weight: 700;
  fill: currentColor;
  text-transform: uppercase;
}
@keyframes offerSealSpin { to { transform: rotate(-360deg); } }

/* Giant "15%" numeral — gradient clipped */
.offer-card__num {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: flex-start;
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.06em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(212,175,55,0.25));
}
.offer-card__num-15 { font-size: 7.4rem; }
.offer-card__num-pc { font-size: 4.2rem; margin-left: 4px; padding-top: 0.6rem; }
.offer-card__num-off {
  position: absolute; bottom: 14px;
  z-index: 2;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.36em;
  color: var(--gold-300);
  padding: 7px 16px; border-radius: 100px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.32);
  text-transform: uppercase;
}

/* Partnership Venn — two discs joined by + */
.offer-card__venn {
  position: relative; z-index: 2;
  display: inline-flex;
  align-items: center;
  filter: drop-shadow(0 12px 30px rgba(212,175,55,0.2));
}
.offer-card__disc {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--ink-700), #050507);
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.offer-card__disc--ar { box-shadow: inset 0 0 0 4px rgba(255,255,255,0.04); }
.offer-card__disc--dj {
  background: linear-gradient(165deg, rgba(212,175,55,0.18), #050507);
  color: var(--gold-300);
  margin-left: 0;
}
.offer-card__disc svg { width: 44px; height: 44px; }
.offer-card__plus {
  position: relative; z-index: 3;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: #1a1407;
  margin: 0 -16px;
  box-shadow: 0 6px 16px rgba(212,175,55,0.4);
}
.offer-card__plus svg { width: 16px; height: 16px; }

/* Hairline divider between columns */
.offer-card__rule {
  width: 1px; height: 100%; min-height: 220px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.45), transparent);
}

/* BODY column */
.offer-card__body {
  display: flex; flex-direction: column;
  position: relative;
  z-index: 2;
}
.offer-card__kicker {
  display: inline-flex; align-items: center;
  flex-wrap: wrap;                /* never overflow the card edge */
  max-width: 100%;
  gap: 12px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 20px;
}
.offer-card__kicker span:first-child {
  display: inline-block;
  flex: 0 0 auto;                 /* keep the rule from being squashed/shifted */
  width: 28px; height: 1px;
  background: var(--gold-grad);
}
.offer-card__title {
  font-size: clamp(1.55rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 18px;
}
.offer-card__title em {
  font-style: italic;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.offer-card__copy {
  font-size: 0.98rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0 0 30px;
  flex: 1 1 auto;
  max-width: 46ch;
}
.offer-card__cta {
  display: inline-flex; align-items: center;
  gap: 14px;
  align-self: flex-start;
  padding: 13px 14px 13px 26px;
  border-radius: 100px;
  background: var(--gold-grad);
  color: #1a1407;
  font-weight: 700; font-size: 0.94rem;
  letter-spacing: 0.005em;
  box-shadow: 0 18px 34px -12px rgba(212,175,55,0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
}
.offer-card__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 54px -16px rgba(212,175,55,0.65);
}
.offer-card__cta-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  background: rgba(0,0,0,0.18);
  color: #1a1407;
  transition: transform 0.3s var(--ease);
}
.offer-card__cta-arrow svg { width: 15px; height: 15px; }
.offer-card__cta:hover .offer-card__cta-arrow { transform: translateX(4px); }
.offer-card__cta--out:hover .offer-card__cta-arrow { transform: translate(3px, -3px); }

/* Subtle gold corner accent */
.offer-card--discount .offer-card__hero::before,
.offer-card--partner .offer-card__hero::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* RESPONSIVE — stack on tablet & below */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; gap: 24px; }
  .offer-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto;
    gap: 26px;
    padding: 36px 32px 36px 32px;
  }
  .offer-card__rule {
    width: 100%; height: 1px; min-height: 0;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.45), transparent);
  }
  .offer-card__hero { min-height: 180px; }
  .offer-card__num-15 { font-size: 5.6rem; }
  .offer-card__num-pc { font-size: 3.3rem; }
  .offer-card__seal { width: 200px; height: 200px; }
}
@media (max-width: 540px) {
  .offer-card { padding: 30px 24px; }
  .offer-card__num-15 { font-size: 3.8rem; }
  .offer-card__num-pc { font-size: 2.3rem; }
  .offer-card__num-off { font-size: 0.6rem; letter-spacing: 0.3em; padding: 5px 12px; bottom: 8px; }
  .offer-card__seal { width: 160px; height: 160px; }
  .offer-card__seal-svg text { font-size: 9px; letter-spacing: 0.3em; }
  .offer-card__hero { min-height: 150px; }
  .offer-card__title { font-size: 1.4rem; }
  .offer-card__copy { font-size: 0.92rem; }
  .offer-card__disc { width: 72px; height: 72px; }
  .offer-card__disc svg { width: 32px; height: 32px; }
  .offer-card__plus { width: 26px; height: 26px; }
  .offer-card__cta { padding: 11px 12px 11px 20px; font-size: 0.88rem; }
}

/* =================================================================
   BANNER BAND — legacy class kept for inner pages
   ================================================================= */
.banner-band {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 36px;
  background: linear-gradient(120deg, rgba(212,175,55,0.14), rgba(212,175,55,0.04) 60%, rgba(212,175,55,0.1));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.banner-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 100% at 0% 0%, rgba(212,175,55,0.18), transparent 60%);
  pointer-events: none;
}
.banner-band .b-ic {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--gold-grad); display: grid; place-items: center;
  color: #14100a; box-shadow: 0 16px 36px -12px rgba(212,175,55,0.5);
  flex-shrink: 0; position: relative;
}
.banner-band .b-ic svg { width: 28px; height: 28px; }
.banner-band .b-copy { position: relative; }
.banner-band b { display: block; color: #fff; font-size: 1.16rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.005em; }
.banner-band p { color: var(--fg-muted); font-size: 0.95rem; margin: 0; line-height: 1.55; max-width: 64ch; }
.banner-band .btn { position: relative; flex-shrink: 0; }

/* =================================================================
   ADD-ONS GRID
   ================================================================= */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.addon-card {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 30px 30px;
  background: linear-gradient(160deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s, transform 0.35s, background 0.35s;
}
.addon-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  background: linear-gradient(160deg, rgba(212,175,55,0.06), rgba(255,255,255,0.005));
}
.addon-ic {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.addon-ic svg { width: 26px; height: 26px; color: var(--gold-400); }
.addon-card .addon-body { flex: 1; min-width: 0; }
.addon-card .price-tag {
  color: var(--gold-400); font-size: 1.18rem; font-weight: 700;
  letter-spacing: -0.01em; display: block; margin-bottom: 4px;
}
.addon-card h4 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; color: #fff; }
.addon-card p { color: var(--fg-muted); font-size: 0.92rem; margin: 0; line-height: 1.55; }

/* =================================================================
   MAP / LOCATION
   ================================================================= */
.map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--ink-800);
}
.map-wrap iframe {
  display: block; width: 100%; height: 460px; border: 0;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.95) saturate(0.85);
}
.map-addr {
  position: absolute;
  left: 26px; bottom: 26px;
  z-index: 3;
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  max-width: 360px;
  box-shadow: var(--shadow);
}
.map-addr small {
  display: block;
  color: var(--gold-400);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.map-addr b { display: block; font-size: 1.16rem; margin-bottom: 8px; color: #fff; }
.map-addr p { font-size: 0.93rem; color: var(--fg-muted); line-height: 1.55; margin: 0 0 14px; }
.map-addr .map-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-300); font-size: 0.88rem; font-weight: 500;
}
.map-addr .map-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.map-addr .map-link:hover svg { transform: translateX(4px); }

/* =================================================================
   CONTACT PAGE — premium form + dual CTAs
   ================================================================= */
.contact-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-ctas .btn {
  width: 100%; justify-content: center;
  padding: 17px 22px; font-size: 0.98rem;
  flex-direction: column; gap: 4px; height: auto;
  line-height: 1.2;
}
.contact-ctas .btn .cta-sub { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.contact-ctas .btn .cta-main { font-size: 1.05rem; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1eb155 100%);
  color: #07140a; font-weight: 600;
  box-shadow: 0 18px 42px -18px rgba(37, 211, 102, 0.55);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -20px rgba(37, 211, 102, 0.7);
}
.btn-whatsapp svg { color: #07140a; }

.form-card-premium {
  position: relative;
  background: linear-gradient(165deg, rgba(212,175,55,0.07), var(--ink-850) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 50px 46px 44px;
  box-shadow: 0 40px 100px -45px rgba(212,175,55,0.35), var(--shadow);
  overflow: hidden;
}
.form-card-premium::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(160deg, rgba(212,175,55,0.55), transparent 45%, rgba(212,175,55,0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.form-card-premium .form-head {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.form-card-premium .form-head .eyebrow { margin-bottom: 14px; }
.form-card-premium .form-head h3 { font-size: 1.7rem; margin-bottom: 8px; letter-spacing: -0.015em; }
.form-card-premium .form-head p { color: var(--fg-muted); font-size: 0.96rem; max-width: 44ch; margin: 0 auto; }

/* =================================================================
   MOBILE — sessions / addons / banner / map / form responsive
   ================================================================= */
@media (max-width: 768px) {
  /* Legacy .nav-inner height override removed — the slim 64px nav rule
     defined earlier now wins (see line ~265). */
  .brand-logo { height: 116px; }
  .footer-brand .brand-logo { height: 150px; }
  /* Sessions/addons stack on mobile */
  .sessions-grid { grid-template-columns: 1fr; gap: 20px; }
  .session-card { padding: 36px 28px 32px; }
  .session-card h3 { font-size: 1.55rem; }
  .addons-grid { grid-template-columns: 1fr; gap: 16px; }
  .addon-card { padding: 24px 22px; gap: 18px; }
  .banner-band {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: 24px 22px; gap: 18px;
  }
  .banner-band .btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .map-wrap iframe { height: 360px; }
  .map-addr { left: 16px; right: 16px; bottom: 16px; max-width: none; padding: 18px 20px; }
  .contact-ctas { grid-template-columns: 1fr; gap: 12px; }
  .form-card-premium { padding: 36px 24px 32px; }
}
@media (max-width: 540px) {
  .sessions-grid { gap: 18px; }
  .session-card { padding: 32px 22px 28px; }
  .session-card .price { font-size: 2.2rem; }
  .form-card-premium { padding: 30px 20px 28px; }
  .form-card-premium .form-head h3 { font-size: 1.35rem; }
  .map-wrap iframe { height: 320px; }
}
@media (max-width: 360px) {
  .map-addr { padding: 14px 16px; }
  .map-addr b { font-size: 1rem; }
  .map-addr p { font-size: 0.85rem; }
}

/* =================================================================
   ULTRA PREMIUM POLISH
   Cinematic touches across the whole site
   ================================================================= */

/* Custom scrollbar — narrow, gold accent */
html { scrollbar-width: thin; scrollbar-color: var(--gold-600) transparent; }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  border-radius: 100px;
  border: 2px solid #07070a;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
}

/* Subtle viewport vignette — keeps eyes drawn to centre */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8500;
  box-shadow: inset 0 0 220px 30px rgba(0, 0, 0, 0.55);
  mix-blend-mode: multiply;
}

/* Page-load curtain — quick cinematic fade-in.
   NOTE: opacity only. A `transform` on <body> (even the identity matrix
   left behind after an animation) creates a containing block, which
   breaks `position: fixed` on the sticky nav and mobile CTA. */
@keyframes pageReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageReveal 0.7s var(--ease) both; }

/* Marquee fade-out edges — premium feel, no hard cut */
.marquee {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Buttons — magnetic-feel hover with intensified glow */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 120%, rgba(255,232,150,0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }
.btn-primary { position: relative; }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(247,232,196,0.6), rgba(184,144,44,0) 50%, rgba(247,232,196,0.6));
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }

/* Nav link refined — gold dot indicator on active */
.nav-links a.active { color: #fff; }
.nav-links a.active::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-grad);
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(212,175,55,0.7);
}

/* Cards — smoother, deeper hover lift */
.card, .session-card, .quote-card, .addon-card {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s var(--ease),
    box-shadow 0.55s var(--ease) !important;
}
.card:hover, .session-card:hover { transform: translateY(-12px) !important; }
.quote-card:hover { transform: translateY(-8px) !important; }
.addon-card:hover { transform: translateY(-6px) !important; }

/* Reel tiles — subtle image vignette + smoother zoom */
.reel-tile .scene { transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) !important; }
.reel-tile:hover .scene { transform: scale(1.085) !important; }
.reel-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 90px 12px rgba(0, 0, 0, 0.55);
  opacity: 0.6;
  transition: opacity 0.5s var(--ease);
}
.reel-tile:hover::before { opacity: 0.35; }

/* Scroll progress bar removed */
.scroll-progress { display: none !important; }
@keyframes scrollGradient {
  to { background-position: 200% 0; }
}

/* Section heads — subtle kicker line above eyebrow */
.section-head.center .eyebrow,
.section-head .eyebrow {
  margin-bottom: 6px;
}

/* Eyebrow refined — gold dot pulse */
.eyebrow::before {
  background: var(--gold-grad);
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
  animation: eyebrowDot 3s ease-in-out infinite;
}
@keyframes eyebrowDot {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* Film frames — subtle grain overlay */
.film-frame::after, .media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* CTA band — subtle moving spotlight on hover */
.cta-band { transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.cta-band:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px -30px rgba(212,175,55,0.35);
}

/* Banner band — subtle drift on hover */
.banner-band { transition: transform 0.5s var(--ease); }
.banner-band:hover { transform: translateY(-3px); }

/* (strict mobile overrides nuked — simple block layout works alone) */

/* =================================================================
   TESTIMONIALS MARQUEE — right-to-left infinite scroll under hero
   ================================================================= */
.tm-section {
  position: relative;
  padding: 70px 0 64px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.03), transparent);
}
.tm-section .section-head { max-width: 720px; margin-left: auto; margin-right: auto; }
.tm-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.tm-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tm-slide 95s linear infinite;
  padding: 6px 0;
  will-change: transform;
}
@media (hover: hover) { .tm-marquee:hover .tm-track { animation-play-state: paused; } }
@keyframes tm-slide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.tm-card {
  flex: 0 0 380px;
  background: linear-gradient(165deg, var(--ink-750), var(--ink-850));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  margin-right: 22px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.tm-card .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tm-card .stars svg { width: 14px; height: 14px; color: var(--gold-500); }
.tm-card p {
  font-size: 0.93rem;
  color: var(--fg);
  flex: 1 1 auto;
  margin: 0 0 22px;
  line-height: 1.55;
  font-weight: 300;
}
.tm-card .tm-by {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.tm-card .tm-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #14100a;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.tm-card .tm-by b { display: block; font-weight: 500; font-size: 0.94rem; color: #fff; }
.tm-card .tm-by small { color: var(--fg-dim); font-size: 0.76rem; letter-spacing: 0.02em; }
@media (max-width: 768px) {
  .tm-section { padding: 50px 0 46px; }
  .tm-card { flex: 0 0 300px; padding: 22px 20px 20px; min-height: 260px; margin-right: 16px; }
  .tm-card p { font-size: 0.88rem; }
  .tm-track { animation-duration: 65s; }
}
.hidden-section { display: none !important; visibility: hidden !important; }

/* =================================================================
   BANNER GRID — student discount + headshots partnership (2 cards)
   ================================================================= */
.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.banner-grid .banner-band {
  margin: 0;
}
@media (max-width: 900px) {
  .banner-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* =================================================================
   CONTACT CTAS — single column when only one CTA
   ================================================================= */
.contact-ctas--single {
  grid-template-columns: 1fr;
  max-width: 520px;
}

/* =================================================================
   REEL GRID — explicit 3-column for the showreel
   ================================================================= */
.reel-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .reel-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .reel-grid--3 { grid-template-columns: 1fr; } }

/* =================================================================
   CINEMATIC HEADER — scroll-driven film-strip border + REC dot
   ================================================================= */
.nav.scrolled {
  background: rgba(7, 7, 10, 0.86);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  border-bottom-color: rgba(212, 175, 55, 0.28);
}
.nav.scrolled::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.6) 30%, rgba(212,175,55,0.6) 70%, transparent);
}
.nav.scrolled::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 6px;
  background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(212,175,55,0.18) 12px 16px);
  opacity: 0.5;
  pointer-events: none;
}
.nav .nav-rec {
  display: none;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e5484d;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.nav .nav-rec::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e5484d;
  box-shadow: 0 0 8px rgba(229,72,77,0.7);
  animation: blink 1.6s ease-in-out infinite;
}
.nav.scrolled .nav-rec { display: inline-flex; opacity: 1; }
@media (max-width: 900px) { .nav .nav-rec { display: none !important; } }

/* Subtle hero parallax — bg drifts as user scrolls */
.hero-bg { transform: translate3d(0, var(--hero-shift, 0px), 0); transition: transform 0.05s linear; }

/* =================================================================
   MOBILE STICKY CTA — guaranteed visible, safe-area aware
   ================================================================= */
@media (max-width: 768px) {
  .mobile-cta {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 1300 !important;
    display: flex !important;
    gap: 10px;
    /* Bottom padding leaves room for the home indicator AND the floating
       browser URL bar (Chrome/Safari mobile) so the buttons aren't crowded. */
    padding: 14px 14px calc(22px + env(safe-area-inset-bottom));
    background: rgba(7, 7, 10, 0.94);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 -20px 40px -10px rgba(0, 0, 0, 0.4);
  }
  .mobile-cta a {
    flex: 1;
    justify-content: center;
    padding: 14px 12px;
    font-size: 0.94rem;
    border-radius: 100px;
  }
  body.has-sticky { padding-bottom: calc(108px + env(safe-area-inset-bottom)); }
  .mobile-cta { transform: none !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto; }
}
.mobile-menu.open ~ .mobile-cta { display: none !important; }

/* =================================================================
   TESTIMONIALS SLIDER
   ================================================================= */
.testimonials-slider { position: relative; }
.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 6px 16px;
  margin: 0 -6px;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > .quote-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  margin: 0;
  min-height: 100%;
}
.slider-track > .quote-card:hover { transform: none !important; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}
.slider-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
  padding: 0;
}
.slider-btn:hover {
  border-color: var(--gold-500);
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
}
.slider-btn:active { transform: translateY(0); }
.slider-btn svg {
  width: 20px; height: 20px;
  color: var(--gold-300);
  transition: transform 0.3s var(--ease);
}
.slider-btn.slider-prev:hover svg { transform: translateX(-3px); }
.slider-btn.slider-next:hover svg { transform: translateX(3px); }
.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 12px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: width 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0;
  flex-shrink: 0;
}
.slider-dot:hover { background: rgba(212,175,55,0.65); border-color: rgba(212,175,55,0.4); }
.slider-dot.active {
  width: 34px;
  height: 12px;
  border-radius: 100px;
  background: var(--gold-grad);
  border-color: transparent;
  box-shadow: 0 0 14px rgba(212,175,55,0.65);
}
@media (max-width: 1024px) {
  .slider-track > .quote-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 768px) {
  .slider-track > .quote-card { flex: 0 0 100%; }
  .slider-controls { gap: 16px; margin-top: 28px; }
  .slider-btn { width: 46px; height: 46px; }
}

/* =================================================================
   PROMO VIDEO
   ================================================================= */
.promo-video {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: #07070a;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(212, 175, 55, 0.08) inset;
}
.promo-video::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 35%, transparent 65%, rgba(212, 175, 55, 0.12));
  mix-blend-mode: screen;
  opacity: 0.55;
  z-index: 1;
}
.promo-video__el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .promo-video { border-radius: 16px; }
}

/* =================================================================
   MEDIA FRAME — VIDEO VARIANT
   ================================================================= */
.media-frame--video {
  background: #000;
}
.media-frame--video::after { content: none; }
.media-frame__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* When the split-media holds a VIDEO (Chinyere reel, Chris Rogers reel),
   stack the floating badge BELOW the video on every viewport — the actors'
   on-screen names appear at the start of the reel, and we don't want to
   cover them. (Image variants still float the badge over the photo.) */
.split-media:has(.media-frame--video) {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-media .media-frame--video ~ .media-badge {
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  padding: 16px 22px;
  border-radius: 16px;
}

/* =================================================================
   MOBILE OPTIMISATION PASS — applied after all earlier rules so it wins.
   Targets ≤768px, with tighter overrides at ≤540px and ≤360px.
   ================================================================= */

@media (max-width: 768px) {
  /* Buttons: never below 48px tall — comfortable thumb target. */
  .btn { min-height: 48px; padding: 13px 22px; font-size: 0.94rem; }
  .btn-primary, .btn-ghost { min-height: 48px; }

  /* Hero CTAs stack and go full-width on phones. */
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    width: 100%;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Inline text-links inside body content need a real tap area. */
  .text-link,
  .mobile-menu__feature-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
  }

  /* Offer-card CTA: full-width pill with the label centred and the
     arrow pinned right. Restores the symmetric padding the generic
     text-link rule above used to strip (which made the label clip
     the left edge and run under the arrow). */
  .offer-card__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    position: relative;
    gap: 0;
    /* Symmetric padding leaves equal clearance both sides so the label
       stays optically centred, with the right band reserved for the
       absolutely-positioned arrow. */
    padding: 14px 48px;
    min-height: 54px;
    font-size: 0.9rem;
    line-height: 1.25;
    white-space: normal;
  }
  .offer-card__cta-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .offer-card__cta:hover .offer-card__cta-arrow {
    transform: translateY(-50%) translateX(4px);
  }
  .offer-card__cta--out:hover .offer-card__cta-arrow {
    transform: translateY(-50%) translate(3px, -3px);
  }

  /* Mobile-menu close button: thumb-sized. */
  .mobile-menu__close {
    min-height: 48px;
    min-width: 48px;
    padding: 10px 14px;
  }

  /* Form inputs: comfortable, no zoom-on-focus (≥16px). */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    min-height: 48px;
    font-size: 16px !important;
    padding: 12px 14px;
    border-radius: 12px;
  }
  textarea { min-height: 120px; }

  /* Footer nav links: bigger tap area, no hover gymnastics on touch. */
  .footer-col a,
  .footer-nav a,
  footer a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 2px 0;
  }

  /* Section padding tighter — saves vertical space on small phones. */
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }

  /* Promo video frame: full-bleed feel, slimmer radius. */
  .promo-video { border-radius: 14px; margin: 0 4px; }

  /* Split video (Chinyere / Chris Rogers) — use the video's native 16:9 so
     nothing is cropped on the sides on mobile. */
  .media-frame--video { aspect-ratio: 16 / 9; }
  .media-frame--video .media-frame__video { object-fit: contain; }
  /* On mobile the 16:9 frame is short — float-over badges would cover the
     actor's face. Move them BELOW the video as a stacked caption strip. */
  .split-media:has(.media-frame--video) {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .split-media .media-frame--video ~ .media-badge {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
  }

  /* Sessions cards: tighten internal padding so price + CTA are visible without scroll-into-card. */
  .session-card { padding: 28px 22px; }
  .session-card .price { font-size: clamp(2.4rem, 12vw, 3rem); }

  /* "MOST POPULAR" pill: don't clip on small cards. */
  .session-card .badge,
  .session-card .ribbon { white-space: nowrap; font-size: 0.7rem; }

  /* Stat tiles: cleaner two-line label fit. */
  .stat-big { padding: 18px 6px; }
  .stat-big .num { font-size: clamp(1.15rem, 5vw, 1.7rem); line-height: 1.05; }
  .stat-big .lbl { font-size: 0.72rem; margin-top: 6px; white-space: normal; }
}

@media (max-width: 540px) {
  /* Tighter wrap padding on tiny phones. */
  .wrap { padding: 0 16px; }

  /* Display headline scales down. */
  .display { font-size: clamp(2rem, 9.5vw, 2.6rem); line-height: 1.05; }
  .h-section { font-size: clamp(1.55rem, 7vw, 2rem); }
  .lead { font-size: 1rem; }

  /* Section padding tighter again. */
  .section { padding: 52px 0; }
  .section--tight { padding: 40px 0; }

  /* Offer-card seal + giant 15%: fit comfortably. */
  .offer-card__hero { min-height: 200px; }
  .offer-card__num-15 { font-size: clamp(4rem, 22vw, 6.5rem); }
  .offer-card__num-pc { font-size: clamp(2rem, 10vw, 3rem); }
  .offer-card__seal-svg text { font-size: 11px; }

  /* Offer-card body padding tighter. */
  .offer-card__body { padding: 18px 20px 22px; }
  .offer-card__title { font-size: clamp(1.3rem, 6vw, 1.6rem); }

  /* Footer grid stays stacked, gap tighter. */
  .footer-grid { gap: 32px !important; }

  /* Hero meta items: allow wrap, smaller gap. */
  .hero-meta { gap: 12px !important; flex-wrap: wrap; }
  .hero-meta > * { font-size: 0.82rem; }

  /* FAQ items breathing room. */
  .faq-q { padding: 18px 16px; font-size: 0.98rem; }
  .faq-a-inner { padding: 0 16px 18px; }
}

@media (max-width: 360px) {
  /* The smallest phones still need to read cleanly. */
  .wrap { padding: 0 14px; }
  .display { font-size: 1.85rem; }
  .h-section { font-size: 1.45rem; }
  .btn { font-size: 0.9rem; padding: 12px 18px; }
  .mobile-cta a { font-size: 0.88rem; padding: 12px 8px; }
  .stat-big .num { font-size: 1.05rem; }
  .stat-big .lbl { font-size: 0.68rem; }
}

/* Tap highlight + smooth scroll on iOS. */
@media (max-width: 768px) {
  html { -webkit-text-size-adjust: 100%; }
  a, button { -webkit-tap-highlight-color: rgba(212, 175, 55, 0.18); }
}
