/* ============================================================
   VENZO LANDING — STYLES
   Structure: TOKENS → RESET → BASE → TYPOGRAPHY →
              LAYOUT → COMPONENTS → SECTIONS → ANIMATIONS → RESPONSIVE
============================================================ */


/* === TOKENS ===================================================
   All design tokens as CSS custom properties
   Source: 02_output_visual_system.md
============================================================ */

:root {

  /* Background colors */
  --bg-primary:           #0A0A0A;
  --bg-secondary:         #111111;

  /* Surface colors */
  --surface-primary:      #171717;
  --surface-secondary:    #1E1E1E;
  --surface-glass:        rgba(255, 255, 255, 0.03);

  /* Text colors */
  --text-primary:         #F5F0E8;
  --text-secondary:       #B8B0A5;
  --text-muted:           #7C746B;

  /* Brand accent colors */
  --brand-gold:           #C8A96E;
  --brand-gold-light:     #D8BE8D;
  --brand-bronze:         #8B6E4E;

  /* Border colors */
  --border-subtle:        rgba(200, 169, 110, 0.16);
  --border-strong:        rgba(200, 169, 110, 0.28);
  --border-divider:       rgba(139, 110, 78, 0.15);

  /* Typography: font families */
  --font-serif:           'Playfair Display', Georgia, serif;
  --font-serif-elegant:   'Cormorant Garamond', Georgia, serif;
  --font-sans:            'Inter', system-ui, sans-serif;

  /* Typography: font sizes (desktop) */
  --fs-display:           clamp(48px, 6vw, 72px);
  --fs-h1:                clamp(34px, 4vw, 48px);
  --fs-h2:                clamp(28px, 3vw, 40px);
  --fs-subheadline:       clamp(22px, 2.5vw, 30px);
  --fs-body-lg:           18px;
  --fs-body:              16px;
  --fs-body-sm:           14px;
  --fs-caption:           12px;
  --fs-numeric-lg:        clamp(32px, 4.5vw, 56px);
  --fs-numeric-sm:        32px;

  /* Typography: line heights */
  --lh-display:           1.0;
  --lh-heading:           1.1;
  --lh-subheading:        1.28;
  --lh-body:              1.72;
  --lh-body-sm:           1.6;

  /* Typography: letter spacing */
  --ls-display:           -0.02em;
  --ls-heading:           -0.01em;
  --ls-eyebrow:            0.14em;
  --ls-button:             0.04em;
  --ls-body:               0em;

  /* Spacing scale (base unit 8px) */
  --space-xs:     8px;
  --space-sm:    16px;
  --space-md:    24px;
  --space-lg:    32px;
  --space-xl:    48px;
  --space-2xl:   64px;
  --space-3xl:   96px;
  --space-4xl:  128px;
  --space-5xl:  160px;

  /* Layout */
  --container-max:        1200px;
  --container:            min(1200px, calc(100vw - 64px));
  --container-mobile:     calc(100vw - 44px);

  /* Border radius */
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card:    0 12px 40px rgba(0, 0, 0, 0.28);
  --shadow-button:  0 4px 16px rgba(200, 169, 110, 0.20);

  /* Transitions */
  --transition-fast:    150ms ease;
  --transition-base:    260ms ease;
  --transition-slow:    400ms ease;
  --transition-reveal:  600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index layers */
  --z-base:        0;
  --z-card:       10;
  --z-overlay:   100;
  --z-nav:       200;
  --z-modal:     300;

  /* ── GRAIN / NOISE ──────────────────────────────────────── */
  --grain-opacity:         0.032;
  --grain-opacity-hero:    0.048;
  --grain-size:            180px;

  /* ── GLOW COLORS ────────────────────────────────────────── */
  --glow-gold:             rgba(200, 169, 110, 0.18);
  --glow-gold-strong:      rgba(200, 169, 110, 0.32);
  --glow-gold-text:        rgba(200, 169, 110, 0.45);
  --glow-warm-white:       rgba(245, 240, 232, 0.06);

  /* ── SHIMMER ANIMATION ──────────────────────────────────── */
  --shimmer-duration:      1.6s;
  --shimmer-easing:        cubic-bezier(0.4, 0, 0.6, 1);
  --shimmer-angle:         105deg;

  /* ── DEPTH SHADOWS (CARD ELEVATION LEVELS) ─────────────── */
  --shadow-elevation-1:    0 2px 8px rgba(0, 0, 0, 0.20),
                           0 0 0 1px rgba(200, 169, 110, 0.08);
  --shadow-elevation-2:    0 8px 24px rgba(0, 0, 0, 0.32),
                           0 0 0 1px rgba(200, 169, 110, 0.14);
  --shadow-elevation-3:    0 16px 48px rgba(0, 0, 0, 0.44),
                           0 0 20px rgba(200, 169, 110, 0.10),
                           0 0 0 1px rgba(200, 169, 110, 0.20);

  /* ── TEXT GRADIENT (HEADLINE GOLD TREATMENT) ───────────── */
  --text-gradient-gold-start:  #D8BE8D;
  --text-gradient-gold-mid:    #C8A96E;
  --text-gradient-gold-end:    #A88850;

  /* ── NUMBER GLOW PULSE ──────────────────────────────────── */
  --number-glow-duration:  3.2s;
  --number-glow-min:       rgba(200, 169, 110, 0.0);
  --number-glow-max:       rgba(200, 169, 110, 0.55);

  /* ── DIVIDER REVEAL ─────────────────────────────────────── */
  --divider-reveal-duration: 300ms;
  --divider-reveal-easing:   cubic-bezier(0.16, 1, 0.3, 1);
}


/* === RESET ====================================================
   Minimal box-model and structural reset
============================================================ */

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

html {
  scroll-behavior: smooth;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}


/* === BASE ====================================================
   Body, html, global document settings
============================================================ */

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  overflow-x: hidden;
}

.container {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}


/* === TYPOGRAPHY ==============================================
   All typographic utility classes
============================================================ */

.text-display {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  color: var(--text-primary);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.text-h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  font-feature-settings: "kern" 1, "liga" 1;
}

.text-h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--text-primary);
}

.text-subheadline {
  font-family: var(--font-serif-elegant);
  font-size: var(--fs-subheadline);
  font-weight: 300;
  line-height: var(--lh-subheading);
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.text-closing {
  font-family: var(--font-serif-elegant);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  text-align: center;
  text-shadow: 0 0 40px rgba(200, 169, 110, 0.08);
  opacity: 0.92;
}

.text-body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-secondary);
}

.text-body-lg {
  font-size: var(--fs-body-lg);
  line-height: 1.78;
}

.text-body-sm {
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: 400;
  line-height: var(--lh-body-sm);
  color: var(--text-secondary);
}

.text-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-gold);
  opacity: 0.70;
  text-shadow: 0 0 20px rgba(200, 169, 110, 0.30);
}

.text-numeric {
  font-family: var(--font-serif);
  font-size: var(--fs-numeric-lg);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--brand-gold);
  font-feature-settings: "tnum" 1;
}

.text-numeric-sm {
  font-family: var(--font-serif);
  font-size: var(--fs-numeric-sm);
  font-weight: 600;
  line-height: 1.0;
  color: var(--brand-gold);
  font-feature-settings: "tnum" 1;
}

.text-button {
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: var(--ls-button);
  text-transform: none;
}


/* === LAYOUT ==================================================
   Grid and flex utility helpers
============================================================ */

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header .text-eyebrow {
  margin-bottom: var(--space-sm);
}

.section-header .text-h1 {
  margin-top: var(--space-md);
}

.section-header--centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-2xl);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.button-group {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* === COMPONENTS ==============================================
   Buttons, cards, chips, dividers, FAQ, timeline, pricing
============================================================ */

/* --- Buttons --- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-gold);
  color: #0F0E0C;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  height: 52px;
  padding: 0 36px;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: var(--ls-button);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.btn-primary:hover {
  background-color: var(--brand-gold-light);
  border-color: rgba(200, 169, 110, 0.4);
  box-shadow: var(--shadow-button);
  transform: translateY(-1px);
}

.btn-primary:active {
  background-color: var(--brand-gold);
  transform: translateY(0);
  box-shadow: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  border-radius: var(--radius-sm);
  height: 52px;
  padding: 0 36px;
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  letter-spacing: var(--ls-button);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.btn-secondary:hover {
  background-color: rgba(200, 169, 110, 0.08);
  border-color: var(--brand-gold-light);
  color: var(--brand-gold-light);
}

.btn-secondary:active {
  background-color: rgba(200, 169, 110, 0.05);
}

/* --- Chips --- */

.chip {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  padding: var(--space-xs) var(--space-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.0;
  color: var(--text-secondary);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.chip:hover {
  border-color: rgba(200, 169, 110, 0.16);
  background-color: rgba(255, 255, 255, 0.07);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

/* --- Section Dividers --- */

.section-divider--short {
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--brand-gold);
  opacity: 0.40;
  margin: var(--space-sm) 0;
}

.section-header--centered .section-divider--short {
  margin: var(--space-sm) auto;
}

/* --- Experience Cards (Section 2) --- */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.card-experience {
  position: relative;
  background-color: var(--surface-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-lg) var(--space-xl);
  overflow: hidden;
  transform: translateY(0);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.card-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--brand-gold);
  opacity: 0.7;
  z-index: 2;
}

.card-experience::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(200, 169, 110, 0.07) 50%,
    transparent 100%
  );
  transform: translateX(-140%) skewX(-12deg);
  pointer-events: none;
  z-index: 1;
}

.card-experience:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-elevation-2);
  transform: translateY(-2px);
  will-change: transform;
}

.card-experience:hover::after {
  animation: shimmerSweep var(--shimmer-duration) var(--shimmer-easing) 1;
}

.card-experience__number {
  display: block;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 28px var(--glow-gold-text);
}

.card-experience__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.card-experience__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* --- Scenario Cards (Section 4) --- */

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.card-scenario {
  background-color: var(--surface-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: var(--space-xl);
  min-height: 280px;
  transform: translateY(0);
  transition:
    border-color var(--transition-base),
    background-color var(--transition-slow),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.card-scenario:hover {
  border-color: var(--border-strong);
  background-color: var(--surface-secondary);
  box-shadow: var(--shadow-elevation-2);
  transform: translateY(-3px);
}

.card-scenario__icon {
  width: 32px;
  height: 32px;
  color: var(--brand-gold);
  opacity: 0.65;
  margin-bottom: var(--space-lg);
  transition: opacity var(--transition-base), filter var(--transition-base);
}

.card-scenario:hover .card-scenario__icon {
  opacity: 1.0;
  filter: drop-shadow(0 0 12px rgba(200, 169, 110, 0.50));
}

.card-scenario__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.card-scenario__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- Pricing Cards (Section 5) --- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.card-pricing {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 40px 36px;
  min-height: 360px;
  transform: translateY(0);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.card-pricing:hover {
  box-shadow: var(--shadow-elevation-2);
  transform: translateY(-2px);
}

.card-pricing--featured {
  background-color: var(--surface-secondary);
  border: 1px solid var(--border-strong);
  border-top: 2px solid var(--brand-gold);
  box-shadow:
    inset 0 0 60px rgba(200, 169, 110, 0.04),
    inset 0 1px 0 rgba(200, 169, 110, 0.12);
}

.card-pricing--featured:hover {
  box-shadow:
    inset 0 0 60px rgba(200, 169, 110, 0.07),
    inset 0 1px 0 rgba(200, 169, 110, 0.18),
    var(--shadow-elevation-3);
}

.card-pricing--featured .card-pricing__price {
  background: linear-gradient(135deg, #D8BE8D 0%, #C8A96E 50%, #B8985E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-gold);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200,169,110,0.20) 0%, rgba(200,169,110,0.10) 100%);
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: var(--space-md);
}

.card-pricing__header {
  margin-bottom: var(--space-lg);
}

.card-pricing__meta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.card-pricing__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
}

.card-pricing__price {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-divider);
  line-height: 1.3;
}

.card-pricing__price--gold {
  color: var(--brand-gold);
}

.card-pricing__per {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.card-pricing__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-secondary);
  flex: 1;
}

/* --- Benefits List (Section 6) --- */

.benefit-list {
  max-width: 900px;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-divider);
  position: relative;
  transition: background-color var(--transition-slow);
}

.benefit-row:first-child {
  border-top: 1px solid var(--border-divider);
}

.benefit-row:hover {
  background-color: rgba(200, 169, 110, 0.02);
}

.benefit-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(to right, var(--brand-gold), transparent);
  opacity: 0.35;
  transition: width var(--divider-reveal-duration) var(--divider-reveal-easing);
}

.benefit-row:hover::after {
  width: 100%;
}

.benefit-row__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 240px;
  line-height: 1.2;
  position: relative;
  padding-left: 0;
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.benefit-row:hover .benefit-row__title {
  color: var(--brand-gold-light);
  padding-left: 12px;
}

.benefit-row__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background-color: var(--brand-gold);
  opacity: 0;
  transition: height var(--transition-base), opacity var(--transition-base);
}

.benefit-row:hover .benefit-row__title::before {
  height: 100%;
  opacity: 0.6;
}

.benefit-row__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-secondary);
  flex: 1;
}

/* --- Timeline Step Cards (Section 7) --- */

.timeline-wrapper {
  overflow: hidden;
  padding: 0 calc((100vw - min(1200px, calc(100vw - 64px))) / 2);
}

.timeline-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 calc((100vw - min(1200px, calc(100vw - 64px))) / 2);
  padding-bottom: var(--space-md);
}

.timeline-track::-webkit-scrollbar {
  display: none;
}

.step-card {
  flex-shrink: 0;
  width: 280px;
  background-color: var(--surface-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 40px 36px;
  min-height: 320px;
  scroll-snap-align: start;
  transform: translateY(0);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.step-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-elevation-2);
  transform: translateY(-2px);
}

.step-card__number {
  display: block;
  margin-bottom: var(--space-md);
  animation: numberGlowPulse var(--number-glow-duration) ease-in-out infinite;
  animation-play-state: paused;
}

.step-card.is-visible .step-card__number {
  animation-play-state: running;
  will-change: text-shadow;
}

.step-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.step-card__body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
}

.timeline-connector {
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--brand-gold), transparent);
  opacity: 0.30;
  align-self: center;
  position: relative;
  overflow: hidden;
}

.timeline-connector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--brand-gold), var(--brand-gold-light));
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover + .timeline-connector::after {
  transform: translateX(0);
}

.timeline-progress-bar {
  height: 1px;
  background-color: var(--border-divider);
  margin: var(--space-md) calc((100vw - min(1200px, calc(100vw - 64px))) / 2) 0;
  overflow: hidden;
}

.timeline-progress-fill {
  height: 100%;
  width: 0%;
  background-color: var(--brand-gold);
  transition: width 150ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Tag Pills (Section 10) --- */

.tag-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  background-color: var(--surface-primary);
  border: 1px solid var(--border-subtle);
  border-left: 2px solid rgba(200, 169, 110, 0.35);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.0;
  transition:
    border-color var(--transition-base),
    background-color var(--transition-base),
    color var(--transition-fast),
    transform var(--transition-base);
}

.tag-pill:hover {
  border-left-color: rgba(200, 169, 110, 0.70);
  border-color: rgba(200, 169, 110, 0.22);
  background-color: rgba(200, 169, 110, 0.05);
  color: var(--text-primary);
  transform: translateX(4px);
}

/* --- FAQ Accordion (Section 11) --- */

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

.faq-row {
  border-bottom: 1px solid var(--border-divider);
}

.faq-row:first-child {
  border-top: 1px solid var(--border-divider);
}

.faq-row__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) 0;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  gap: var(--space-md);
  transition: background-color var(--transition-fast);
}

.faq-row__trigger:hover {
  background-color: rgba(200, 169, 110, 0.02);
}

.faq-row--open .faq-row__trigger {
  background-color: rgba(200, 169, 110, 0.025);
}

.faq-row__question {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-row__trigger:hover .faq-row__question {
  color: var(--brand-gold-light);
}

.faq-row__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1;
  transition:
    transform var(--transition-base),
    color var(--transition-base);
}

.faq-row--open .faq-row__icon {
  color: var(--brand-gold);
  transform: rotate(45deg);
}

.faq-row__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows 380ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 280ms ease 60ms;
}

.faq-row__answer > * {
  min-height: 0;
  overflow: hidden;
}

.faq-row__answer-inner {
  padding-bottom: var(--space-xl);
}

.faq-row__answer p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--text-secondary);
}

.faq-row__answer-inner--blocks > p + p {
  margin-top: var(--space-sm);
}

.faq-row__answer-inner--blocks strong {
  font-weight: 600;
  color: var(--text-primary);
}

.faq-row--open .faq-row__answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transition:
    grid-template-rows 400ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease 50ms;
}

/* --- Certificate Mockup (Section 9) --- */

.certificate-mockup {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1.6 / 1;
  background: linear-gradient(135deg, #0C0B07 0%, #17130A 30%, #1E190D 55%, #17130A 75%, #0C0B07 100%);
  border: 1px solid rgba(200, 169, 110, 0.28);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(200, 169, 110, 0.28),
    0 8px 32px rgba(0, 0, 0, 0.40),
    0 0 60px rgba(120, 88, 36, 0.08);
  transition: box-shadow var(--transition-base);
}

.certificate-mockup:hover {
  box-shadow:
    0 0 0 1px rgba(200, 169, 110, 0.40),
    0 12px 40px rgba(0, 0, 0, 0.50),
    0 0 80px rgba(120, 88, 36, 0.14);
}

.certificate-mockup::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(200, 169, 110, 0.16);
  border-radius: 2px;
  pointer-events: none;
  z-index: 3;
}

.certificate-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245, 240, 232, 0.06) 40%,
    rgba(200, 169, 110, 0.10) 50%,
    rgba(245, 240, 232, 0.06) 60%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none;
  z-index: 2;
}

.certificate-mockup:hover::after {
  animation: certificateShimmer 1.4s cubic-bezier(0.4, 0, 0.6, 1) 1;
}

.certificate-mockup__inner {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
  z-index: 4;
}

/* .certificate-mockup__inner is already set above with z-index */

.certificate-mockup__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.certificate-mockup__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.certificate-mockup__divider {
  width: 40px;
  height: 1px;
  background-color: var(--brand-gold);
  opacity: 0.4;
  margin: var(--space-sm) auto;
}

.certificate-mockup__desc {
  font-family: var(--font-serif-elegant);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.certificate-mockup__city {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* === SECTIONS ================================================
   Section-specific layout and styling
============================================================ */

/* --- Header / Nav --- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
  transition:
    background-color var(--transition-base),
    border-color 260ms ease,
    backdrop-filter var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(8, 7, 5, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-lg);
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  text-shadow: 0 0 24px rgba(200, 169, 110, 0.15);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__cta {
  flex-shrink: 0;
  height: 40px;
  padding: 0 20px;
  font-size: 13px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* --- Section 1: Hero --- */

.section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: var(--space-5xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.92) contrast(1.04);
}

.hero-bg__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
  opacity: var(--grain-opacity-hero);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  /* Баланс: фото читается, текст остаётся контрастным */
  background:
    radial-gradient(
      ellipse 100% 130% at 20% 44%,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.2) 48%,
      transparent 72%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.28) 44%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.14) 36%,
      rgba(0, 0, 0, 0.62) 74%,
      rgba(0, 0, 0, 0.82) 100%
    );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 120px;
}

.hero-eyebrow {
  margin-bottom: var(--space-md);
  color: var(--brand-gold);
  opacity: 0.88;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.65),
    0 0 16px rgba(200, 169, 110, 0.3);
  letter-spacing: 0.18em;
}

.hero-headline {
  margin-bottom: var(--space-md);
  background: linear-gradient(
    165deg,
    #D8BE8D 0%,
    #F5F0E8 35%,
    #C8A96E 65%,
    #A88850 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-primary);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.65));
}

.hero-subheadline {
  max-width: 560px;
  margin-bottom: var(--space-xl);
  font-size: clamp(20px, 2.2vw, 26px);
  opacity: 0.94;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.65),
    0 1px 2px rgba(0, 0, 0, 0.55);
}

/* Чипы на фото: чуть плотнее фон, иначе теряются при светлее scrim */
.section-hero .chip {
  background-color: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(245, 242, 236, 0.95);
}

.section-hero .chip:hover {
  background-color: rgba(0, 0, 0, 0.42);
  border-color: rgba(200, 169, 110, 0.22);
}

/* --- Section 2: Experience --- */

.section-experience {
  background-color: var(--bg-secondary);
}

/* --- Section 3: About --- */

.section-about {
  background-color: var(--bg-primary);
}

.about-split {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-split__content .text-eyebrow {
  margin-bottom: var(--space-sm);
}

.about-split__content .text-h1 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-split__para {
  margin-bottom: var(--space-md);
}

.about-split__para:last-child {
  margin-bottom: 0;
}

.about-split__content .about-split__para:first-of-type {
  font-family: var(--font-serif-elegant);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  padding-left: var(--space-lg);
  border-left: 2px solid rgba(200, 169, 110, 0.40);
  line-height: 1.5;
}

.about-split__image {
  position: sticky;
  top: 100px;
  filter: drop-shadow(0 0 40px rgba(120, 88, 36, 0.10));
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #0F0E0A 0%, #18150C 35%, #141109 65%, #0F0E0A 100%);
  border: 1px solid rgba(200, 169, 110, 0.14);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.about-image-placeholder__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.18);
  user-select: none;
}

/* --- Section 4: Audience --- */

.section-audience {
  background-color: var(--bg-secondary);
}

/* --- Section 5: Formats / Pricing --- */

.section-formats {
  background-color: var(--bg-primary);
}

/* --- Section 6: Why Venzo --- */

.section-why {
  background-color: var(--bg-secondary);
}

/* --- Section 7: Timeline --- */

.section-timeline {
  background-color: var(--bg-primary);
  overflow: hidden;
}

.section-timeline .section-header {
  padding: 0 calc((100vw - min(1200px, calc(100vw - 64px))) / 2);
}

/* --- Section 8: Outcomes --- */

.section-outcomes {
  background-color: var(--bg-secondary);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.outcomes-grid::before,
.outcomes-grid::after {
  content: '';
  position: absolute;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200, 169, 110, 0.14) 20%,
    rgba(200, 169, 110, 0.14) 80%,
    transparent 100%
  );
}

.outcomes-grid::before {
  left: calc(33.333% - 0.5px);
}

.outcomes-grid::after {
  left: calc(66.666% - 0.5px);
}

.outcome-col {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-slow);
}

.outcome-col:hover {
  background-color: rgba(200, 169, 110, 0.02);
}

.outcome-col__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-lg);
  color: var(--brand-gold);
  opacity: 0.6;
  transition: opacity var(--transition-base), filter var(--transition-base);
}

.outcome-col:hover .outcome-col__icon {
  opacity: 1.0;
  filter: drop-shadow(0 0 10px rgba(200, 169, 110, 0.40));
}

.outcome-col__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.outcome-col__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text-secondary);
}

.outcomes-closing {
  max-width: 680px;
  margin: var(--space-3xl) auto 0;
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border-divider);
}

/* --- Section 9: Gift Certificates --- */

.section-gift {
  background-color: var(--bg-primary);
}

.gift-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.gift-split__content .text-h1 {
  margin-bottom: var(--space-xl);
}

.gift-split__body {
  margin-bottom: var(--space-xl);
}

.gift-split__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Section 10: Corporate --- */

.section-corporate {
  background-color: var(--bg-secondary);
}

.corporate-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.corporate-split__content .text-h1 {
  margin-bottom: var(--space-xl);
}

.corporate-split__body {
  margin-bottom: var(--space-xl);
}

.corporate-split__tags {
  padding-top: var(--space-lg);
}

/* --- Section 11: FAQ --- */

.section-faq {
  background-color: var(--bg-primary);
}

/* --- Section 12: Final CTA --- */

.section-final-cta {
  text-align: center;
  position: relative;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 100%,
      rgba(100, 72, 28, 0.18) 0%,
      rgba(80, 56, 20, 0.08) 45%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 120% 80% at 50% 50%,
      rgba(17, 17, 17, 1.0) 40%,
      rgba(12, 10, 6, 1.0) 100%
    );
}

.section-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.section-final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__headline {
  margin-bottom: var(--space-xl);
  font-size: clamp(52px, 6.5vw, 80px);
  background: linear-gradient(
    170deg,
    #FFFFFF 0%,
    #F5F0E8 30%,
    #D8BE8D 65%,
    #C8A96E 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--text-primary);
}

.final-cta__sub {
  margin-bottom: var(--space-2xl);
}

.final-cta__btn {
  height: 56px;
  padding: 0 48px;
  font-size: 15px;
}

/* --- Footer --- */

.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-divider);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-divider);
  margin-bottom: var(--space-xl);
}

.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xs);
}

.footer-brand__tagline {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-nav__link {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav__link:hover {
  color: var(--text-primary);
}

.footer-contact__link {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-contact__link:hover {
  color: var(--brand-gold);
}

.footer-bottom__copy {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}


/* === ANIMATIONS ==============================================
   Scroll reveal, hover transitions, FAQ toggle
============================================================ */

/* Scroll reveal — initial hidden state */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  var(--transition-reveal),
    transform var(--transition-reveal);
}

/* Staggered delay variants — updated timing for premium stagger */
[data-reveal][data-delay="1"] { transition-delay: 70ms; }
[data-reveal][data-delay="2"] { transition-delay: 140ms; }
[data-reveal][data-delay="3"] { transition-delay: 210ms; }
[data-reveal][data-delay="4"] { transition-delay: 280ms; }
[data-reveal][data-delay="5"] { transition-delay: 350ms; }
[data-reveal][data-delay="6"] { transition-delay: 420ms; }

/* Visible state — added by IntersectionObserver */
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .step-card__number,
  .card-experience__number {
    animation: none;
    text-shadow: 0 0 20px rgba(200, 169, 110, 0.25);
  }

  .certificate-mockup:hover::after {
    animation: none;
  }

  .card-experience:hover::after {
    animation: none;
    opacity: 0;
  }

  .benefit-row::after {
    transition: none;
    width: 0;
  }

  .timeline-connector::after {
    transition: none;
    transform: translateX(0);
  }
}


/* === KEYFRAMES ===============================================
   All @keyframes definitions
============================================================ */

@keyframes numberGlowPulse {
  0%   { text-shadow: 0 0 0px rgba(200, 169, 110, 0.0); }
  35%  { text-shadow: 0 0 16px rgba(200, 169, 110, 0.30); }
  50%  { text-shadow: 0 0 32px rgba(200, 169, 110, 0.55); }
  65%  { text-shadow: 0 0 16px rgba(200, 169, 110, 0.30); }
  100% { text-shadow: 0 0 0px rgba(200, 169, 110, 0.0); }
}

@keyframes shimmerSweep {
  0%   { transform: translateX(-140%) skewX(-12deg); }
  100% { transform: translateX(240%) skewX(-12deg); }
}

@keyframes certificateShimmer {
  0%   { transform: translateX(-120%) skewX(-12deg); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(220%) skewX(-12deg); opacity: 0; }
}


/* === RESPONSIVE ==============================================
   Media queries: tablet (768px) and mobile (375px)
============================================================ */

/* ── Tablet (≤ 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  .section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .card-experience,
  .card-scenario,
  .card-pricing {
    padding: var(--space-lg);
  }

  .about-split {
    grid-template-columns: 55% 1fr;
    gap: var(--space-xl);
  }

  .pricing-grid {
    gap: var(--space-md);
  }

  .card-pricing {
    padding: var(--space-lg) var(--space-md);
  }

  .benefit-row__title {
    min-width: 180px;
  }

  .gift-split,
  .corporate-split {
    gap: var(--space-xl);
  }
}

/* ── Mobile (≤ 768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    width: var(--container-mobile);
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  /* Typography overrides */
  .text-display {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.05;
  }

  .text-h1 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .text-subheadline {
    font-size: clamp(18px, 5vw, 22px);
  }

  .text-numeric {
    font-size: clamp(28px, 7vw, 40px);
  }

  .text-numeric-sm {
    font-size: 28px;
  }

  .text-body {
    font-size: 15px;
  }

  .text-body-lg {
    font-size: 16px;
  }

  /* Nav */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  /* Hero */
  .section-hero {
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 56px;
    align-items: flex-end;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-subheadline {
    margin-bottom: var(--space-lg);
  }

  .chip-row {
    gap: var(--space-xs);
  }

  .chip {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Experience grid: 1 column */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* About split: stacked */
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__image {
    order: -1;
    position: static;
  }

  .about-image-placeholder {
    aspect-ratio: 4 / 3;
  }

  /* Audience cards: 1 column */
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing cards: 1 column */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits: stacked */
  .benefit-row {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
  }

  .benefit-row__title {
    min-width: unset;
  }

  /* Timeline */
  .timeline-wrapper {
    padding: 0;
  }

  .timeline-track {
    padding: 0 22px;
    padding-bottom: var(--space-md);
    gap: var(--space-sm);
  }

  .step-card {
    width: min(280px, 80vw);
  }

  .section-timeline .section-header {
    padding: 0 22px;
  }

  .timeline-progress-bar {
    margin: var(--space-md) 22px 0;
  }

  /* Outcomes: 1 column */
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .outcomes-grid::before,
  .outcomes-grid::after {
    display: none;
  }

  .outcome-col {
    padding: var(--space-md);
  }

  /* Gift: stacked */
  .gift-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .gift-split__mockup {
    order: -1;
  }

  /* Corporate: stacked */
  .corporate-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .corporate-split__tags {
    padding-top: 0;
  }

  /* Final CTA */
  .final-cta__btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .footer-nav {
    gap: var(--space-md);
  }

  /* Section header */
  .section-header {
    margin-bottom: var(--space-xl);
  }
}

/* ── Small mobile (≤ 480px) ─────────────────────────────── */
@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .button-group {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }

  .card-pricing {
    padding: var(--space-md);
  }

  .faq-row__question {
    font-size: 15px;
  }
}
