/* ═══════════════════════════════════════════════════
   BECKER v1 — SKELETON CREW EXPERIENCE
   Gold-tier. Premium. Cinematic.
   ═══════════════════════════════════════════════════ */

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

:root {
  /* Dark Canvas */
  --bg-deep: #0A0A0C;
  --bg-surface: #111114;
  --bg-elevated: #18181C;
  --bg-hover: #1F1F24;

  /* Text */
  --text-primary: #F0F0F2;
  --text-secondary: #7A7A82;
  --text-tertiary: #3E3E45;

  /* Skeleton Crew Accent — Gold */
  --skeleton-gold: hsl(38, 70%, 52%);
  --skeleton-gold-dim: hsl(38, 50%, 35%);
  --skeleton-gold-light: hsl(38, 65%, 65%);
  --skeleton-glow: hsl(38, 70%, 52% / 0.08);
  --skeleton-glow-strong: hsl(38, 70%, 52% / 0.2);

  /* Supporting */
  --gold: #D4A853;
  --lavender: hsl(280, 80%, 82%);

  /* Type */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 0.68, 0, 1.04);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Motion spring (generated via Motion MCP) */
  --spring-snappy: linear(0, 0.2459, 0.6526, 0.9468, 1.0764, 1.0915, 1.0585, 1.0219, 0.9993, 0.9914, 0.9921, 0.9957, 0.9988, 1.0004, 1);
  --spring-snappy-dur: 450ms;

  /* Layout */
  --page-max: 1400px;
  --page-pad: clamp(1.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─── PREMIUM FOCUS-VISIBLE RING ─────────────── */
:focus-visible {
  outline: 2px solid var(--skeleton-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--skeleton-gold);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ─── SHARED: REVEAL ANIMATION ────────────────── */
.js-motion .reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease,
              transform var(--spring-snappy-dur) var(--spring-snappy);
  transition-delay: var(--delay, 0s);
}

.js-motion .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.site-header.is-scrolled {
  background: hsl(240 5% 5% / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

.site-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__home {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.site-header__home:hover { color: var(--skeleton-gold); }

.site-header__nav {
  display: flex;
  gap: 2.25rem;
}

.site-header__nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--text-primary);
  letter-spacing: 0.16em;
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.site-header__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease;
}


/* ═══════════════════════════════════════════════════
   ATMOSPHERIC GRADIENT LAYER — GOLD TINT
   ═══════════════════════════════════════════════════ */
.sc-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sc-atmosphere__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

.sc-atmosphere__orb--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, hsl(38 70% 52% / 0.06) 0%, transparent 70%);
}

.sc-atmosphere__orb--2 {
  width: 500px;
  height: 500px;
  top: 40%;
  right: -10%;
  background: radial-gradient(circle, hsl(38 50% 40% / 0.05) 0%, transparent 70%);
}

.sc-atmosphere__orb--3 {
  width: 450px;
  height: 450px;
  bottom: -5%;
  left: 30%;
  background: radial-gradient(circle, hsl(30 60% 45% / 0.04) 0%, transparent 70%);
}


/* ═══════════════════════════════════════════════════
   SECTION DIVIDER GLOW
   ═══════════════════════════════════════════════════ */
.sc-section-glow {
  position: relative;
  height: 1px;
  background: transparent;
  overflow: visible;
}

.sc-section-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 120px;
  background: radial-gradient(ellipse, hsl(38 70% 52% / 0.04) 0%, transparent 70%);
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════ */
.sc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero background video */
.sc-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.sc-hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.sc-hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.5) 40%, rgba(10,10,12,0.85) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,12,0.9) 100%);
}

.sc-hero__ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, hsl(38 70% 52% / 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 30% 40%, hsl(38 50% 40% / 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.sc-hero__content {
  text-align: center;
  padding: 0 var(--page-pad);
  position: relative;
  z-index: 1;
}

.sc-hero__rule {
  width: min(400px, 60vw);
  height: 1px;
  background: var(--skeleton-gold);
  margin: 0 auto 2rem;
}

.sc-hero__kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #e0e0e4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.js-motion .sc-hero__kicker { opacity: 0; }

.sc-hero__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  color: var(--skeleton-gold);
  background: hsl(38 70% 52% / 0.1);
  border: 1px solid hsl(38 70% 52% / 0.2);
}

.sc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 9rem);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.sc-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--skeleton-gold-light);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-top: 1.5rem;
}

.sc-hero__tagline {
  margin-top: 1rem;
}

.sc-hero__tagline-serif {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

/* When Motion JS loads, hide hero elements for entrance animation */
.js-motion .sc-hero__rule { width: 0; will-change: width; }
.js-motion .sc-hero__badge { opacity: 0; will-change: opacity; }
.js-motion .sc-hero__title { opacity: 0; will-change: transform, opacity; }
.js-motion .sc-hero__sub { opacity: 0; will-change: transform, opacity; }
.js-motion .sc-hero__tagline { opacity: 0; }

/* ─── Hero Dates ─────────────────────────────── */
.sc-hero__dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.js-motion .sc-hero__date-pill {
  opacity: 0;
  will-change: transform, opacity;
}

.sc-hero__date-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: hsl(38 70% 52% / 0.08);
  border: 1px solid hsl(38 70% 52% / 0.18);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.sc-hero__date-city {
  font-weight: 600;
  color: var(--skeleton-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sc-hero__date-range {
  color: var(--text-secondary);
}

/* Scroll hint */
.sc-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.5s ease;
}

.js-motion .sc-hero__scroll-hint {
  opacity: 0;
}

.sc-hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--skeleton-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════
   SHARED: SECTION HEADING LINE
   ═══════════════════════════════════════════════════ */
.sc-section-line {
  display: block;
  width: 0;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, transparent, var(--skeleton-gold), transparent);
  will-change: width;
}


/* ═══════════════════════════════════════════════════
   SECTION 2: CINEMATIC EXPLAINER VIDEO
   ═══════════════════════════════════════════════════ */
.sc-explainer {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 10vw, 140px);
  background: linear-gradient(180deg, transparent 0%, hsl(240 8% 6% / 0.95) 40%, hsl(240 8% 6% / 0.95) 100%);
}

/* ─── Video Container ────────────────────────── */
.sc-explainer__video-wrap {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-explainer__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #050507;
  box-shadow:
    0 0 0 1px hsl(0 0% 100% / 0.05),
    0 40px 120px hsl(0 0% 0% / 0.6),
    0 0 100px hsl(38 70% 52% / 0.06);
}

.sc-explainer__video {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  border: 0;
  pointer-events: none;
  filter: saturate(0.98) contrast(1.03) brightness(0.94);
}

.sc-explainer__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 50%, rgba(5, 5, 7, 0.18) 70%, rgba(5, 5, 7, 0.6) 100%),
    linear-gradient(to bottom, rgba(5, 5, 7, 0.4) 0%, transparent 8%, transparent 90%, rgba(5, 5, 7, 0.7) 100%);
}

/* Motion initial state */
.js-motion .sc-explainer__video-frame {
  opacity: 0;
  will-change: transform, opacity;
}

/* ─── Sound Control ──────────────────────────── */
.sc-explainer__sound-ctrl {
  position: absolute;
  bottom: clamp(16px, 2.5vw, 28px);
  right: clamp(16px, 2.5vw, 28px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(0 0% 100% / 0.1);
  background: hsl(0 0% 0% / 0.5);
  color: hsl(0 0% 100% / 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 999px;
  padding: 0.6rem 1rem 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 300ms ease, background 300ms ease, color 300ms ease, box-shadow 300ms ease;
  pointer-events: auto;
}

.sc-explainer__sound-ctrl:hover {
  border-color: hsl(38 70% 52% / 0.4);
  background: hsl(0 0% 0% / 0.6);
  color: var(--text-primary);
  box-shadow: 0 0 30px hsl(38 70% 52% / 0.12);
}

.sc-explainer__sound-ctrl[aria-pressed="true"] {
  border-color: hsl(38 70% 52% / 0.5);
  background: hsl(38 70% 52% / 0.12);
  color: var(--skeleton-gold-light);
  box-shadow: 0 0 24px hsl(38 70% 52% / 0.15);
}

.sc-explainer__sound-icon { flex-shrink: 0; }

.sc-explainer__sound-icon--live { display: none; }
.sc-explainer__sound-ctrl[aria-pressed="true"] .sc-explainer__sound-icon--muted { display: none; }
.sc-explainer__sound-ctrl[aria-pressed="true"] .sc-explainer__sound-icon--live { display: block; }

/* ─── Copy Block (above video) ───────────────── */
.sc-explainer__copy {
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
  padding: 0 var(--page-pad);
  text-align: center;
}

.sc-explainer__kicker {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--skeleton-gold-light);
  margin-bottom: 0.875rem;
}

.sc-explainer__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

.sc-explainer__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

/* Motion initial state for copy */
.js-motion .sc-explainer__copy {
  opacity: 0;
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════
   SECTION 2: WHAT YOU GET (PILLARS)
   ═══════════════════════════════════════════════════ */
.sc-pillars {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-surface);
}

.sc-pillars__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-pillars__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.js-motion .sc-pillars__headline {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.sc-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── Pillar Card ────────────────────────────── */
.sc-pillar {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid hsl(0 0% 100% / 0.04);
  border-top: 2px solid hsl(38 70% 52% / 0.4);
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  will-change: transform;
  background: linear-gradient(170deg, hsl(38 50% 25% / 0.05) 0%, var(--bg-elevated) 40%);
}

.sc-pillar__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  background: radial-gradient(ellipse at bottom, hsl(38 70% 52% / 0.08) 0%, transparent 70%);
}

.sc-pillar:hover .sc-pillar__glow {
  opacity: 1;
}

.sc-pillar:hover {
  border-color: hsl(38 70% 52% / 0.25);
  box-shadow: 0 20px 60px hsl(38 70% 52% / 0.08);
}

.sc-pillar__number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--skeleton-gold-dim);
}

.sc-pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}

.sc-pillar__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}


/* ═══════════════════════════════════════════════════
   SECTION 3: THE EXPERIENCE (DAY-BY-DAY)
   ═══════════════════════════════════════════════════ */
.sc-days {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-deep);
}

.sc-days__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-days__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.js-motion .sc-days__headline {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.sc-days__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ─── Day Card ───────────────────────────────── */
.sc-day {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid hsl(0 0% 100% / 0.04);
  border-left: 3px solid hsl(38 70% 52% / 0.4);
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  will-change: transform;
}

.sc-day__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  background: radial-gradient(ellipse at left center, hsl(38 70% 52% / 0.05) 0%, transparent 60%);
}

.sc-day:hover .sc-day__glow {
  opacity: 1;
}

.sc-day:hover {
  border-left-color: hsl(38 70% 52% / 0.7);
  box-shadow: 0 12px 40px hsl(38 70% 52% / 0.06);
}

.sc-day__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.sc-day__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--skeleton-gold);
}

.sc-day__tag {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.625rem;
  color: var(--skeleton-gold-dim);
  background: hsl(38 70% 52% / 0.08);
  border: 1px solid hsl(38 70% 52% / 0.12);
}

.sc-day__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.sc-day__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 48rem;
}


/* ═══════════════════════════════════════════════════
   SECTION 4: WHO THIS IS FOR (Cards + CTA)
   ═══════════════════════════════════════════════════ */
.sc-audience {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-surface);
}

.sc-audience__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-audience__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  text-align: center;
}

.js-motion .sc-audience__headline {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.sc-audience__subheadline {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sc-audience__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sc-audience__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid hsl(0 0% 100% / 0.04);
  border-left: 2px solid hsl(38 70% 52% / 0.4);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sc-audience__card:hover {
  border-color: hsl(38 70% 52% / 0.3);
  box-shadow: 0 8px 32px hsl(38 70% 52% / 0.06);
}

.sc-audience__card-icon {
  flex-shrink: 0;
  color: var(--skeleton-gold);
  margin-top: 2px;
}

.sc-audience__card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.sc-audience__card:hover p {
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.sc-audience__cta-wrap {
  text-align: center;
}

/* ─── Shared Apply Button ────────────────────── */
.sc-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--skeleton-gold);
  color: #0A0A0C;
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sc-apply-btn:hover {
  box-shadow: 0 8px 40px hsl(38 70% 52% / 0.35);
}


/* ═══════════════════════════════════════════════════
   SECTION 5: VIDEO GALLERY
   ═══════════════════════════════════════════════════ */
.sc-gallery {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-deep);
}

.sc-gallery__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-gallery__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.js-motion .sc-gallery__headline {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.sc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.sc-gallery__item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #050507;
  will-change: transform;
}

.sc-gallery__item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════
   SECTION 6: PRICING & VALUE JUSTIFICATION
   ═══════════════════════════════════════════════════ */
.sc-pricing {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-surface);
}

.sc-pricing__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-pricing__intro {
  font-size: 1.375rem;
  line-height: 1.65;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.sc-pricing__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.sc-pricing__box {
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 1px solid hsl(0 0% 100% / 0.06);
}

.sc-pricing__box--anchor {
  background: var(--bg-elevated);
}

.sc-pricing__box--offer {
  background: linear-gradient(160deg, hsl(38 50% 20% / 0.2) 0%, hsl(38 70% 52% / 0.08) 100%);
  border-color: hsl(38 70% 52% / 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sc-pricing__box-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--skeleton-gold-dim);
  margin-bottom: 1.5rem;
}

.sc-pricing__line-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sc-pricing__line-items li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

.sc-pricing__line-items li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sc-pricing__line-items li span:last-child {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  margin-left: 1rem;
}

.sc-pricing__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid hsl(0 0% 100% / 0.08);
  font-size: 0.9375rem;
  font-weight: 600;
}

.sc-pricing__total-amount {
  color: hsl(0, 50%, 55%);
  font-size: 1.125rem;
}

.sc-pricing__total-amount s {
  text-decoration: line-through;
}

.sc-pricing__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--skeleton-gold);
  margin-bottom: 0.5rem;
}

.sc-pricing__price-sub {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ─── Checklist ──────────────────────────────── */
.sc-pricing__checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid hsl(0 0% 100% / 0.04);
}

.sc-pricing__check-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.sc-pricing__check-icon {
  flex-shrink: 0;
  color: var(--skeleton-gold);
}

/* ─── Guarantee ──────────────────────────────── */
.sc-pricing__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: hsl(38 70% 52% / 0.06);
  border: 1px solid hsl(38 70% 52% / 0.15);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.sc-pricing__guarantee svg {
  flex-shrink: 0;
  color: var(--skeleton-gold);
  margin-top: 2px;
}

.sc-pricing__guarantee p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--skeleton-gold-light);
}

/* ─── Bottom Copy ────────────────────────────── */
.sc-pricing__bottom-copy {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sc-pricing__bottom-headline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sc-pricing__bottom-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.sc-pricing__bottom-small {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-style: italic;
}


/* ═══════════════════════════════════════════════════
   SECTION 7: INLINE APPLICATION FORM
   ═══════════════════════════════════════════════════ */
.sc-application {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-deep);
}

.sc-application__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-application__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.js-motion .sc-application__headline {
  opacity: 0;
  will-change: transform, opacity, filter;
}

/* ─── Form Grid ──────────────────────────────── */
.sc-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.sc-form__field {
  grid-column: span 2;
}

.sc-form__field--half {
  grid-column: span 1;
}

.sc-form__field--full {
  grid-column: span 2;
}

.sc-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.sc-form__req {
  color: var(--skeleton-gold);
}

.sc-form__optional {
  color: var(--text-tertiary);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.sc-form__hint {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin-top: -0.25rem;
}

.sc-form__input,
.sc-form__select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid hsl(0 0% 100% / 0.08);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}

.sc-form__input::placeholder {
  color: var(--text-tertiary);
}

.sc-form__input:focus,
.sc-form__select:focus {
  border-color: var(--skeleton-gold);
  box-shadow: 0 0 0 3px hsl(38 70% 52% / 0.12);
}

.sc-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%237A7A82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ─── Order Summary ──────────────────────────── */
.sc-form__summary {
  padding: 1.5rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid hsl(0 0% 100% / 0.06);
  margin-bottom: 1.5rem;
}

.sc-form__summary-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--skeleton-gold-dim);
  margin-bottom: 1.25rem;
}

.sc-form__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

.sc-form__summary-row:last-child {
  border-bottom: none;
}

.sc-form__summary-row span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

.sc-form__summary-row--highlight {
  color: var(--text-primary);
}

.sc-form__summary-row--highlight span:last-child {
  color: var(--skeleton-gold);
  font-size: 1.125rem;
}

.sc-form__summary-row--muted {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ─── Terms Checkbox ─────────────────────────── */
.sc-form__terms {
  margin-bottom: 1rem;
}

.sc-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.sc-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sc-form__checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid hsl(0 0% 100% / 0.15);
  border-radius: 3px;
  background: var(--bg-elevated);
  margin-top: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.sc-form__checkbox:checked + .sc-form__checkbox-custom {
  background: var(--skeleton-gold);
  border-color: var(--skeleton-gold);
}

.sc-form__checkbox:checked + .sc-form__checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #0A0A0C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sc-form__terms-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.sc-form__guarantee-text {
  font-size: 0.875rem;
  color: hsl(145, 55%, 50%);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ─── Submit Button ──────────────────────────── */
.sc-form__submit {
  display: block;
  width: 100%;
  padding: 1.125rem;
  background: var(--skeleton-gold);
  color: #0A0A0C;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin-bottom: 1rem;
}

.sc-form__submit:hover {
  box-shadow: 0 8px 40px hsl(38 70% 52% / 0.35);
}

.sc-form__submit-note {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-tertiary);
  text-align: center;
}


/* ═══════════════════════════════════════════════════
   FINAL CTA BLOCK
   ═══════════════════════════════════════════════════ */
.sc-cta {
  padding: clamp(100px, 15vw, 200px) 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.sc-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  position: relative;
}

.sc-cta__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at center, hsl(38 70% 52% / 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.sc-cta__content {
  text-align: center;
  position: relative;
}

.sc-cta__label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--skeleton-gold-dim);
  margin-bottom: 1.5rem;
}

.sc-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.sc-cta__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.sc-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3.5rem;
  background: var(--skeleton-gold);
  color: #0A0A0C;
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sc-cta__button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: ctaShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

.sc-cta__button:hover {
  box-shadow: 0 12px 50px hsl(38 70% 52% / 0.4);
}


/* ═══════════════════════════════════════════════════
   DAY CARD ACTIVE STATE (click interaction)
   ═══════════════════════════════════════════════════ */
.sc-day.is-active {
  border-left-color: hsl(38 70% 52% / 0.9);
  box-shadow:
    0 0 40px hsl(38 70% 52% / 0.12),
    0 16px 60px hsl(38 70% 52% / 0.08);
}

.sc-day.is-active .sc-day__glow {
  opacity: 1;
  background: radial-gradient(ellipse at left center, hsl(38 70% 52% / 0.1) 0%, transparent 60%);
}


/* ═══════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════ */
.sc-faq {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg-deep);
}

.sc-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.sc-faq__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.js-motion .sc-faq__headline {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.sc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── FAQ Item ──────────────────────────────── */
.sc-faq__item {
  border-bottom: 1px solid hsl(0 0% 100% / 0.06);
  overflow: hidden;
  transition: background 0.3s ease;
}

.sc-faq__item:first-child {
  border-top: 1px solid hsl(0 0% 100% / 0.06);
}

.sc-faq__item:hover {
  background: hsl(260 10% 12% / 0.4);
}

/* Hidden items (revealed by JS) */
.sc-faq__item--hidden {
  display: none;
}

.sc-faq__item--hidden.is-revealed {
  display: block;
  opacity: 0;
  will-change: transform, opacity;
}

/* ─── FAQ Summary / Question ────────────────── */
.sc-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0.5rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  user-select: none;
  transition: color 0.3s ease;
}

.sc-faq__question::-webkit-details-marker {
  display: none;
}

.sc-faq__question::marker {
  display: none;
  content: '';
}

.sc-faq__question::after {
  content: '+';
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 1.5rem;
  font-size: 1.25rem;
  font-weight: 300;
  color: hsl(280, 80%, 72%);
  border: 1px solid hsl(280 60% 50% / 0.25);
  border-radius: 50%;
  transition: transform 0.35s var(--ease-out-expo),
              background 0.3s ease,
              color 0.3s ease;
}

.sc-faq__item[open] > .sc-faq__question::after {
  content: '\2212';
  transform: rotate(180deg);
  background: hsl(280 60% 50% / 0.12);
  color: hsl(280, 80%, 82%);
}

.sc-faq__question:hover {
  color: #ffffff;
}

.sc-faq__question:hover::after {
  background: hsl(280 60% 50% / 0.15);
  border-color: hsl(280 60% 50% / 0.4);
}

/* ─── FAQ Answer ────────────────────────────── */
.sc-faq__answer {
  overflow: hidden;
}

.sc-faq__answer p {
  padding: 0 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 680px;
}

/* ─── View All FAQs Button ──────────────────── */
.sc-faq__toggle-wrap {
  display: flex;
  justify-content: center;
  padding-top: 2.5rem;
}

.sc-faq__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: hsl(280, 80%, 75%);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid hsl(280 60% 50% / 0.3);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.sc-faq__toggle-btn:hover {
  background: hsl(280 60% 50% / 0.1);
  border-color: hsl(280 60% 50% / 0.5);
  color: hsl(280, 80%, 85%);
  box-shadow: 0 0 24px hsl(280 60% 50% / 0.12);
}


/* ─── INLINE CTA: APPLY NOW ──────────────────── */
.sc-inline-cta {
  display: flex;
  justify-content: center;
  padding-top: 3rem;
}

.sc-spot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 3rem;
  background: transparent;
  color: var(--skeleton-gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1.5px solid var(--skeleton-gold);
  cursor: pointer;
  box-shadow: 0 0 18px hsl(38 70% 52% / 0.15), inset 0 0 18px hsl(38 70% 52% / 0.04);
  will-change: transform, box-shadow;
}

/* ═══════════════════════════════════════════════════
   FOOTER (Global — matches index.html)
   ═══════════════════════════════════════════════════ */
.footer {
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  background: linear-gradient(180deg, hsl(260 5% 7%) 0%, var(--bg-deep) 100%);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  text-align: center;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

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

.footer__nav a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

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

.footer__social {
  display: flex;
  gap: 2rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}

.footer__social-link:hover {
  color: var(--lavender);
}

.footer__contact-line {
  padding-top: 1.25rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer__email {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer__email:hover {
  color: var(--gold);
}

.footer__inquiries {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.footer__bottom {
  padding-top: 0.75rem;
  text-align: center;
}

.footer__bottom span {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sc-pillars__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .sc-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 var(--page-pad);
    gap: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
  }

  .site-header__nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem var(--page-pad);
    gap: 0.25rem;
    background: hsl(240 5% 5% / 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(0 0% 100% / 0.04);
  }

  .site-header__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
  }

  .sc-explainer__video-frame {
    border-radius: 12px;
  }
  .sc-explainer__sound-label { display: none; }
  .sc-explainer__sound-ctrl {
    padding: 0.55rem;
  }

  .site-header__burger { display: flex; }

  .sc-pillars__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sc-day__header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sc-audience__cards {
    grid-template-columns: 1fr;
  }

  .sc-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sc-pricing__columns {
    grid-template-columns: 1fr;
  }

  .sc-form__grid {
    grid-template-columns: 1fr;
  }

  .sc-form__field--half {
    grid-column: span 1;
  }

  .sc-hero__dates {
    flex-direction: column;
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer__nav a,
  .footer__social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer__social {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .sc-hero__title {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .sc-explainer__headline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .sc-explainer__video-frame {
    border-radius: 10px;
  }

  .sc-cta__button {
    width: 100%;
    justify-content: center;
  }

  .sc-form__summary {
    padding: 1.25rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .sc-atmosphere__orb {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   TOUCH DEVICES
   ═══════════════════════════════════════════════════ */
@media (hover: none) {
  .sc-pillar__glow,
  .sc-day__glow {
    display: none;
  }

  .sc-pillar:hover,
  .sc-day:hover {
    box-shadow: none;
  }

  .sc-cta__button:hover,
  .sc-apply-btn:hover,
  .sc-form__submit:hover {
    box-shadow: none;
  }
}
