/* ============================================================
   CINEMA — Main Stylesheet
   Palette: Deep black / warm gold / cream
   Fonts:   Cormorant Garamond (display) · Montserrat (head) · Inter (body)
   Sections: Variables → Reset → Base → Layout → Buttons
             → Reveal → Gate → Nav → Hero → Marquee → Statement
             → Services → Why Us → Process → Contact → CTA
             → Footer → Responsive
   ============================================================ */


/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:         #080809;
  --black-soft:    #0f0f12;
  --black-muted:   #161619;
  --charcoal:      #1d1d21;
  --graphite:      #2a2a30;
  --gold:          #c09a45;
  --gold-light:    #d4ae5a;
  --gold-dark:     #9a7c33;
  --gold-subtle:   rgba(192, 154, 69, 0.1);
  --gold-border:   rgba(192, 154, 69, 0.18);
  --cream:         #ede9e0;
  --cream-muted:   #b0aca3;
  --gray-mid:      #6a6864;
  --white:         #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  --max-width:  1200px;
  --nav-height: 72px;

  --t:         0.3s ease;
  --t-med:     0.5s ease;
  --t-slow:    0.7s ease;
  --t-premium: 0.9s cubic-bezier(0.16, 1, 0.3, 1);

  --radius:    4px;
  --radius-lg: 10px;
}


/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; } /* Lenis owns smooth scroll */

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; }


/* ── Base Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}


/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.75rem;
}

.section { padding-block: var(--space-xl); }
.section--dark { background: var(--black-soft); }


/* ── Section Header ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  color: var(--cream);
  margin-bottom: 1.125rem;
  font-weight: 500;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  line-height: 1.85;
}


/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9375rem 2.125rem;
  border-radius: var(--radius);
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border: 1.5px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(192, 154, 69, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(237, 233, 224, 0.2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(192, 154, 69, 0.25);
}

.btn--full { width: 100%; }
.btn--sm   { padding: 0.625rem 1.375rem; font-size: 0.75rem; }
.btn--lg   { padding: 1.125rem 2.375rem; font-size: 0.875rem; }


/* ── Form Fields ────────────────────────────────────────────── */
.form-group { position: relative; width: 100%; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(237, 233, 224, 0.1);
  color: var(--cream);
  padding: 0.9375rem 1.25rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--t), background var(--t);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
  background: rgba(192, 154, 69, 0.04);
}

.form-group input.is-error { border-color: rgba(255, 80, 80, 0.6); }

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #ff6060;
  text-align: left;
  padding-top: 0.3rem;
  min-height: 1.1em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.9375rem;
  margin-top: var(--space-xs);
}
.form-success.is-visible { display: block; }


/* ============================================================
   SCROLL REVEAL
   Hero uses CSS keyframe on .site--visible.
   Everything else uses IntersectionObserver + [data-reveal].
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-premium), transform var(--t-premium);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-delay="2"] { transition-delay: 0.22s; }
[data-reveal][data-delay="3"] { transition-delay: 0.34s; }
[data-reveal][data-delay="4"] { transition-delay: 0.46s; }


/* ============================================================
   SITE VISIBILITY & HERO ENTRANCE
   ============================================================ */
.site { opacity: 0; transition: opacity var(--t-slow); }
.site.site--visible { opacity: 1; }
.site.site--hidden  { display: none; }

.site--visible .hero__inner {
  animation: heroEnter var(--t-premium) 0.25s both;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   TWO-STEP LEAD CAPTURE POPUP
   Step 1: Landing page hook — "Want More Leads From Your Ads?"
   Step 2: GSAP morph transition reveals form with staggered headline.
   Website is always visible behind the blurred backdrop.
   ============================================================ */

body.modal-open { overflow: hidden; }

/* ── Overlay ─────────────────────────────────────────────── */
.gate-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

/* ── Backdrop ────────────────────────────────────────────── */
.gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 9, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Card ────────────────────────────────────────────────── */
.gate-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 468px;
  background: rgba(16, 16, 20, 0.98);
  border: 1px solid rgba(192, 154, 69, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 48px 130px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(192, 154, 69, 0.06),
    0 0 70px rgba(192, 154, 69, 0.05);
  animation: modalRise 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.gate-modal__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(192,154,69,0.08) 0%, transparent 58%);
  pointer-events: none;
  z-index: 0;
}

/* ── Gold top bar ────────────────────────────────────────── */
.gate-modal__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    var(--gold-dark) 18%,
    var(--gold)      50%,
    var(--gold-light) 62%,
    var(--gold-dark) 82%,
    transparent
  );
  box-shadow: 0 0 22px rgba(192,154,69,0.55);
  z-index: 10;
}

/* ── Shimmer sweep ───────────────────────────────────────── */
.gate-modal__shimmer {
  position: absolute;
  top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(90deg,
    transparent,
    rgba(192,154,69,0.14),
    rgba(192,154,69,0.07),
    transparent
  );
  transform: skewX(-14deg);
  pointer-events: none;
  z-index: 9;
  left: -70%;
  opacity: 0;
}

/* ── Steps ───────────────────────────────────────────────── */
.gate-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2.75rem 2.75rem;
}

.gate-step--form {
  display: none;
  padding-top: 2.75rem;
}

/* ── Step 1 : eyebrow ────────────────────────────────────── */
.gate-modal__eyebrow {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  opacity: 0.88;
}

/* ── Step 1 : headline ───────────────────────────────────── */
.gate-modal__headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.125rem);
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

/* ── Step 1 : body copy ──────────────────────────────────── */
.gate-modal__sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.72;
  max-width: 340px;
  margin-bottom: 2rem;
}

/* ── Submit button ───────────────────────────────────────── */
.gate-modal__submit {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  padding: 1rem 2rem;
  width: 100%;
}

.gate-modal__arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.28s ease;
}
.gate-modal__submit:hover .gate-modal__arrow { transform: translateX(5px); }

/* ── Step 1 : "See How It Works" subtle text link ────────── */
.gate-modal__see-how {
  display: inline-block;
  margin-top: 1.125rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(192, 154, 69, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.25s ease;
  position: relative;
  letter-spacing: 0.01em;
}
.gate-modal__see-how::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transition: transform 0.28s ease, opacity 0.28s ease;
  transform-origin: left;
  opacity: 0.5;
}
.gate-modal__see-how:hover { color: var(--gold); }
.gate-modal__see-how:hover::after { transform: scaleX(1); opacity: 1; }

/* ── Step 2 : stacked headline ───────────────────────────── */
.gate-headline-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.875rem;
  gap: 0.05em;
}

.gate-headline-line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7.5vw, 2.875rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.025em;
  opacity: 0;
  will-change: transform, opacity;
}

.gate-headline-line--accent { color: var(--gold); }

/* ── Step 2 : form ───────────────────────────────────────── */
.gate-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ── Step 2 : dismiss text ───────────────────────────────── */
.gate-modal__dismiss {
  margin-top: 1.125rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(237, 233, 224, 0.28);
  cursor: pointer;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  line-height: 1;
}
.gate-modal__dismiss:hover { color: rgba(237, 233, 224, 0.5); }


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(8, 8, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237, 233, 224, 0.05);
  transition: background var(--t);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--t);
}
.nav__logo:hover { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 2.25rem; }

.nav__link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--t);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--t);
}


/* ============================================================
   HERO — full-screen, centered, typography-led
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(192, 154, 69, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(192, 154, 69, 0.04) 0%, transparent 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  padding-block: var(--space-2xl);
  overflow: hidden;
  position: relative;
}

/* Slow-breathing ambient glow — brings the hero alive */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 35%, rgba(192, 154, 69, 0.09) 0%, transparent 58%);
  animation: heroBreath 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroBreath {
  0%,  100% { opacity: 0.7; transform: scale(1); }
  50%        { opacity: 1.0; transform: scale(1.06); }
}

/* Film grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 2;
}

/* Large decorative wordmark behind content */
.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.022;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.hero__inner .section-label { margin-bottom: 1.375rem; }

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--space-md);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtext {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  max-width: 520px;
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

/* Thin gold gradient rule — cinematic divider */
.hero__rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: var(--space-lg);
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(192, 154, 69, 0.1);
  border-bottom: 1px solid rgba(192, 154, 69, 0.1);
  padding: 1.125rem 0;
  background: var(--black);
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__item {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-muted);
  white-space: nowrap;
}

.marquee__dot { color: var(--gold); margin-left: 2.5rem; }


/* ============================================================
   STATEMENT — editorial pull quote
   ============================================================ */
.statement {
  padding-block: var(--space-xl);
  background: var(--black-muted);
  text-align: center;
  border-top: 1px solid rgba(192, 154, 69, 0.07);
  border-bottom: 1px solid rgba(192, 154, 69, 0.07);
  position: relative;
  overflow: hidden;
}

/* Radial glow behind the quote */
.statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(192, 154, 69, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.statement .container { position: relative; z-index: 1; }

.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-inline: auto;
}

.statement__quote em {
  font-style: italic;
  color: var(--gold);
}


/* ============================================================
   CINEMATIC REEL — full-bleed video showcase with letterbox
   ============================================================ */
.reel {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Letterbox bars — animate open via GSAP on scroll */
.reel__bar {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--black);
  z-index: 4;
  transform-origin: top center;
}
.reel__bar--top    { top: 0;    height: 13%; transform-origin: top center; }
.reel__bar--bottom { bottom: 0; height: 13%; transform-origin: bottom center; }

/* Video fills the frame */
.reel__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.reel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

/* Multi-layer overlay — dark at edges, open in centre */
.reel__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(8,8,9,0.18) 0%, rgba(8,8,9,0.6) 100%),
    linear-gradient(to bottom, rgba(8,8,9,0.45) 0%, transparent 25%, transparent 75%, rgba(8,8,9,0.55) 100%);
  z-index: 1;
}

/* Film grain on the video */
.reel__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.055;
  pointer-events: none;
  z-index: 2;
}

/* Overlay text */
.reel__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 2rem;
}

.reel__label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.375rem;
  opacity: 0;
}

.reel__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(8,8,9,0.7);
  opacity: 0;
}

.reel__headline em {
  font-style: italic;
  color: var(--gold);
}

/* Thin gold rule below headline */
.reel__rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 2.25rem;
}

@media (max-width: 640px) {
  .reel { height: 80vh; }
  .reel__bar--top,
  .reel__bar--bottom { height: 10%; }
}


/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--black-muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--charcoal);
  border: 1px solid rgba(237, 233, 224, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  padding-top: 0;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--gold-border), 0 0 30px rgba(192, 154, 69, 0.06);
}

.card__accent {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin-bottom: var(--space-md);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.875rem;
}

.card__text { font-size: 0.9375rem; color: var(--cream-muted); line-height: 1.8; }


/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  position: relative;
  overflow: hidden;
}

/* Pure CSS atmospheric background — no image */
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192, 154, 69, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(192, 154, 69, 0.03) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.why-us .container { position: relative; z-index: 1; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.pillar {
  border-left: 1px solid var(--gold-border);
  padding-left: 1.75rem;
  padding-block: 0.375rem;
  transition: border-color var(--t);
}
.pillar:hover { border-left-color: var(--gold); }

.pillar__number {
  display: block;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.625rem;
}

.pillar__text { font-size: 0.9375rem; color: var(--cream-muted); line-height: 1.8; }


/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--black-muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: var(--space-md) 1.25rem;
  background: var(--charcoal);
  border: 1px solid rgba(237, 233, 224, 0.05);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-med), transform var(--t-med);
}
.step:hover { border-color: var(--gold-border); transform: translateY(-3px); }

.step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  transition: background var(--t), border-color var(--t);
}
.step:hover .step__num { background: var(--gold-subtle); border-color: var(--gold); }

.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.625rem;
}
.step__text { font-size: 0.9375rem; color: var(--cream-muted); line-height: 1.8; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--black-soft); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact__copy .section-label,
.contact__copy .section-title,
.contact__copy .section-sub { text-align: left; }

.contact__copy .section-title { margin-bottom: var(--space-sm); }
.contact__copy .section-sub   { margin-bottom: var(--space-md); }

.contact__list { display: flex; flex-direction: column; gap: 0.75rem; }

.contact__list li {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
}
.contact__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.contact__form textarea { resize: vertical; min-height: 130px; }


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background: var(--black);
  border-top: 1px solid rgba(192, 154, 69, 0.1);
  border-bottom: 1px solid rgba(192, 154, 69, 0.1);
  background-image: radial-gradient(ellipse at 50% 50%, rgba(192, 154, 69, 0.06) 0%, transparent 60%);
}

.cta__inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta .section-label { margin-bottom: 1.125rem; }

.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.cta__sub {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.85;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding-block: var(--space-lg);
  border-top: none;
  position: relative;
}

/* Gold gradient rule at top of footer */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold) 50%, var(--gold-border) 70%, transparent 100%);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.footer__logo {
  display: block;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer__tagline { font-size: 0.875rem; color: var(--gray-mid); letter-spacing: 0.02em; }

.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.25rem; }

.footer__link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 233, 224, 0.35);
  transition: color var(--t);
}
.footer__link:hover { color: var(--gold); }

.footer__copy { font-size: 0.78rem; color: rgba(237, 233, 224, 0.18); letter-spacing: 0.04em; }

.hidden { display: none !important; }


/* ============================================================
   GOLDEN PRESENCE — 3D, Light Rays, Shimmer, Video Contact
   ============================================================ */

/* ── Gold Shimmer Text ──────────────────────────────────── */
.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold-dark)  0%,
    var(--gold)       20%,
    #f5d97a           45%,
    var(--gold)       70%,
    var(--gold-dark) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s linear infinite;
  font-style: italic;
}

@keyframes goldShimmer {
  from { background-position: 300% center; }
  to   { background-position: -300% center; }
}


/* ── Hero Golden Light Rays ─────────────────────────────── */
.hero__rays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__ray {
  position: absolute;
  top: -8%;
  width: 1px;
  height: 90%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(192, 154, 69, 0) 8%,
    rgba(192, 154, 69, 0.4) 48%,
    rgba(192, 154, 69, 0.12) 78%,
    transparent 100%
  );
  transform-origin: top center;
  opacity: 0;
  will-change: opacity;
}

.hero__ray:nth-child(1) {
  left: 16%;
  width: 2px;
  transform: rotate(-30deg);
  animation: goldRay 11s ease-in-out 0s infinite;
}
.hero__ray:nth-child(2) {
  left: 36%;
  width: 1px;
  transform: rotate(-10deg);
  animation: goldRay 15s ease-in-out 3.5s infinite;
}
.hero__ray:nth-child(3) {
  left: 51%;
  width: 1.5px;
  transform: rotate(4deg);
  animation: goldRay 12s ease-in-out 1.8s infinite;
}
.hero__ray:nth-child(4) {
  right: 28%;
  width: 1px;
  transform: rotate(20deg);
  animation: goldRay 14s ease-in-out 6s infinite;
}
.hero__ray:nth-child(5) {
  right: 10%;
  width: 2px;
  transform: rotate(34deg);
  animation: goldRay 10s ease-in-out 2.5s infinite;
}

@keyframes goldRay {
  0%   { opacity: 0; }
  12%  { opacity: 0.65; }
  38%  { opacity: 0.12; }
  58%  { opacity: 0.50; }
  82%  { opacity: 0.08; }
  100% { opacity: 0; }
}


/* ── Hero Floating Gold Orbs ────────────────────────────── */
.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
}

.hero__orb--1 {
  width: 4px; height: 4px;
  left: 11%; bottom: 38%;
  background: radial-gradient(circle, rgba(192, 154, 69, 1) 0%, transparent 100%);
  box-shadow: 0 0 8px 3px rgba(192, 154, 69, 0.45);
  animation: orbFloat 14s ease-in-out 0s infinite;
}
.hero__orb--2 {
  width: 3px; height: 3px;
  left: 42%; bottom: 22%;
  background: radial-gradient(circle, rgba(212, 174, 90, 1) 0%, transparent 100%);
  box-shadow: 0 0 5px 2px rgba(212, 174, 90, 0.4);
  animation: orbFloat 19s ease-in-out 5.5s infinite;
}
.hero__orb--3 {
  width: 5px; height: 5px;
  right: 20%; bottom: 48%;
  background: radial-gradient(circle, rgba(192, 154, 69, 0.9) 0%, transparent 100%);
  box-shadow: 0 0 10px 4px rgba(192, 154, 69, 0.3);
  animation: orbFloat 16s ease-in-out 11s infinite;
}
.hero__orb--4 {
  width: 2px; height: 2px;
  right: 38%; bottom: 18%;
  background: rgba(212, 174, 90, 1);
  box-shadow: 0 0 5px 2px rgba(192, 154, 69, 0.55);
  animation: orbFloat 21s ease-in-out 3s infinite;
}
.hero__orb--5 {
  width: 3px; height: 3px;
  left: 70%; bottom: 60%;
  background: radial-gradient(circle, rgba(192, 154, 69, 0.85) 0%, transparent 100%);
  box-shadow: 0 0 7px 2px rgba(192, 154, 69, 0.35);
  animation: orbFloat 17s ease-in-out 8s infinite;
}

@keyframes orbFloat {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  48%  { transform: translateY(-130px) translateX(18px); }
  55%  { transform: translateY(-155px) translateX(-4px); }
  90%  { opacity: 0.65; }
  100% { transform: translateY(-280px) translateX(12px); opacity: 0; }
}


/* ── Contact Cinematic Video Section ────────────────────── */
.contact--cinematic {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.contact__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
  filter: saturate(0.55) brightness(0.32);
  transform-origin: center center;
}

/* Deep multi-layer overlay — keeps text legible */
.contact__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(192, 154, 69, 0.09) 0%, transparent 55%),
    linear-gradient(
      to bottom,
      rgba(8,8,9,0.88) 0%,
      rgba(8,8,9,0.55) 20%,
      rgba(8,8,9,0.42) 50%,
      rgba(8,8,9,0.62) 80%,
      rgba(8,8,9,0.92) 100%
    ),
    linear-gradient(
      to right,
      rgba(8,8,9,0.72) 0%,
      rgba(8,8,9,0.18) 28%,
      rgba(8,8,9,0.18) 72%,
      rgba(8,8,9,0.72) 100%
    );
  z-index: 1;
}

.contact__video-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 2;
}

/* Animated golden light rays on the contact video */
.contact__video-rays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.contact__vray {
  position: absolute;
  top: -10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(192, 154, 69, 0) 15%,
    rgba(192, 154, 69, 0.22) 50%,
    rgba(192, 154, 69, 0.06) 80%,
    transparent 100%
  );
  transform-origin: top center;
  opacity: 0;
  will-change: opacity;
}

.contact__vray:nth-child(1) {
  left: 22%;
  width: 2px;
  transform: rotate(-20deg);
  animation: goldRay 13s ease-in-out 1s infinite;
}
.contact__vray:nth-child(2) {
  left: 55%;
  width: 1px;
  transform: rotate(6deg);
  animation: goldRay 17s ease-in-out 5s infinite;
}
.contact__vray:nth-child(3) {
  right: 18%;
  width: 1.5px;
  transform: rotate(25deg);
  animation: goldRay 11s ease-in-out 9s infinite;
}

.contact--cinematic .container {
  position: relative;
  z-index: 3;
}

/* Gold border aura on the form card */
.contact--cinematic .contact__form-wrap {
  position: relative;
}

.contact--cinematic .contact__form-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(192, 154, 69, 0.28) 0%,
    transparent 35%,
    transparent 65%,
    rgba(192, 154, 69, 0.18) 100%
  );
  z-index: -1;
  animation: formAuraPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes formAuraPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* Contact copy — gold accentuated list items on cinematic bg */
.contact--cinematic .contact__list li::before {
  color: var(--gold-light);
  text-shadow: 0 0 8px rgba(192, 154, 69, 0.6);
}

.contact--cinematic .contact__copy .section-title {
  text-shadow: 0 2px 40px rgba(8,8,9,0.8);
}


/* ── Gold Ambient Dust Canvas ───────────────────────────── */
.gold-dust-canvas {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}


/* ── 3D Card / Step Tilt ────────────────────────────────── */
.card,
.step {
  transform-style: preserve-3d;
}

.card {
  position: relative;
}

/* Radial gold glow on card hover */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 154, 69, 0.14) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 0;
}
.card:hover::after { opacity: 1; }


/* ── Button Sheen Sweep ─────────────────────────────────── */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -65%;
  width: 38%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-18deg);
  animation: btnSheen 6s ease-in-out 2.5s infinite;
  pointer-events: none;
}

@keyframes btnSheen {
  0%   { left: -65%; opacity: 0; }
  8%   { opacity: 1; }
  38%  { left: 130%; opacity: 0; }
  100% { left: 130%; opacity: 0; }
}


/* ── Enhanced Marquee Gold Dots ─────────────────────────── */
.marquee__dot {
  color: var(--gold);
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.7; text-shadow: none; }
  50%       { opacity: 1; text-shadow: 0 0 8px rgba(192, 154, 69, 0.6); }
}


/* ── Section Perspective Wrappers ───────────────────────── */
.services .container,
.why-us .container,
.process .container {
  perspective: 2200px;
  perspective-origin: 50% -10%;
}


/* ── Enhanced Why-Us Gold Pillar Accent ─────────────────── */
.pillar:hover .pillar__number {
  text-shadow: 0 0 12px rgba(192, 154, 69, 0.7);
}

.pillar__title {
  transition: color var(--t);
}
.pillar:hover .pillar__title {
  color: var(--gold-light);
}


/* ── Step Number Enhanced Glow ──────────────────────────── */
.step:hover .step__num {
  box-shadow: 0 0 20px 6px rgba(192, 154, 69, 0.25);
}


/* ── CTA Gold Haze ──────────────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(192, 154, 69, 0.05) 0%, transparent 68%);
  animation: ctaHaze 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cta .container { position: relative; z-index: 1; }

@keyframes ctaHaze {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1.2; transform: scale(1.08); }
}


/* ── Footer Gold Line Pulse ─────────────────────────────── */
.footer::before {
  animation: footerLine 6s ease-in-out infinite;
}

@keyframes footerLine {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; box-shadow: 0 0 6px rgba(192, 154, 69, 0.3); }
}


/* ============================================================
   CINEMATIC EFFECTS
   Scroll progress · Custom cursor · Reveal lines
   clip-path support · Magnetic button will-change
   ============================================================ */

/* Scroll progress bar — fixed top of viewport, driven by GSAP */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  pointer-events: none;
}

/* Custom cursor — only renders on true pointer devices */
.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--gold);
    z-index: 9999;
    transition: transform 0.25s, background 0.25s;
  }

  .cursor-ring {
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(192, 154, 69, 0.45);
    z-index: 9998;
    transition: width 0.3s var(--t-premium), height 0.3s var(--t-premium),
                border-color 0.3s, opacity 0.3s;
  }

  .cursor-ring.cursor-ring--active {
    width: 54px;
    height: 54px;
    border-color: rgba(192, 154, 69, 0.75);
  }

  .cursor-dot.cursor-dot--active {
    transform: translate(-50%, -50%) scale(1.8);
    background: var(--gold-light);
  }

  /* Hide OS cursor when custom cursor is active */
  body.custom-cursor,
  body.custom-cursor * { cursor: none !important; }
}

/* Section header reveal line — injected by JS */
.reveal-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: calc(var(--space-md) * 0.75) auto 0;
  transform-origin: left center;
}

/* Ensure clip-path animations don't clip box-shadow/overflow on containers */
.section-title,
.cta__headline {
  overflow: visible;
  will-change: clip-path, transform;
}

/* Magnetic buttons — hint browser for compositing */
.btn--primary,
.btn--gold {
  will-change: transform;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .contact__inner { grid-template-columns: 1fr; }

  .contact__copy .section-label,
  .contact__copy .section-title,
  .contact__copy .section-sub { text-align: center; }

  .contact__list { align-items: center; }
  .contact__list li { text-align: left; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8, 8, 9, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.5rem 1.75rem;
    gap: 0;
    border-bottom: 1px solid rgba(237, 233, 224, 0.05);
  }
  .nav__links.is-open { display: flex; }

  .nav__link {
    padding: 0.9375rem 0;
    border-bottom: 1px solid rgba(237, 233, 224, 0.04);
    font-size: 0.8125rem;
    color: var(--cream-muted);
  }
  .nav__link::after { display: none; }
  .nav__links .btn { margin-top: 1.125rem; width: 100%; text-align: center; }
  .nav__toggle { display: flex; }

  .section { padding-block: 5rem; }

  .hero__headline { font-size: clamp(2.75rem, 11vw, 3.5rem); }
  .hero__bg-text  { opacity: 0.015; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; text-align: center; }

  .statement__quote { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  .form-row { grid-template-columns: 1fr; }
  .pillars  { grid-template-columns: 1fr; }
  .steps    { grid-template-columns: 1fr; }
  .cards    { grid-template-columns: 1fr; }
}


/* ============================================================
   HERO VIDEO BACKGROUND — star constellation
   ============================================================ */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(0.38);
  will-change: transform;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(8,8,9,0.28) 0%, rgba(8,8,9,0.62) 100%),
    linear-gradient(to bottom, rgba(8,8,9,0.55) 0%, rgba(8,8,9,0.18) 30%, rgba(8,8,9,0.18) 70%, rgba(8,8,9,0.72) 100%);
}


/* ============================================================
   HERO ADDITIONS — microcopy & trust line
   ============================================================ */
.hero__microcopy {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: var(--space-sm);
}

.hero__trust {
  margin-top: 1.375rem;
  font-size: 0.8125rem;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
  max-width: 480px;
  text-align: center;
  line-height: 1.7;
}


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--black-soft); }

.problem__split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: var(--space-lg);
}

.problem__col {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.problem__col--bad  { border: 1px solid rgba(237, 233, 224, 0.06); }
.problem__col--good {
  border: 1px solid var(--gold-border);
  background: linear-gradient(145deg, var(--charcoal) 0%, rgba(192,154,69,0.04) 100%);
}

.problem__col-label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.problem__col--bad  .problem__col-label { color: var(--gray-mid); }
.problem__col--good .problem__col-label { color: var(--gold); }

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem__list li {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.65;
}

.problem__list--bad  li::before { content: '✗'; position: absolute; left: 0; color: rgba(255,80,80,0.55); }
.problem__list--good li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

.problem__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}

.problem__vs {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-border);
}


/* ── Funnel Flow ──────────────────────────────────────── */
.funnel-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3.5rem;
  padding: 2rem;
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
}

.funnel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
}

.funnel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: var(--gold-subtle);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.funnel-step:hover .funnel-icon {
  background: rgba(192,154,69,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(192,154,69,0.2);
}

.funnel-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.funnel-arrow {
  color: var(--gold);
  font-size: 1.25rem;
  opacity: 0.35;
  padding: 0 0.25rem;
  line-height: 1;
  padding-bottom: 1.5rem;
}


/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 820px;
  margin-inline: auto;
  margin-top: var(--space-sm);
}

.audience-tag {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  border-radius: 100px;
  background: rgba(192,154,69,0.06);
  border: 1px solid var(--gold-border);
  color: var(--cream-muted);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  cursor: default;
}
.audience-tag:hover {
  background: rgba(192,154,69,0.14);
  color: var(--cream);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.who-for__cta { text-align: center; margin-top: var(--space-lg); }


/* ============================================================
   WHY US — bottom statement block
   ============================================================ */
.why-us__bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(192,154,69,0.1);
  text-align: center;
}

.why-us__statement { max-width: 620px; margin-inline: auto; }

.why-us__statement-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.why-us__statement-body {
  font-size: 1.0625rem;
  color: var(--cream-muted);
  line-height: 1.85;
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--black-soft); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(237,233,224,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.pricing-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(192,154,69,0.07);
}

.pricing-card--featured {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, var(--charcoal) 0%, rgba(192,154,69,0.05) 100%);
}
.pricing-card--featured:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(192,154,69,0.12);
}

/* Radial glow on hover — same pattern as .card */
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 50% 0%, rgba(192,154,69,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 0;
}
.pricing-card:hover::after { opacity: 1; }
.pricing-card > * { position: relative; z-index: 1; }

.pricing-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}

.pricing-card__accent {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin-top: -2.5rem;
  margin-inline: -2rem;
  margin-bottom: 1.75rem;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pricing-card__price {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.pricing-card__best {
  font-size: 0.875rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(237,233,224,0.06);
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
.pricing-card__list li {
  font-size: 0.9rem;
  color: var(--cream-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.pricing-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* Care plan row */
.pricing-care {
  margin-top: 3rem;
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.pricing-care::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(192,154,69,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.pricing-care__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.pricing-care__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.pricing-care__price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.pricing-care__text {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 540px;
}

.pricing-care__notice {
  font-size: 0.8rem;
  color: var(--color-cream);
  opacity: 0.6;
  font-style: italic;
  margin-top: 0.75rem;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--black-muted); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(192,154,69,0.1);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--cream);
  transition: color var(--t);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--t-med), border-color var(--t), background var(--t);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--gold-subtle);
  border-color: var(--gold);
}
.faq-item summary:hover { color: var(--gold-light); }

.faq-item__a {
  font-size: 0.9375rem;
  color: var(--cream-muted);
  line-height: 1.85;
  padding-bottom: 1.5rem;
}


/* ============================================================
   CTA — two-button layout
   ============================================================ */
.cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   FORM SELECT STYLING
   ============================================================ */
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(237,233,224,0.1);
  color: var(--cream);
  padding: 0.9375rem 2.5rem 0.9375rem 1.25rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c09a45' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
}
.form-group select:focus {
  border-color: var(--gold-border);
  background-color: rgba(192,154,69,0.04);
}
.form-group select option {
  background: var(--charcoal);
  color: var(--cream);
}


/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 960px) {
  .problem__split {
    grid-template-columns: 1fr;
  }
  .problem__divider { display: none; }
  .pricing-care__inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .problem__split  { gap: 1rem; }
  .funnel-flow     { gap: 0.25rem; }
  .funnel-arrow    { transform: rotate(90deg); padding-bottom: 0; padding-inline: 0.75rem; }
  .pricing-cards   { grid-template-columns: 1fr; }
  .audience-tags   { gap: 0.5rem; }
  .audience-tag    { font-size: 0.62rem; padding: 0.5rem 1rem; }
  .faq-item summary { font-size: 1rem; }
  .cta__buttons    { flex-direction: column; align-items: stretch; }
  .cta__buttons .btn { width: 100%; text-align: center; }
}
