:root {
    --ink: #1a4b84;
    --navy: #15406f;
    --ocean: #3a7ca5;
    --aqua: #73b4ff;
    --sand: #f5e7d0;
    --paper: #f8fbff;
    --coral: #3a7ca5;
    --yellow: #ffffff;
    --line: rgba(26, 75, 132, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Montserrat", sans-serif;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 84px;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(22px, 5vw, 76px);
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: white;
    transition: .3s ease;
}
.site-header.scrolled {
    height: 72px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    border-color: var(--line);
    box-shadow: 0 10px 35px rgba(26, 75, 132, .10);
    backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Playfair Display", serif; font-size: 21px; line-height: 1; }
.brand small { margin-top: 5px; font-size: 9px; letter-spacing: .25em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(12px, 1.4vw, 22px); font-size: 13px; font-weight: 600; }
.desktop-nav a:not(.nav-cta) { position: relative; padding: 8px 0; }
.desktop-nav a:not(.nav-cta)::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transition: transform .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.nav-cta {
    padding: 11px 20px;
    border: 1px solid currentColor;
    border-radius: 999px;
    transition: .25s ease;
}
.nav-cta:hover { color: var(--ink); background: white; border-color: white; }
.scrolled .nav-cta:hover { color: white; background: var(--ink); border-color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-picker {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid currentColor;
    border-radius: 999px;
}
.language-picker select { color: inherit; background: transparent; border: 0; outline: 0; font-weight: 700; }
.language-picker option { color: var(--ink); }
.menu-toggle { display: none; color: inherit; background: none; border: 0; font-size: 20px; }
.mobile-nav { display: none; }

.hero {
    position: relative;
    display: grid;
    min-height: 760px;
    height: 100vh;
    padding: 130px clamp(24px, 7vw, 110px) 70px;
    overflow: hidden;
    color: white;
    background: var(--navy);
    isolation: isolate;
}
.hero::before {
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21,64,111,.98) 0%, rgba(26,75,132,.9) 48%, rgba(58,124,165,.62) 100%),
        url("media/isleolie.jpg") center/cover;
    content: "";
}
.hero::after {
    position: absolute;
    z-index: -2;
    right: -10vw;
    bottom: -42vh;
    width: 72vw;
    height: 72vw;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    content: "";
}
.hero-content { align-self: center; max-width: 770px; }
.eyebrow, .section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.eyebrow span:first-child { width: 45px; height: 1px; background: var(--yellow); }
.hero h1 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(68px, 9.5vw, 148px);
    line-height: .78;
    letter-spacing: -.055em;
}
.hero h1 em { color: #73b4ff; font-weight: 700; }
.hero-lead {
    max-width: 540px;
    margin: 42px 0 32px;
    color: rgba(255,255,255,.8);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}
.hero-button, .button-light {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 17px 22px;
    color: var(--ink);
    background: white;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero-button:hover, .button-light:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,.16); }
.hero-ticket {
    position: absolute;
    right: clamp(30px, 8vw, 130px);
    bottom: 11vh;
    width: 238px;
    padding: 24px;
    color: white;
    background: #3a7ca5;
    box-shadow: 18px 18px 0 rgba(255,255,255,.9);
    transform: rotate(3deg);
}
.hero-ticket::before {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    border: 1px solid white;
    border-radius: 50%;
    content: "";
}
.ticket-kicker, .ticket-code { display: block; font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.hero-ticket strong { display: block; margin: 35px 0 20px; font-size: 36px; line-height: .86; letter-spacing: -.06em; }
.ticket-year { display: block; font-family: "Playfair Display", serif; font-size: 26px; font-style: italic; }
.ticket-code { margin-top: 30px; padding-top: 12px; border-top: 1px solid white; }
.hero-scroll { position: absolute; bottom: 40px; left: clamp(24px, 7vw, 110px); margin: 0; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.orbit-one { top: 15%; right: 20%; width: 330px; height: 330px; }
.orbit-two { top: -15%; right: -5%; width: 650px; height: 650px; }

.events-section { max-width: 1440px; margin: 0 auto; padding: 110px clamp(20px, 5vw, 72px) 130px; }
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.section-kicker { color: var(--ocean); }
.section-heading h2, .event-cta h2 {
    max-width: 760px;
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -.04em;
}
.section-heading > p { margin: 0 0 8px; color: #5d707a; line-height: 1.7; }
.controls {
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr) auto auto;
    gap: 12px;
    margin-top: 60px;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 20px 55px rgba(26, 75, 132, .10);
}
.view-switch { display: flex; gap: 5px; padding: 4px; background: #eef5fb; }
.view-switch button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: #647680;
    background: transparent;
    border: 0;
    white-space: nowrap;
}
.view-switch button.is-active { color: white; background: var(--ink); }
.view-switch b { display: grid; min-width: 22px; height: 22px; place-items: center; background: rgba(255,255,255,.16); border-radius: 50%; font-size: 11px; }
.search-box, .select-filter {
    position: relative;
    display: flex;
    min-height: 54px;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
}
.search-box i { margin-left: 18px; color: var(--ocean); }
.search-box input { width: 100%; padding: 0 16px; color: var(--ink); background: transparent; border: 0; outline: 0; }
.select-filter select { min-width: 185px; height: 100%; padding: 0 42px 0 16px; color: var(--ink); appearance: none; background: transparent; border: 0; outline: 0; }
.select-filter i { position: absolute; right: 15px; pointer-events: none; font-size: 11px; }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin: 28px 0 20px; color: #6d7d85; font-size: 13px; }
.results-bar p { margin: 0; }
.results-bar strong { color: var(--ink); font-size: 18px; }
.results-bar button { color: var(--ocean); background: none; border: 0; font-weight: 700; }

.events-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.event-card {
    position: relative;
    grid-column: span 4;
    min-height: 520px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    transition: transform .3s ease, box-shadow .3s ease;
}
.event-card:nth-child(5n + 1), .event-card:nth-child(5n + 2) { grid-column: span 6; }
.event-card:hover { transform: translateY(-7px); box-shadow: 0 28px 60px rgba(6, 52, 82, .14); }
.event-visual { position: relative; height: 260px; overflow: hidden; color: white; isolation: isolate; }
.event-card:nth-child(5n + 1) .event-visual, .event-card:nth-child(5n + 2) .event-visual { height: 310px; }
.event-visual::before, .event-visual::after { position: absolute; z-index: -1; content: ""; }
.theme-music { background: linear-gradient(145deg, #1a4b84, #3a7ca5); }
.theme-music::before { inset: -35% -10%; background: rgba(115,180,255,.48); border-radius: 45%; transform: rotate(-18deg); }
.theme-music::after { width: 80%; height: 30%; right: -20%; bottom: 0; background: rgba(255,255,255,.2); border-radius: 50%; transform: rotate(12deg); }
.theme-tradition { background: linear-gradient(145deg, #15406f, #3a7ca5); }
.theme-tradition::before { inset: 0; background: radial-gradient(circle at 20% 25%, rgba(255,255,255,.8) 0 3%, transparent 4%), radial-gradient(circle at 80% 72%, rgba(115,180,255,.65) 0 8%, transparent 9%), linear-gradient(135deg, rgba(255,255,255,.22), transparent); }
.theme-tradition::after { width: 220px; height: 220px; right: -45px; bottom: -95px; background: rgba(255,255,255,.14); border-radius: 50%; }
.theme-experience { background: linear-gradient(145deg, #15406f, #3a7ca5); }
.theme-experience::before { width: 300px; height: 300px; right: -100px; top: -100px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.visual-label { position: absolute; top: 20px; left: 22px; padding: 7px 10px; color: var(--ink); background: var(--yellow); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.visual-title { position: absolute; right: 24px; bottom: 20px; left: 22px; font-size: clamp(30px, 3vw, 47px); font-weight: 700; line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.event-date-box {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 68px;
    height: 76px;
    place-content: center;
    color: var(--ink);
    background: white;
    text-align: center;
}
.event-date-box strong { font-family: "Playfair Display", serif; font-size: 31px; line-height: 1; }
.event-date-box span { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.event-card-body { padding: 25px 25px 27px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; color: var(--ocean); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.event-card h3 { margin: 15px 0 10px; font-family: "Playfair Display", serif; font-size: 26px; line-height: 1.12; }
.event-description { min-height: 48px; margin: 0; color: #667780; font-size: 14px; line-height: 1.65; }
.event-artists { margin: 14px 0 0; color: var(--ink); font-size: 12px; font-weight: 700; }
.event-preview { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; color: #536b77; font-size: 12px; line-height: 1.5; }
.event-preview li { display: grid; grid-template-columns: 16px 1fr; gap: 7px; }
.event-preview i { margin-top: 4px; color: var(--ocean); font-size: 9px; }
.event-deadline { display: flex; gap: 7px; margin: 14px 0 0; padding: 10px 12px; color: var(--ink); background: #eef5fb; font-size: 11px; line-height: 1.45; }
.event-deadline i { margin-top: 2px; }
.event-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.details-button { padding: 0; color: var(--ink); background: none; border: 0; font-weight: 700; }
.details-button i { margin-left: 8px; transition: transform .2s ease; }
.details-button:hover i { transform: translateX(4px); }
.event-status { color: #72828a; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.event-status.live { color: #177c62; }
.empty-state { padding: 70px 20px; text-align: center; }
.empty-state span { display: grid; width: 74px; height: 74px; margin: auto; place-items: center; color: var(--ocean); background: #e6f4f4; border-radius: 50%; font-size: 26px; }
.empty-state h3 { margin: 22px 0 8px; font-family: "Playfair Display", serif; font-size: 30px; }
.empty-state p { margin: 0; color: #6b7c84; }

.event-cta {
    margin: 0 clamp(20px, 5vw, 72px) 80px;
    padding: clamp(45px, 8vw, 100px);
    color: white;
    background: var(--navy);
    text-align: center;
}
.event-cta .section-kicker { justify-content: center; color: #73b4ff; }
.event-cta h2 { max-width: none; }
.event-cta > p:not(.section-kicker) { max-width: 650px; margin: 24px auto 34px; color: rgba(255,255,255,.72); line-height: 1.7; }
.event-cta > div { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.button-light { background: white; }
.button-ghost { display: inline-flex; align-items: center; padding: 16px 22px; border: 1px solid rgba(255,255,255,.35); font-weight: 700; }

.event-modal {
    width: min(720px, calc(100% - 30px));
    max-height: calc(100vh - 30px);
    padding: 0;
    color: var(--ink);
    background: var(--paper);
    border: 0;
    box-shadow: 0 35px 90px rgba(0, 24, 38, .35);
}
.event-modal::backdrop { background: rgba(3, 30, 45, .78); backdrop-filter: blur(5px); }
.modal-close {
    position: absolute;
    z-index: 3;
    top: 15px;
    right: 15px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--ink);
    background: white;
    border: 0;
    border-radius: 50%;
}
.modal-visual { height: 250px; padding: 45px 38px; }
.modal-visual h2 { max-width: 80%; margin: 45px 0 0; font-size: clamp(34px, 6vw, 56px); line-height: .9; text-transform: uppercase; }
.modal-body { padding: 35px 38px 40px; }
.modal-body .event-meta { margin-bottom: 18px; }
.modal-body p { color: #566b75; line-height: 1.7; }
.modal-artists { padding: 18px 0; color: var(--ink) !important; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-weight: 700; }
.modal-fact { display: flex; align-items: flex-start; gap: 9px; margin: 13px 0 0; color: var(--ink) !important; }
.modal-fact i { width: 17px; margin-top: 6px; color: var(--ocean); text-align: center; }
.modal-deadline { padding: 13px 15px; background: #eef5fb; }
.modal-information { margin-top: 26px; }
.modal-information h3 { margin: 0 0 14px; font-family: "Playfair Display", serif; font-size: 25px; }
.modal-information ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.modal-information li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: #566b75; line-height: 1.6; }
.modal-information li i { display: grid; width: 20px; height: 20px; margin-top: 2px; place-items: center; color: white; background: var(--ocean); border-radius: 50%; font-size: 9px; }
.modal-actions { display: flex; gap: 12px; margin-top: 25px; flex-wrap: wrap; }
.modal-actions a { padding: 14px 18px; color: white; background: var(--ink); font-size: 13px; font-weight: 700; }
.modal-actions a.secondary { color: var(--ink); background: transparent; border: 1px solid var(--line); }

@media (max-width: 1180px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .mobile-nav {
        position: absolute;
        top: 100%;
        right: 18px;
        display: none;
        min-width: 210px;
        padding: 12px;
        color: var(--ink);
        background: white;
        box-shadow: 0 18px 45px rgba(0,0,0,.14);
    }
    .mobile-nav.is-open { display: grid; }
    .mobile-nav a { padding: 11px 12px; font-weight: 600; }
    .controls { grid-template-columns: 1fr 1fr; }
    .view-switch, .search-box { grid-column: span 2; }
    .event-card, .event-card:nth-child(5n + 1), .event-card:nth-child(5n + 2) { grid-column: span 6; }
}

@media (max-width: 720px) {
    .site-header { height: 72px; padding: 0 18px; }
    .brand-mark { width: 38px; height: 38px; }
    .brand strong { font-size: 18px; }
    .hero { min-height: 680px; height: auto; padding: 150px 24px 90px; }
    .hero h1 { font-size: clamp(62px, 20vw, 92px); }
    .hero-ticket { display: none; }
    .hero-scroll { display: none; }
    .section-heading { grid-template-columns: 1fr; gap: 22px; }
    .events-section { padding-top: 80px; }
    .controls { display: flex; flex-direction: column; margin-top: 40px; }
    .view-switch { display: grid; grid-template-columns: 1fr 1fr; }
    .view-switch button { justify-content: center; }
    .select-filter select { width: 100%; }
    .events-grid { display: block; }
    .event-card { min-height: 0; margin-bottom: 20px; }
    .event-visual, .event-card:nth-child(5n + 1) .event-visual, .event-card:nth-child(5n + 2) .event-visual { height: 250px; }
    .event-description { min-height: 0; }
    .event-cta { margin-right: 0; margin-left: 0; }
    .modal-visual { height: 220px; padding: 35px 24px; }
    .modal-body { padding: 30px 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
