/* ============================================
   STAGE OF MOUNTAINS - Landing Page
   Design immersif, moderne, premium
   ============================================ */

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

:root {
    --color-dark: #0a0f14;
    --color-dark-alt: #111820;
    --color-primary: #1a3a4a;
    --color-accent: #e8642c;
    --color-accent-light: #f4845f;
    --color-light: #f5f7f6;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #6b7280;
    --color-border: rgba(255,255,255,0.1);
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container: 1200px;
    --container-narrow: 800px;
    --nav-height: 72px;
    --section-pad: clamp(80px, 12vw, 160px);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* --- REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 24px rgba(232, 100, 44, 0.35);
}
.btn--primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 100, 44, 0.45);
}

.btn--large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 4vw, 48px);
    height: var(--nav-height);
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.is-scrolled {
    background: rgba(10, 15, 20, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    line-height: 1.1;
    color: var(--color-white);
    opacity: 0.9;
}
.nav__logo span {
    font-size: 1.4rem;
    display: block;
}

.nav__links {
    display: flex;
    gap: 32px;
}
.nav__links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}
.nav__links a:hover {
    color: var(--color-white);
}

.nav__cta {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.nav__cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s;
    border-radius: 2px;
}

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

.hero__video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #0a0f14;
}

.hero__video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(10,15,20,0.55) 0%,
        rgba(10,15,20,0.35) 40%,
        rgba(10,15,20,0.65) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--nav-height) + 24px) 20px 100px;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 100, 44, 0.15);
    border: 1px solid rgba(232, 100, 44, 0.4);
    color: var(--color-accent-light);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,100,44,0); }
    50% { box-shadow: 0 0 0 8px rgba(232,100,44,0.1); }
}

/* Countdown */
.hero__countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-white);
}

.countdown__block {
    text-align: center;
}

.countdown__num {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    display: block;
    color: var(--color-accent);
}

.countdown__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

/* Live visitors badge */
.live-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 998;
    background: rgba(10,15,20,0.9);
    backdrop-filter: blur(12px);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-badge.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.live-badge__dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    color: var(--color-white);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.hero__title-line {
    display: block;
}

.hero__title-accent {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1em;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
    0% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
    100% { transform: scaleY(1); opacity: 1; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    background: var(--color-accent);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    animation: marqueeScroll 30s linear infinite;
}

.marquee__track span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.marquee__dot {
    width: 6px !important;
    height: 6px;
    min-width: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
}

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

/* ============================================
   SECTIONS (shared)
   ============================================ */
.section {
    padding: var(--section-pad) 0;
}

.section--dark {
    background: var(--color-dark-alt);
    color: var(--color-white);
    content-visibility: auto;
}

.section--light {
    background: var(--color-light);
    color: var(--color-text);
}

.section--accent {
    background: var(--color-dark);
    color: var(--color-white);
}

.section__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 20px;
}

.section--light .section__title {
    color: var(--color-dark);
}

.section__intro {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    max-width: 700px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 56px;
}

/* ============================================
   LEVELS (niveaux)
   ============================================ */
.levels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.level-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.level-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.level-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.level-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.level-card__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.level-card__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(232, 100, 44, 0.15);
    color: var(--color-accent-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}


/* ============================================
   ATHLETES
   ============================================ */
.athletes-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.athlete-card--large {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.athlete-card--large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.athlete-card__img {
    height: 400px;
    background: var(--color-dark-alt);
    overflow: hidden;
}

.athlete-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.athlete-card--large:hover .athlete-card__img img {
    transform: scale(1.05);
}

.athlete-card__info {
    padding: 24px;
}

.athlete-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.athlete-card__role {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.athlete-card__feat {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Mini athletes grid */
.athletes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.athlete-mini {
    text-align: center;
    padding: 24px 16px;
    background: var(--color-white);
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.athlete-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.athlete-mini__img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-dark-alt);
    margin: 0 auto 16px;
    overflow: hidden;
}

.athlete-mini__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s;
}

.athlete-mini:hover .athlete-mini__img img {
    transform: scale(1.1);
}

.athlete-mini h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.athlete-mini p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ============================================
   IMMERSIVE BREAK
   ============================================ */
.immersive-break {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* PLACEHOLDER: remplacer par une photo plein ecran */
    background: linear-gradient(135deg, #0a1628, #1a3a4a 50%, #2d5a4e);
}

.immersive-break__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,15,20,0.5);
}

.immersive-break__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.immersive-break__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-style: italic;
    color: var(--color-white);
    line-height: 1.4;
}

/* ============================================
   PROGRAMME (cards grid)
   ============================================ */
.prog {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 56px;
}

.prog__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.prog__card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.prog__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.prog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.prog__card:hover::before {
    opacity: 1;
}

/* Variantes de couleurs */
.prog__card--arrival {
    background: linear-gradient(135deg, #f0f5f3 0%, #e8f0ed 100%);
}

.prog__card--highlight {
    background: linear-gradient(135deg, #fef3ee 0%, #fde8dc 100%);
    border-color: rgba(232,100,44,0.15);
}

.prog__card--highlight::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

.prog__card--party {
    background: linear-gradient(135deg, #f0eef8 0%, #e8e4f5 100%);
}

.prog__card--party::before {
    background: #7c3aed;
}

.prog__card--end {
    background: linear-gradient(135deg, #eef6fc 0%, #dceefa 100%);
}

.prog__card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.prog__num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.2;
    min-width: 56px;
}

.prog__card-head h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 2px;
}

.prog__subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.prog__moment {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.prog__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.prog__list li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.prog__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    opacity: 0.4;
}

.prog__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.prog__tags span {
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(232,100,44,0.08);
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Highlights */
.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight {
    text-align: center;
    padding: 32px 20px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.highlight__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    color: var(--color-accent);
}

.highlight h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.highlight p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ============================================
   HOTEL
   ============================================ */
.hotel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hotel__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
}

.hotel__img {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.hotel__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotel__img:hover img {
    transform: scale(1.05);
}

.hotel__img--main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.hotel__img--side4 {
    grid-column: 3;
}

.hotel__features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hotel__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hotel__feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: var(--color-accent);
}

.hotel__feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.hotel__feature p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ============================================
   STATS
   ============================================ */
.stats {
    background: var(--color-dark);
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ============================================
   PRICING
   ============================================ */
.pricing {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.pricing__price {
    margin-bottom: 8px;
}

.pricing__amount {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 6rem);
    color: var(--color-white);
    letter-spacing: 0.02em;
    line-height: 1;
}

.pricing__period {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.pricing__perday {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

.pricing__includes {
    text-align: left;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
}

.pricing__includes h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.pricing__includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.pricing__includes li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #22c55e;
}

.pricing__secure {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq__item {
    border-radius: 12px;
    background: var(--color-white);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    transition: background 0.2s;
}

.faq__question:hover {
    background: rgba(0,0,0,0.02);
}

.faq__question svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--color-text-muted);
    transition: transform 0.3s;
}

.faq__question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* PLACEHOLDER: image de fond */
    background: linear-gradient(135deg, #0a1628, #1a3a4a 50%, #0a1628);
}

.final-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,15,20,0.6);
}

.final-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.final-cta__limited {
    display: block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   PARTNERS
   ============================================ */
.partners {
    background: var(--color-light);
    padding: 56px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.partners__title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--color-dark);
    opacity: 0.4;
    transition: opacity 0.3s;
    text-align: center;
    line-height: 1.1;
}

.partner:hover {
    opacity: 0.8;
}

.partner span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-dark);
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer__logo {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 12px;
}
.footer__logo span {
    font-size: 1.4rem;
    display: block;
}

.footer__brand p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.footer__links a,
.footer__contact a {
    display: block;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--color-white);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   STICKY CTA (Mobile)
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100vw;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(10,15,20,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
    box-sizing: border-box;
}

.sticky-cta .btn {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.sticky-cta.is-visible {
    bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .levels {
        grid-template-columns: repeat(2, 1fr);
    }
    .athletes-featured {
        grid-template-columns: 1fr;
    }
    .hotel {
        grid-template-columns: 1fr;
    }
    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials {
        grid-template-columns: 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,15,20,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        z-index: 100;
    }
    .nav__links.is-open {
        opacity: 1;
        pointer-events: all;
    }
    .nav__links a {
        font-size: 1.2rem;
        color: var(--color-white);
    }
    .nav__cta {
        display: none;
    }
    .nav__burger {
        display: flex;
        z-index: 200;
    }
    .nav__burger.is-open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__burger.is-open span:nth-child(2) {
        opacity: 0;
    }
    .nav__burger.is-open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

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

    .athlete-card__img {
        height: 200px;
    }

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

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

    .hotel__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
    }
    .hotel__img--main {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    .hotel__img--side3,
    .hotel__img--side4 {
        display: none;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .sticky-cta {
        display: block;
    }

    .live-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .athletes-grid {
        grid-template-columns: 1fr;
    }

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

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__title-accent {
        font-size: 1em;
    }

    .hero__content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .btn--large {
        padding: 16px 24px;
        font-size: 0.95rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .final-cta p {
        font-size: 1rem;
        padding: 0 8px;
    }

    body {
        padding-bottom: 72px; /* space for sticky CTA */
    }
}
