/* ==========================================================================
   DESIGN SYSTEM — LA BELLE ET LA BÊTE
   Enchanted, warm, storybook feel · Conversion-focused
   ========================================================================== */

:root {
    /* Enchanted Palette */
    --night: #0c0a1d;
    --night-light: #1a1640;
    --gold: #d4a843;
    --gold-hover: #c09530;
    --gold-light: #fff8e7;
    --gold-glow: rgba(212, 168, 67, 0.25);
    --rose: #c4758b;
    --rose-light: #fdf0f3;
    --rose-dark: #a85c72;
    --cream: #faf6f0;
    --cream-dark: #f0e8da;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9f7f4;
    --gray-100: #f1ede6;
    --gray-200: #e4ddd3;
    --gray-300: #d1c8ba;
    --gray-400: #a89e90;
    --gray-500: #7d7468;
    --gray-600: #5a5247;
    --gray-700: #3d3630;
    --gray-800: #2a2420;
    --gray-900: #1a1510;

    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-gap: 120px;
    --container-width: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(12, 10, 29, 0.06);
    --shadow-md: 0 4px 16px rgba(12, 10, 29, 0.08);
    --shadow-lg: 0 12px 40px rgba(12, 10, 29, 0.12);
    --shadow-xl: 0 24px 60px rgba(12, 10, 29, 0.18);
    --shadow-gold: 0 8px 32px rgba(212, 168, 67, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(212, 168, 67, 0.15);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.navbar.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--gray-900); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--night) !important;
    padding: 10px 24px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    transition: all 0.2s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--gold-hover) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .nav-mobile-toggle span { background: var(--gray-800); }

/* ==========================================================================
   HERO — FULL WIDTH CINEMATIC
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(12, 10, 29, 0.7) 0%, rgba(12, 10, 29, 0.5) 40%, rgba(12, 10, 29, 0.85) 100%),
        linear-gradient(135deg, rgba(196, 117, 139, 0.15) 0%, transparent 50%);
}

/* Floating particles (rose petals / sparkles) */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; }
.particle:nth-child(3) { left: 55%; top: 30%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(4) { left: 75%; top: 70%; animation-delay: 4.5s; animation-duration: 8s; }
.particle:nth-child(5) { left: 90%; top: 40%; animation-delay: 2s; animation-duration: 10s; }
.particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 5.5s; animation-duration: 7s; }

@keyframes floatParticle {
    0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
    20% { opacity: 0.6; }
    50% { opacity: 0.3; }
    80% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-120px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.25);
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-badge-rose {
    font-size: 16px;
    color: var(--rose);
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.title-accent {
    font-size: clamp(32px, 4.2vw, 58px);
    font-weight: 800;
    font-style: normal;
    line-height: 1.1;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--white) 20%, var(--gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
    margin: 0 auto 36px;
}

.hero-subtitle strong {
    color: var(--gold);
}

.hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-proof-item {
    text-align: center;
}

.hero-proof-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-proof-item span {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
}

.hero-proof-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--night);
    background: var(--gold);
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    line-height: 1;
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-glow {
    box-shadow: 0 0 0 0 var(--gold-glow);
    animation: btnGlow 3s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px var(--gold-glow); }
    50% { box-shadow: 0 4px 40px rgba(212, 168, 67, 0.4); }
}

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-xl { padding: 20px 48px; font-size: 18px; }

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 16px 28px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    line-height: 1;
}

.btn-secondary-hero:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
}

/* Price strip */
.hero-price-strip {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

.price-sep {
    color: rgba(255,255,255,0.15);
    font-size: 14px;
}

.price-detail {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.price-hourly {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ==========================================================================
   SOCIAL PROOF BAR
   ========================================================================== */

.proof-bar {
    background: var(--night);
    padding: 32px 0;
}

.proof-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.proof-bar-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-bar-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================================================
   EMPATHY SECTION
   ========================================================================== */

.empathy {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.empathy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.empathy-title {
    text-align: left;
    color: var(--night);
}

.empathy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.empathy-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.empathy-icon {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--rose);
    margin-top: 2px;
}

.empathy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

.empathy-item strong {
    color: var(--gray-800);
}

.empathy-reveal {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 8px;
}

.empathy-reveal p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    font-style: italic;
}

.empathy-reveal strong {
    color: var(--gold-hover);
}

.empathy-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.empathy-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.empathy-image-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(12, 10, 29, 0.85), transparent);
}

.empathy-image-quote blockquote {
    font-family: var(--font-display);
    font-size: 15px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ==========================================================================
   TRANSFORMATION SECTION
   ========================================================================== */

.transformation {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.transform-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--gray-200);
}

.transform-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.transform-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: var(--night);
    border: none;
}

.transform-featured:hover {
    background: var(--night-light);
    border-color: transparent;
}

.transform-img-wrap {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.transform-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transform-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.transform-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 67, 0.12);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.transform-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.transform-content p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
}

.transform-content strong {
    color: var(--gold);
}

/* Before/After */
.transform-before-after {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.transform-before, .transform-after {
    flex: 1;
}

.transform-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.transform-before .transform-label {
    color: var(--gray-400);
}

.transform-after .transform-label {
    color: var(--gold);
}

.transform-before p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.4;
    font-style: italic;
}

.transform-after p {
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 600;
    line-height: 1.4;
}

.transform-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--night);
    display: flex;
    align-items: center;
    justify-content: center;
}

.transform-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.transform-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.transform-card strong {
    color: var(--gray-800);
}

.transform-card.transform-featured h3 { color: var(--white); }
.transform-card.transform-featured p { color: rgba(255,255,255,0.65); }
.transform-card.transform-featured strong { color: var(--gold); }

/* ==========================================================================
   PROGRAMME
   ========================================================================== */

.programme {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.programme-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
    align-items: start;
}

.programme-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.programme-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.programme-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(12, 10, 29, 0.7), transparent);
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

/* Timeline */
.programme-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-marker {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.timeline-finale .timeline-marker {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.3);
}

.timeline-chapter {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-600);
}

.timeline-finale .timeline-chapter { color: var(--night); }

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.timeline-day {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.timeline-content strong { color: var(--gray-800); }

.timeline-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--gold-hover);
}

/* Spectacle Grid */
.spectacle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.spectacle-photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.spectacle-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: transform 0.5s var(--ease);
}

.spectacle-photo:hover img { transform: scale(1.05); }
.spectacle-photo.main { border-radius: var(--radius-lg); }

.spectacle-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(12, 10, 29, 0.8), transparent);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* ==========================================================================
   WHY IT WORKS
   ========================================================================== */

.why-works {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--gray-200);
}

.why-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.why-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--rose-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--rose);
}

.why-featured {
    background: var(--night);
    border: none;
}

.why-featured:hover {
    background: var(--night-light);
    border-color: transparent;
}

.why-featured .why-icon-wrap {
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold);
}

.why-featured h3 { color: var(--white); }
.why-featured p { color: rgba(255,255,255,0.7); }
.why-featured strong { color: var(--gold); }

.why-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

.why-card.why-featured h3 { color: var(--white); }
.why-card.why-featured p { color: rgba(255,255,255,0.8); }
.why-card.why-featured strong { color: var(--gold); }

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-large { grid-row: 1 / 3; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.proof-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-md);
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 8px 0;
}

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

.proof-slide {
    flex: 0 0 280px;
    scroll-snap-align: center;
    margin: 0;
}

.proof-card {
    display: block;
    width: 100%;
    background: none;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s var(--ease);
}

.proof-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.proof-card img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease);
}

.carousel-btn:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--gold-hover);
}

/* Proof Modal */
.proof-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(12, 10, 29, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.proof-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-content {
    max-width: 90vw;
    max-height: 85vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}

.modal-nav:hover { background: rgba(255,255,255,0.2); }
.modal-nav.prev { left: 20px; }
.modal-nav.next { right: 20px; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    padding: var(--section-gap) 0;
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.3s var(--ease);
}

.faq-item.active .faq-icon {
    background: var(--gold);
    color: var(--night);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
}

/* ==========================================================================
   PRACTICAL INFO
   ========================================================================== */

.practical {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s var(--ease);
    border: 1px solid var(--gray-200);
}

.info-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.info-card-highlight {
    background: var(--gold-light);
    border: 1px solid rgba(212, 168, 67, 0.25);
}

.info-card-highlight:hover {
    border-color: var(--gold);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gray-600);
}

.info-card-highlight .info-icon {
    background: rgba(212, 168, 67, 0.15);
    color: var(--gold-hover);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.info-detail {
    font-size: 13px !important;
    color: var(--gray-500) !important;
    margin-top: 2px;
}

.info-price-amount {
    font-size: 28px;
    color: var(--gold-hover);
}

/* ==========================================================================
   INTERMEDIATE CTAs
   ========================================================================== */

.section-cta {
    text-align: center;
    padding: 48px 0 0;
}

.section-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--night);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.section-cta-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.section-cta-btn svg {
    transition: transform 0.3s ease;
}

.section-cta-btn:hover svg {
    transform: translateX(3px);
}

.section-cta-sub {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray-400);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--night);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-content {
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-chapter {
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    color: var(--rose);
    margin-bottom: 12px;
    display: block;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
}

.cta-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.cta-detail-item {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
}

.cta-price-block {
    margin-bottom: 28px;
}

.cta-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.cta-price-amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.cta-price-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    display: block;
}

/* Rose Petal Counter */
.rose-counter {
    margin-top: 24px;
    text-align: center;
}

.rose-petals-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.rose-petal-icon {
    width: 18px;
    height: 18px;
    border-radius: 50% 0 50% 50%;
    background: var(--rose);
    opacity: 0.9;
    transform: rotate(-45deg);
    transition: all 0.6s var(--ease);
    box-shadow: 0 0 8px rgba(196, 117, 139, 0.4);
}

.rose-petal-icon.fallen {
    background: rgba(255,255,255,0.08);
    opacity: 0.3;
    box-shadow: none;
    transform: rotate(-45deg) scale(0.8);
}

.rose-counter-text {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    display: block;
}

.rose-counter-text strong {
    color: var(--rose);
}

.cta-reassurance {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-top: 16px;
}

.cta-phone-link {
    color: rgba(255,255,255,0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.cta-phone-link:hover {
    color: var(--gold);
}

/* Info card phone/email links */
.info-phone-link,
.info-email-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.info-phone-link:hover,
.info-email-link:hover {
    color: var(--gold-hover);
}

.cta-image {
    position: relative;
    min-height: 400px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--night);
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.6);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(12, 10, 29, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.floating-cta.visible { transform: translateY(0); }

.floating-cta-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.floating-cta-text { display: flex; flex-direction: column; }

.floating-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.floating-price {
    font-size: 13px;
    color: var(--gray-500);
}

.floating-cta-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--night);
    background: var(--gold);
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.floating-cta-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   ENCHANTED ROSE INTRO (Magic Quest opening)
   Glass bell jar with red rose, black base, fallen petals
   ========================================================================== */

.quest-rose-intro {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.quest-rose-intro.is-playing {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Scene wrapper — positions dome, rose, base */
.rose-scene {
    position: relative;
    width: 220px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* Glow aura behind dome */
.rose-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.35) 0%, rgba(212, 168, 67, 0.15) 40%, transparent 70%);
    transition: width 1.4s ease-out, height 1.4s ease-out;
    filter: blur(30px);
    z-index: 0;
}

.quest-rose-intro.is-playing .rose-glow {
    width: 400px;
    height: 400px;
}

/* Glass dome SVG */
.dome-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
}

.quest-rose-intro.is-playing .dome-svg {
    animation: domeAppear 1.2s ease-out 0.1s forwards;
}

@keyframes domeAppear {
    0% { opacity: 0; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

/* Dome glass shine shimmer */
.dome-shine-1 {
    opacity: 0;
}

.quest-rose-intro.is-playing .dome-shine-1 {
    animation: shineSlide 2s ease-in-out 0.8s forwards;
}

@keyframes shineSlide {
    0% { opacity: 0; stroke-dasharray: 200; stroke-dashoffset: 200; }
    50% { opacity: 1; }
    100% { opacity: 0.3; stroke-dashoffset: 0; }
}

/* Rose SVG (inside the dome) */
.rose-svg {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.4));
}

/* Stem draws itself upward */
.rose-stem {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

.quest-rose-intro.is-playing .rose-stem {
    animation: drawStem 0.8s ease-out 0.3s forwards;
}

@keyframes drawStem {
    to { stroke-dashoffset: 0; }
}

/* Thorns appear */
.quest-rose-intro.is-playing .thorn-l {
    animation: thornGrow 0.3s ease-out 0.8s forwards;
}
.quest-rose-intro.is-playing .thorn-r {
    animation: thornGrow 0.3s ease-out 0.9s forwards;
}

@keyframes thornGrow {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 0.7; transform: scale(1); }
}

/* Leaves unfurl */
.quest-rose-intro.is-playing .rose-leaf-l {
    animation: leafGrow 0.5s ease-out 0.9s forwards;
}

.quest-rose-intro.is-playing .rose-leaf-r {
    animation: leafGrow 0.5s ease-out 1.05s forwards;
}

@keyframes leafGrow {
    0% { opacity: 0; transform: scale(0.2); }
    100% { opacity: 0.85; transform: scale(1); }
}

/* Sepals (green base of flower) */
.quest-rose-intro.is-playing .sp1 {
    animation: leafGrow 0.3s ease-out 1.1s forwards;
}
.quest-rose-intro.is-playing .sp2 {
    animation: leafGrow 0.3s ease-out 1.15s forwards;
}

/* Petals bloom outward — staggered, organic */
.quest-rose-intro.is-playing .rp1 { animation: petalBloom 0.5s ease-out 1.2s forwards; }
.quest-rose-intro.is-playing .rp2 { animation: petalBloom 0.5s ease-out 1.3s forwards; }
.quest-rose-intro.is-playing .rp3 { animation: petalBloom 0.5s ease-out 1.4s forwards; }
.quest-rose-intro.is-playing .rp4 { animation: petalBloom 0.5s ease-out 1.5s forwards; }
.quest-rose-intro.is-playing .rp5 { animation: petalBloom 0.45s ease-out 1.6s forwards; }
.quest-rose-intro.is-playing .rp6 { animation: petalBloom 0.45s ease-out 1.7s forwards; }
.quest-rose-intro.is-playing .rp7 { animation: petalBloom 0.4s ease-out 1.8s forwards; }

@keyframes petalBloom {
    0% { opacity: 0; transform: scale(0.15) rotate(-15deg); transform-origin: bottom center; }
    60% { opacity: 1; transform: scale(1.08) rotate(3deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Black pedestal base */
.dome-base {
    position: relative;
    width: 170px;
    height: 24px;
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    border-radius: 50%;
    z-index: 4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    flex-shrink: 0;
    opacity: 0;
}

.quest-rose-intro.is-playing .dome-base {
    animation: baseAppear 0.6s ease-out 0.1s forwards;
}

@keyframes baseAppear {
    0% { opacity: 0; transform: scaleX(0.7); }
    100% { opacity: 1; transform: scaleX(1); }
}

/* Fallen petals on the base */
.base-petal {
    position: absolute;
    width: 10px;
    height: 7px;
    background: #cc2936;
    border-radius: 50% 50% 50% 0;
    opacity: 0;
    top: -4px;
    box-shadow: 0 1px 4px rgba(204, 41, 54, 0.3);
}

.quest-rose-intro.is-playing .bp1 {
    animation: basePetalDrop 0.6s ease-in 2s forwards;
    left: 35%;
    transform: rotate(-20deg);
}
.quest-rose-intro.is-playing .bp2 {
    animation: basePetalDrop 0.7s ease-in 2.2s forwards;
    left: 55%;
    transform: rotate(15deg);
}
.quest-rose-intro.is-playing .bp3 {
    animation: basePetalDrop 0.5s ease-in 2.4s forwards;
    left: 42%;
    transform: rotate(-40deg);
}

@keyframes basePetalDrop {
    0% { opacity: 0; transform: translateY(-60px) rotate(0deg); }
    60% { opacity: 0.9; }
    100% { opacity: 0.8; transform: translateY(0) rotate(var(--cr, 15deg)); }
}

/* Stardust particles — generated by JS */
.stardust {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.stardust-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

.stardust-particle.gold {
    background: radial-gradient(circle, var(--gold) 0%, rgba(212, 168, 67, 0) 70%);
    box-shadow: 0 0 6px rgba(212, 168, 67, 0.6);
}

.stardust-particle.rose {
    background: radial-gradient(circle, #e63946 0%, rgba(230, 57, 70, 0) 70%);
    box-shadow: 0 0 6px rgba(230, 57, 70, 0.5);
}

.stardust-particle.white {
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
}

@keyframes stardustFly {
    0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
    15% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: translate(var(--sdx), var(--sdy)) scale(0); }
}

/* Intro fade-out when rose animation ends */
.quest-rose-intro.is-fading {
    animation: roseIntroFade 0.8s ease-in-out forwards;
}

@keyframes roseIntroFade {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); filter: brightness(1.3); }
    100% { opacity: 0; transform: scale(1.4); visibility: hidden; filter: brightness(2); }
}

/* Quest container hidden during rose intro, then revealed */
#questContainerInner {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.magic-quest.rose-playing #questContainerInner {
    opacity: 0;
    transform: translateY(20px);
}

.magic-quest.rose-playing .quest-close,
.magic-quest.rose-playing .quest-progress {
    opacity: 0;
    transition: opacity 0.3s;
}

.magic-quest.rose-done .quest-close,
.magic-quest.rose-done .quest-progress {
    opacity: 1;
    transition: opacity 0.5s 0.2s;
}

/* Step transition sparkle (micro-magic between steps) */
.quest-step {
    position: relative;
}

.quest-step-sparkle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.quest-step-sparkle .sparkle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0;
    animation: sparklePop 0.6s ease-out forwards;
}

@keyframes sparklePop {
    0% { opacity: 0; transform: scale(0) translate(0, 0); }
    40% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(0) translate(var(--sx), var(--sy)); }
}

/* Success confetti burst on checkout step */
.quest-success-burst {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 6px;
    height: 10px;
    top: 40%;
    left: 50%;
    border-radius: 2px;
    opacity: 0;
    will-change: transform, opacity;
}

.confetti-piece.is-active {
    animation: confettiBurst 1.2s ease-out forwards;
}

@keyframes confettiBurst {
    0% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
    100% { opacity: 0; transform: translate(var(--cx), var(--cy)) rotate(var(--cr)) scale(0.5); }
}

/* ==========================================================================
   MAGIC QUEST MODAL
   ========================================================================== */

.magic-quest {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
}

.magic-quest.is-open {
    opacity: 1;
    visibility: visible;
}

.quest-bg {
    position: absolute;
    inset: 0;
    background: rgba(12, 10, 29, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.quest-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.quest-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.quest-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 10;
}

.quest-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--rose));
    transition: width 0.5s var(--ease);
    width: 16.67%;
    border-radius: 0 4px 4px 0;
}

.quest-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 520px;
    padding: 24px;
}

.quest-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeUp 0.35s var(--ease);
}

.quest-step.active { display: flex; }

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

.quest-step-num {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.quest-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 32px;
}

.quest-title-small {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0;
    font-style: normal;
}

.quest-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    line-height: 1.6;
}

.quest-input-wrap {
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
}

.quest-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    outline: none;
    transition: all 0.2s var(--ease);
}

.quest-input::placeholder { color: rgba(255,255,255,0.25); }
.quest-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }

.quest-textarea { resize: none; min-height: 100px; }
.quest-input-small { font-size: 15px; padding: 14px 16px; }

.quest-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--night);
    background: var(--gold);
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.quest-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.quest-btn:not(:disabled):hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

.quest-btn-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

.quest-btn-secondary:not(:disabled):hover {
    background: rgba(255,255,255,0.12);
}

.quest-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.quest-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 0;
    margin-top: 16px;
    transition: color 0.2s;
}

.quest-back:hover { color: rgba(255,255,255,0.6); }

.quest-hint {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    margin-top: 12px;
}

/* Age buttons */
.quest-ages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.quest-age-btn {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.quest-age-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.quest-age-btn.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--night);
}

.quest-age-display {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.quest-age-display strong { color: var(--white); }

/* Contact form in quest */
.quest-contact-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.quest-contact-group { display: flex; flex-direction: column; gap: 6px; }

.quest-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
}

/* Toggle */
.quest-toggle-wrapper { margin-top: 8px; }

.quest-toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    padding: 12px 0;
}

.quest-toggle-text { display: flex; flex-direction: column; }

.quest-toggle-question {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
}

.quest-toggle-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.quest-toggle-switch { position: relative; flex-shrink: 0; }

.quest-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.quest-toggle-slider {
    display: block;
    width: 44px;
    height: 24px;
    background: rgba(255,255,255,0.12);
    border-radius: 100px;
    position: relative;
    transition: background 0.3s;
}

.quest-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s var(--ease);
}

.quest-toggle-input:checked + .quest-toggle-slider { background: var(--gold); }
.quest-toggle-input:checked + .quest-toggle-slider::after { transform: translateX(20px); }

.quest-secondary-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.06);
}

/* Recap */
.quest-recap { width: 100%; max-width: 440px; }
.quest-recap-header { margin-bottom: 24px; }

.quest-recap-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

.quest-recap-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    text-align: left;
}

.quest-recap-child {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.quest-scroll-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.quest-scroll-age {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
}

.quest-recap-details { display: flex; flex-direction: column; gap: 8px; }

.quest-recap-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.recap-label { color: rgba(255,255,255,0.35); }
.recap-value { color: rgba(255,255,255,0.75); text-align: right; }
.recap-warning .recap-value { color: var(--gold); }

.quest-recap-stage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.recap-stage-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recap-stage-info span {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

.recap-stage-info span:first-child {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
}

.recap-price-amount {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.quest-final-cta { margin-bottom: 8px; }

.quest-checkout-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--night);
    background: var(--gold);
    border: none;
    padding: 18px 32px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    text-align: center;
}

.quest-checkout-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.quest-checkout-text { font-size: 16px; color: var(--night); }
.quest-checkout-price { font-size: 13px; color: var(--night); opacity: 0.7; }

.quest-checkout-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
}

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

@media (max-width: 1024px) {
    :root { --section-gap: 80px; }

    .hero-content { max-width: 100%; }

    .empathy-layout { grid-template-columns: 1fr; gap: 48px; }
    .empathy-title { text-align: center; }

    .transform-grid { grid-template-columns: 1fr; }
    .transform-featured { grid-template-columns: 1fr; }
    .transform-img-wrap { min-height: 260px; }
    .transform-content { padding: 32px; }

    .programme-layout { grid-template-columns: 1fr; gap: 40px; }
    .programme-image { position: relative; margin-bottom: 48px; }
    .programme-img { aspect-ratio: 16/9; }
    .programme-image-caption { display: none; }

    .spectacle-grid { grid-template-columns: 1fr 1fr; }
    .spectacle-photo.main { grid-column: 1 / -1; }

    .why-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-card { grid-template-columns: 1fr; }
    .cta-image { min-height: 300px; order: -1; }
    .cta-content { padding: 48px; }

    .footer-content { grid-template-columns: 1fr 1fr; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-large { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 768px) {
    :root { --section-gap: 64px; }
    .container { padding: 0 20px; }

    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .nav-links.open a { color: var(--gray-700) !important; }
    .nav-mobile-toggle { display: flex; }

    .hero { min-height: auto; }
    .hero-content { padding: 120px 20px 60px; }
    .hero-proof { flex-direction: row; gap: 12px; padding: 16px 20px; }
    .hero-proof-item strong { font-size: 18px; }
    .hero-proof-item span { font-size: 10px; }
    .hero-proof-divider { height: 24px; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary-hero { width: 100%; justify-content: center; }
    .hero-scroll-hint { display: none; }

    .proof-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .proof-bar-number { font-size: 24px; }

    .section-header { margin-bottom: 40px; }
    .section-title { font-size: clamp(24px, 6vw, 36px); }

    .empathy-image-quote { padding: 20px; }

    .transform-card { padding: 28px; }
    .transform-before-after { flex-direction: column; gap: 8px; text-align: center; }
    .transform-arrow { transform: rotate(90deg); align-self: center; }

    .timeline-item { gap: 16px; padding: 24px 0; }
    .timeline-marker { width: 44px; height: 44px; }

    .spectacle-grid { grid-template-columns: 1fr; }

    .info-grid { grid-template-columns: 1fr; }
    .cta-content { padding: 32px; }
    .cta-price-amount { font-size: 40px; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; }

    .floating-cta-content { padding: 10px 16px; }
    .floating-title { font-size: 13px; }

    .gallery-grid { grid-template-columns: 1fr; }

    .modal-nav.prev { left: 8px; }
    .modal-nav.next { right: 8px; }

    .proof-slide { flex: 0 0 240px; }
}

@media (max-width: 480px) {
    .hero-badge { font-size: 11px; padding: 8px 16px; }
    .hero-subtitle { font-size: 14px; }
    .hero-proof { flex-wrap: wrap; gap: 8px; }
    .hero-proof-divider { display: none; }
    .hero-proof-item { flex: 0 0 calc(33% - 8px); }
    .hero-price-strip { flex-direction: column; align-items: center; gap: 4px; }

    .btn-xl { padding: 16px 32px; font-size: 16px; }

    .quest-container { padding: 16px; }
    .quest-title { font-size: 22px; }
    .quest-ages { gap: 8px; }
    .quest-age-btn { padding: 10px 18px; font-size: 14px; }
}

/* ==========================================================================
   CHECKOUT TRANSITION OVERLAY
   ========================================================================== */

.checkout-transition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--night);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease);
}

.checkout-transition.is-active {
    opacity: 1;
    visibility: visible;
}

.checkout-transition-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.checkout-spinner svg {
    animation: spinCheckout 1s linear infinite;
}

@keyframes spinCheckout {
    to { transform: rotate(360deg); }
}

.checkout-transition-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.checkout-transition-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
}

/* No-scroll utility */
body.no-scroll { overflow: hidden; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .particle { display: none; }
    .scroll-line { animation: none; }
    .btn-glow { animation: none; }
}
