/* ═══ VARIABLES ═══ */
:root {
    --navy: #2c3e6b;
    --navy-dark: #1a2744;
    --navy-light: #4a6191;
    --orange: #e8844a;
    --orange-text: #a84d20;
    --coral: #f3866f;
    --rust: #d4622b;
    --bg: #faf9f6;
    --bg-warm: #f5f3ee;
    --bg-card: #ffffff;
    --text: #1a2744;
    --text-secondary: #5a6a80;
    --text-muted: #8e99ad;
    --border: rgba(26, 39, 68, 0.08);
    --border-hover: rgba(232, 132, 74, 0.25);
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ═══ GRAIN OVERLAY ═══ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}

/* ═══ NAVIGATION ═══ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-bottom 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 2rem;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-logo img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
}

.nav.scrolled .nav-logo img {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav.scrolled .nav-links a {
    color: var(--text-secondary);
}

.nav.scrolled .nav-links a:hover {
    color: var(--navy);
}

.nav.scrolled .nav-links .nav-cta,
.nav.scrolled .nav-links .nav-cta:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-cta {
    background: var(--navy);
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.3s var(--spring), transform 0.3s var(--spring), box-shadow 0.3s var(--spring);
}

.nav-links .nav-cta:hover {
    background: var(--orange);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 132, 74, 0.25);
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    background: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transform-origin: center;
    transition: background 0.3s, transform 0.35s var(--spring), opacity 0.25s var(--ease);
}

.nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav.scrolled .nav-toggle span {
    background: var(--navy);
}

@media (max-width: 768px) {
    body.nav-open {
        overflow: hidden;
    }

    .nav-toggle {
        display: block;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        min-height: 100dvh;
        padding: 6.5rem 2rem 2rem;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
        z-index: 100;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--text-secondary);
    }

    .nav-links a:hover {
        color: var(--navy);
    }

    .nav-links .nav-cta,
    .nav-links .nav-cta:hover {
        color: #fff !important;
    }

    .nav.menu-open .nav-logo img {
        filter: none;
    }

    .nav.menu-open .nav-toggle span {
        background: var(--navy);
    }
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ COMMON ═══ */
section {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange-text);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(232, 132, 74, 0.2);
    border-radius: 100px;
    background: rgba(232, 132, 74, 0.05);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
}

.section-title em {
    font-style: italic;
    color: var(--orange-text);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(5.8rem, 10vh, 8rem) 2rem clamp(4rem, 8vh, 7rem);
    position: relative;
    overflow: hidden;
    background: #211a47;
}

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

.hero-halo canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    animation: fadeIn 1s var(--ease) 0.2s both;
    backdrop-filter: blur(8px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
    animation: heroTitle 1.2s var(--ease) 0.4s both;
    color: #fff;
}

.hero h1 .num {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--rust));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .thin {
    font-weight: 400;
    font-style: italic;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.45);
}

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

.hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
    animation: fadeIn 1s var(--ease) 0.7s both;
}

.hero-venue {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: var(--coral);
    margin-bottom: 2.5rem;
    animation: fadeIn 1s var(--ease) 0.9s both;
}

.countdown {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s var(--ease) 1.1s both;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.countdown-item .number {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.countdown-item .label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.3rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--orange);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.4s var(--spring), transform 0.4s var(--spring), box-shadow 0.4s var(--spring);
    animation: fadeIn 1s var(--ease) 1.3s both;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.hero-cta:hover::before {
    transform: translateX(100%);
}

.hero-cta:hover {
    background: var(--orange);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(232, 132, 74, 0.3);
}

.add-to-cal {
    position: relative;
    margin-top: 1.2rem;
    animation: fadeIn 1s var(--ease) 1.4s both;
}

.add-to-cal__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    padding: 0.45rem 1rem;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.add-to-cal__btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.add-to-cal__btn .material-symbols-outlined {
    font-size: 1rem;
}

.add-to-cal__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    min-width: 200px;
    z-index: 10;
}

.add-to-cal__dropdown.open {
    display: block;
}

.add-to-cal__dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.2rem;
    color: var(--navy);
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.15s;
}

.add-to-cal__dropdown a:hover {
    background: var(--bg-warm);
}

.add-to-cal__dropdown .material-symbols-outlined {
    font-size: 1rem;
    color: var(--orange);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    width: max-content;
    margin-inline: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s var(--ease) 1.6s both;
    z-index: 1;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}

@media (min-width: 1024px) and (max-height: 860px) {
    .hero {
        padding: 5.2rem 2rem 3.2rem;
    }

    .hero-badge {
        margin-bottom: 1.2rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 9vw, 6.6rem);
        margin-bottom: 0.55rem;
    }

    .hero-sub {
        margin-bottom: 0.6rem;
    }

    .hero-venue {
        margin-bottom: 1.4rem;
        font-size: 0.8rem;
    }

    .countdown {
        gap: 0.75rem;
        margin-bottom: 1.6rem;
    }

    .countdown-item {
        min-width: 72px;
        padding: 0.75rem 0.8rem;
    }

    .countdown-item .number {
        font-size: 1.8rem;
    }

    .hero-cta {
        padding: 0.9rem 2.2rem;
        font-size: 0.95rem;
    }

    .add-to-cal {
        margin-top: 0.85rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
}

/* ═══ MARQUEE ═══ */
.marquee-band {
    padding: 1rem 0;
    background: var(--navy);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 35s linear infinite;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 2rem;
}

.marquee-track span::after {
    content: '✦';
    margin-left: 2rem;
    opacity: 0.4;
    color: var(--orange);
}

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

/* ═══ STATS ═══ */
.stats {
    padding: 3rem 0;
    background: var(--bg-warm);
}

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

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 8px 30px rgba(232, 132, 74, 0.08);
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ═══ ABOUT ═══ */
.about {
    padding: 5rem 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text .hl {
    color: var(--orange-text);
    font-weight: 600;
}

.about-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.about-slide.active {
    opacity: 1;
}

.about-quote {
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
}

.about-quote p {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: var(--navy);
}

.about-quote p .sr-word {
    display: inline-block;
    opacity: 0.08;
    filter: blur(6px);
    will-change: opacity, filter;
}

.about-quote .auth {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    font-style: normal;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ═══ CHRONOLOGIE ═══ */
.chrono {
    padding: 4rem 0 7rem;
    background: var(--bg);
}

.chrono-header {
    text-align: center;
    margin-bottom: 5rem;
}

.chrono-header .section-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--orange-text);
    display: block;
    margin-bottom: 0.8rem;
}

.chrono-header .section-title {
    font-size: 3.5rem;
}

.section-bar {
    width: 3.5rem;
    height: 4px;
    background: var(--orange);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.chrono-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    padding: 0 1rem;
}

.chrono-grid::before {
    content: '';
    position: absolute;
    top: 3.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border) 8%, var(--border) 92%, transparent);
    z-index: 0;
}

.chrono-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.8rem;
    position: relative;
    z-index: 1;
}

.chrono-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 132, 74, 0.08);
    transition: transform 0.5s var(--ease);
    flex-shrink: 0;
}

.chrono-item:hover .chrono-icon {
    transform: scale(1.1);
}

.chrono-icon .material-symbols-outlined {
    font-size: 2.2rem;
    color: var(--orange);
}

.chrono-item--highlight .chrono-icon {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(232, 132, 74, 0.3);
}

.chrono-item--highlight .chrono-icon .material-symbols-outlined {
    color: #fff;
}

.chrono-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chrono-years {
    font-family: var(--font-mono);
    color: var(--orange-text);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.chrono-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    font-style: italic;
}

.chrono-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 22ch;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .chrono-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }

    .chrono-grid::before {
        display: none;
    }

    .chrono-desc {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .chrono {
        padding: 4rem 0;
    }

    .chrono-header .section-title {
        font-size: 2.5rem;
    }

    .chrono-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }

    .chrono-icon {
        width: 5rem;
        height: 5rem;
    }

    .chrono-icon .material-symbols-outlined {
        font-size: 1.6rem;
    }

    .chrono-title {
        font-size: 1.2rem;
    }
}

/* ═══ PROGRAMME ═══ */
.programme {
    padding: 5rem 0;
    background: var(--bg-warm);
}

.timeline {
    margin-top: 3rem;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--navy-light), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.timeline-item:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(232, 132, 74, 0.08);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 2.2rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--bg-warm);
    transform: translateX(-6px);
}

.timeline-time {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--orange-text);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--navy-dark);
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ═══ INFOS ═══ */
.infos {
    padding: 5rem 0;
    background: var(--bg);
}

.infos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.infos-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.info-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

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

.info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.info-card h3 .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--orange);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.info-card a {
    color: var(--orange-text);
    font-weight: 600;
    text-decoration: none;
    text-underline-offset: 3px;
}

.info-card a:hover {
    text-decoration: underline;
}

.info-card address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-card__item {
    margin: .4rem 0;
}

.infos-map {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#map-container {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 450px;
    background: #eee;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

#map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.map-legend-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

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

/* ═══ FAQ ═══ */
.faq {
    padding: 5rem 0;
    background: var(--bg-warm);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.faq-col-image {
    position: sticky;
    top: 6rem;
}

.faq-col-image img {
    width: 75%;
    border-radius: 1rem;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

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

.faq-question {
    width: 100%;
    background: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy-dark);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--orange-text);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
    font-size: 1.2rem;
    color: var(--orange);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-col-image {
        position: static;
        order: -1;
    }
}

.deadline-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    background: rgba(232, 132, 74, 0.1);
    color: var(--orange-text);
    font-size: 0.88rem;
}

.deadline-notice .material-symbols-outlined {
    font-size: 1rem;
}

/* ═══ FORM ═══ */
.inscription {
    padding: 5rem 0;
    background: var(--bg);
}

.form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

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

.form-row.full {
    grid-template-columns: 1fr;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group label .req {
    color: var(--orange-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(232, 132, 74, 0.1);
}

.form-group select option {
    background: #fff;
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--navy);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.4s var(--spring), transform 0.4s var(--spring), box-shadow 0.4s var(--spring);
}

.form-submit:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 132, 74, 0.25);
}

.form-submit.sent {
    background: #22c55e;
    pointer-events: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
}

.form-success .check {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.form-success p {
    color: var(--text-secondary);
}

.form-success__calendar-label {
    margin: 1rem 0 0.7rem;
    font-size: 0.92rem;
    color: var(--text);
}

.form-success .add-to-cal {
    margin-top: 0;
    animation: none;
}

.form-success .add-to-cal__btn {
    background: #f2f5fb;
    border-color: #d8e1ef;
    color: var(--navy);
}

.form-success .add-to-cal__btn:hover {
    background: #e8eef9;
    border-color: #c6d4ea;
    color: var(--navy-dark);
}

/* ═══ VIDEO CTA ═══ */
.video-cta {
    padding: 4rem 0;
}

.video-cta__card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.video-cta__card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(232, 132, 74, .1);
    filter: blur(60px);
    pointer-events: none;
}

.video-cta__header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.video-cta__emoji .material-symbols-outlined {
    font-size: 2rem;
    color: var(--orange);
}

.video-cta__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    margin: .8rem 0 .5rem;
    color: #fff;
}

.video-cta__text {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
}

.video-cta__embed {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
    z-index: 1;
}

.video-cta__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ═══ FOOTER ═══ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--navy-dark);
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 22px;
    filter: brightness(0) invert(1);
}

.footer-badge {
    color: var(--orange);
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: .7rem;
}

.footer-countdown {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-hearts {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-hearts span {
    color: var(--orange);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 65px;
        padding: 0.7rem;
    }

    .countdown-item .number {
        font-size: 1.5rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .parcours-map {
        height: auto !important;
    }

    .parcours-path {
        display: none;
    }

    .parcours-grid {
        position: static !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 0.5rem;
    }

    .parcours-img,
    .parcours-img-placeholder {
        width: 90px !important;
        height: 90px !important;
    }

    .presence-choices {
        flex-direction: column;
    }
}

/* ═══ PARCOURS ═══ */
.parcours {
    padding: 5rem 0;
    background: var(--bg);
}

.parcours-map {
    position: relative;
    margin-top: 3rem;
    height: 420px;
}

.parcours-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.parcours-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
}

.parcours-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.parcours-img-wrap {
    position: relative;
}

.parcours-img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: grayscale(20%) contrast(0.9);
    transition: transform 0.3s var(--ease), filter 0.3s;
}

.parcours-item:hover .parcours-img {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(1);
}

.parcours-img-placeholder {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: var(--bg-warm);
    border: 2px dashed var(--border);
    border-radius: 16px;
}

.parcours-step-label {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.parcours-step-time {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--orange-text);
    letter-spacing: 0.08em;
    font-weight: 600;
}

.parcours-step-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy-dark);
    font-style: italic;
}

/* ═══ PRESENCE (formulaire mode full) ═══ */
.form-label-presence {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.presence-choices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.presence-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.6rem 1.2rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    user-select: none;
}

.presence-option:hover {
    border-color: var(--border-hover);
    background: rgba(232, 132, 74, 0.04);
}

.presence-option input[type="radio"] {
    appearance: none;
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.presence-option input[type="radio"]:checked {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: inset 0 0 0 3px #fff;
}

.presence-option:has(input[type="radio"]:checked) {
    border-color: var(--orange);
    background: rgba(232, 132, 74, 0.07);
    color: var(--orange-text);
    font-weight: 500;
}
