/* ============================================================
   Taha & Amira — Invitation de mariage
   MIX : Ksar Saïd (crème · or · script) × Bizerte Marine (bleu marine · vagues)
   + intro « ouverture de l'enveloppe » (agrandie) · responsive mobile
   ============================================================ */

:root {
  /* Base palais (Ksar Saïd) */
  --cream:      #F5F1E9;
  --cream-2:    #EEE6D6;
  --cream-3:    #E7DCC6;
  --paper:      #FDFBF6;
  --brown:      #7C5E37;
  --brown-soft: #8C7551;
  --text:       #4F4634;
  --gold:       #C5A46D;
  --gold-deep:  #A9854C;
  --gold-soft:  #D8C198;

  /* Accent marine (Bizerte) */
  --marine:     #143A4A;
  --marine-2:   #1F5366;
  --marine-3:   #2E6E78;
  --marine-soft:#6E9AA6;

  --line:       rgba(197, 164, 109, 0.4);

  --serif:  "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", "Cormorant Garamond", cursive;
  --sans:   "Jost", system-ui, sans-serif;
  --arab:   "Amiri", serif;

  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; height: 100vh; }

em { font-style: italic; color: var(--gold-deep); font-weight: 500; }

/* ---------- Bouton musique ---------- */
.music-btn {
  position: fixed; bottom: 20px; right: 20px; z-index: 95;
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(20,58,74,.85);
  color: var(--gold-soft); cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(20,58,74,.35);
  transition: transform .3s ease, background .3s ease;
  backdrop-filter: blur(4px);
}
/* Sans cette règle, le `display: grid` ci-dessus annule l'attribut [hidden] :
   le bouton ♪ s'affichait même sans fichier audio, donc sans rien à jouer. */
.music-btn[hidden] { display: none; }

/* ============================================================
   SÉLECTEUR DE LANGUE
   z-index 110 : au-dessus de l'enveloppe (100), sinon un anglophone
   ne pourrait pas changer de langue avant d'ouvrir l'invitation.
   ============================================================ */
.lang {
  position: fixed; top: 18px; right: 18px; z-index: 110;
  display: flex; align-items: center; gap: 2px;
  padding: 5px 7px; border-radius: 999px;
  border: 1px solid var(--gold); background: rgba(20,58,74,.85);
  backdrop-filter: blur(4px);
  font-family: var(--sans); font-size: .68rem; letter-spacing: .12em;
  box-shadow: 0 6px 18px rgba(20,58,74,.35);
}
.lang__current, .lang__link {
  padding: 4px 9px; border-radius: 999px; text-decoration: none; line-height: 1;
}
.lang__current { background: var(--gold); color: #fff; }
.lang__link { color: var(--gold-soft); transition: color .3s, background .3s; }
.lang__link:hover { background: rgba(216,193,152,.18); color: #FBF3E4; }
@media (max-width: 600px) {
  .lang { top: 12px; right: 12px; font-size: .62rem; }
}
.music-btn:hover { transform: scale(1.08); }
.music-btn__icon { font-size: 1.3rem; line-height: 1; }
.music-btn.is-playing .music-btn__icon { animation: spin 4s linear infinite; }
.music-btn.is-muted { background: rgba(124,94,55,.55); color: #EADFC8; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--marine), var(--gold));
  z-index: 90; transition: width .1s linear;
}

/* ---------- Layout ---------- */
.container { width: min(92%, var(--maxw)); margin: 0 auto; }
.container--narrow { width: min(92%, 720px); }
.section { padding: clamp(58px, 9vw, 130px) 0; text-align: center; }
.section--cream { background: var(--cream-2); }
.section--marine { background: linear-gradient(170deg, var(--marine), #0E2A36); color: #EAF1F2; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .38em;
  font-size: .72rem; color: var(--gold-deep); margin-bottom: 14px;
}
.section--marine .kicker { color: var(--gold-soft); }
.section__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 5.2vw, 3.2rem); color: var(--marine); line-height: 1.12;
}
.section--marine .section__title { color: #F3ECDD; }

/* ---------- Flourish divider ---------- */
.flourish { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 20px 0 38px; }
.flourish span { display: block; height: 1px; width: clamp(36px, 12vw, 90px); background: linear-gradient(90deg, transparent, var(--gold)); }
.flourish span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.flourish i { color: var(--gold); font-style: normal; font-size: .9rem; }
.flourish--light span { background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.flourish--light span:last-child { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.flourish--light i { color: var(--gold-soft); }

/* ---------- Wave divider (touche marine / Bizerte) ---------- */
.wave { display: block; width: 100%; height: clamp(40px, 7vw, 80px); margin: 0; line-height: 0; }
.wave svg { width: 100%; height: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans);
  letter-spacing: .2em; text-transform: uppercase; font-size: .76rem;
  text-decoration: none; padding: 16px 40px; border-radius: 2px;
  cursor: pointer; border: 1px solid var(--gold); transition: all .35s ease;
}
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--marine); border-color: var(--marine); color: #fff; }

/* ============================================================
   INTRO — ENVELOPPE (agrandie)
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; perspective: 1600px;
  transition: opacity 1s ease, visibility 1s ease;
}
.intro__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 32%, #FBF7EE, var(--cream) 52%, #DCEAEC 105%);
}
.intro__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(20,58,74,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.intro.is-open { opacity: 0; visibility: hidden; pointer-events: none; }

.intro__stage {
  position: relative; z-index: 2;
  width: min(92vw, 540px);
  height: min(63vw, 346px);
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.intro.is-open .intro__stage { transform: translateY(-14px) scale(1.03); }

/* Carte qui s'élève */
.letter {
  position: absolute; left: 7%; right: 7%; bottom: 12%;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(20,58,74,.2);
  padding: clamp(26px, 6vw, 40px) 22px; text-align: center; z-index: 1;
  transform: translateY(0); opacity: 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1) .25s, opacity .5s ease .25s;
}
.intro.is-open .letter { opacity: 1; transform: translateY(-74%); z-index: 5; }
.letter__eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: .22em; font-size: .6rem; color: var(--gold-deep); }
.letter__names { font-family: var(--script); font-weight: 400; font-size: clamp(2.8rem, 11vw, 4rem); color: var(--brown); line-height: 1; margin: 6px 0; }
.letter__rule { width: 64px; height: 1px; background: var(--gold); margin: 10px auto; }
.letter__date { font-family: var(--serif); font-style: italic; color: var(--marine); font-size: 1.05rem; }

/* Enveloppe */
.envelope { position: absolute; inset: 0; transform-style: preserve-3d; }
.envelope__back {
  position: absolute; inset: 0; border-radius: 5px;
  background: linear-gradient(150deg, #EFE4CE, #E3D4B6);
  box-shadow: 0 24px 60px rgba(20,58,74,.26);
}
.envelope__body {
  position: absolute; inset: 0; z-index: 4; border-radius: 5px;
  background: linear-gradient(35deg, #E9DBBF 0%, #F0E6CF 50%, #E5D6B6 100%);
  clip-path: polygon(0 0, 50% 52%, 100% 0, 100% 100%, 0 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.envelope__body::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,58,74,.06));
}
.envelope__flap {
  position: absolute; top: 0; left: 0; right: 0; height: 56%; z-index: 6;
  background: linear-gradient(155deg, #F2E8D2, #E4D5B5);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center; transform: rotateX(0deg);
  transition: transform .9s cubic-bezier(.4,.1,.2,1), z-index 0s linear .45s;
  box-shadow: 0 2px 6px rgba(20,58,74,.12); backface-visibility: hidden;
}
.intro.is-open .envelope__flap { transform: rotateX(178deg); z-index: 1; }

/* Cachet de cire — marine + or (le mix) */
.seal {
  position: absolute; top: 50%; left: 50%; z-index: 8;
  width: clamp(72px, 18vw, 92px); aspect-ratio: 1;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--marine-3), var(--marine) 72%);
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(14,42,54,.5), inset 0 2px 6px rgba(255,255,255,.18);
  transition: transform .5s ease, opacity .4s ease;
}
.seal::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; border: 1px dashed rgba(216,193,152,.55); }
.seal__mono { font-family: var(--script); color: var(--gold-soft); font-size: clamp(1.4rem, 4.5vw, 1.9rem); line-height: 1; text-shadow: 0 1px 2px rgba(0,0,0,.3); }
.seal__amp { font-size: .85em; margin: 0 1px; }
.intro.is-open .seal { transform: translate(-50%, -50%) scale(.2) rotate(-25deg); opacity: 0; }

.intro__hint {
  position: relative; z-index: 2; margin-top: clamp(34px, 8vw, 54px);
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .28em;
  font-size: .68rem; color: var(--marine-2); text-align: center; padding: 0 20px;
  animation: pulseHint 2.4s ease-in-out infinite;
}
.intro.is-open .intro__hint { opacity: 0; transition: opacity .3s; }
@keyframes pulseHint { 0%,100%{opacity:.45} 50%{opacity:1} }

/* ============================================================
   HERO (vidéo + dégradé de secours)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: radial-gradient(ellipse at 50% 28%, #FBF7EF, var(--cream) 58%, #DCE7E6 105%);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(15,30,38,.34), rgba(15,30,38,.52) 72%, rgba(8,20,26,.66) 100%),
    linear-gradient(180deg, rgba(8,20,26,.30), transparent 28%, transparent 64%, rgba(8,20,26,.42));
}
.hero__glow {
  position: absolute; inset: -20%; z-index: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(216,193,152,.55), transparent 42%),
    radial-gradient(circle at 72% 36%, rgba(110,154,166,.40), transparent 46%),
    radial-gradient(circle at 50% 80%, rgba(197,164,109,.32), transparent 50%);
  filter: blur(8px);
  animation: heroGlow 16s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1.05); }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.12); }
  100% { transform: translate3d(-2%, 3%, 0) scale(1.05); }
}
.hero::before, .hero::after {
  content: ""; position: absolute; border: 1px solid var(--line);
  border-radius: 50% 50% 0 0; border-bottom: none; pointer-events: none; z-index: 1;
}
.hero::before { inset: 6vw 6vw auto 6vw; height: 78vh; opacity: .5; }
.hero::after  { inset: 9vw 9vw auto 9vw; height: 72vh; opacity: .28; }

.hero__inner { position: relative; z-index: 3; padding: 30px; text-shadow: 0 2px 18px rgba(8,20,26,.45), 0 1px 3px rgba(8,20,26,.35); }
.hero__eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: .42em; font-size: .78rem; color: #ECDCBB; margin-bottom: 16px; }
.hero__names { font-family: var(--script); font-weight: 400; font-size: clamp(3.4rem, 14vw, 8rem); line-height: .95; color: #FFFBF4; }
.hero__names .amp { color: var(--gold-soft); }
.hero__arabic { font-family: var(--arab); font-size: clamp(1.4rem, 5vw, 2.2rem); color: #F4EFE4; margin-top: 4px; }
.hero__date { font-family: var(--serif); font-size: clamp(1.1rem, 3vw, 1.5rem); color: #F4EFE4; letter-spacing: .04em; }
.hero__sub { font-family: var(--sans); text-transform: uppercase; letter-spacing: .28em; font-size: .72rem; color: #ECDCBB; margin: 12px 0 34px; }
.hero .flourish span { background: linear-gradient(90deg, transparent, var(--gold-soft)); }
.hero .flourish span:last-child { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.hero .flourish i { color: var(--gold-soft); }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; text-decoration: none; text-align: center; font-family: var(--sans); text-transform: uppercase; letter-spacing: .25em; font-size: .6rem; color: #F4EFE4; text-shadow: 0 2px 14px rgba(8,20,26,.5); }
.hero__chevron { display: block; font-size: 1.5rem; font-style: normal; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

.floaty { position: absolute; color: var(--gold-soft); z-index: 2; opacity: .55; }
.floaty--1 { top: 16%; left: 12%; font-size: 2rem; animation: float 7s ease-in-out infinite; }
.floaty--2 { top: 22%; right: 14%; font-size: 1.2rem; animation: float 9s ease-in-out infinite .6s; }
.floaty--3 { bottom: 18%; left: 18%; font-size: 1.6rem; animation: float 8s ease-in-out infinite 1.2s; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-16px) rotate(6deg)} }

/* ============================================================
   COMPTE À REBOURS
   ============================================================ */
.countdown__grid { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(12px, 4vw, 48px); }
.countdown__cell { min-width: 72px; }
.countdown__num { display: block; font-family: var(--script); font-size: clamp(2.6rem, 8vw, 4.6rem); color: var(--gold-deep); line-height: 1; }
.countdown__label { display: block; text-transform: uppercase; letter-spacing: .25em; font-size: .64rem; color: var(--marine-2); margin-top: 8px; font-family: var(--sans); }

/* ============================================================
   BIENVENUE
   ============================================================ */
.prose { font-size: 1.26rem; margin-bottom: 22px; color: var(--text); }
.script-sign { font-family: var(--script); font-size: 2.2rem; color: var(--marine); margin-top: 12px; }

/* ============================================================
   ÉVÉNEMENTS
   ============================================================ */
.events__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.events__grid--single { grid-template-columns: minmax(0, 440px); justify-content: center; }
.event-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: 4px; padding: 52px 28px 38px; text-align: center;
  transition: transform .4s ease, box-shadow .4s ease;
}
.event-card:hover { transform: translateY(-8px); box-shadow: 0 22px 45px rgba(20,58,74,.16); }
/* Carte vedette (Henna) en marine — le mix Bizerte */
.event-card--feature { background: linear-gradient(170deg, var(--marine), #0E2A36); border-color: var(--marine); color: #EAF1F2; }
.event-card__badge { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1rem; box-shadow: 0 6px 16px rgba(197,164,109,.45); }
.event-card__arabic { font-family: var(--arab); font-size: 1.6rem; color: var(--gold-deep); margin-bottom: 4px; }
.event-card--feature .event-card__arabic { color: var(--gold-soft); }
.event-card__title { font-family: var(--serif); font-weight: 600; font-size: 1.8rem; color: var(--marine); }
.event-card--feature .event-card__title { color: #F3ECDD; }
.event-card__tag { font-family: var(--sans); text-transform: uppercase; letter-spacing: .22em; font-size: .64rem; color: var(--gold-deep); margin-top: 8px; }
.event-card--feature .event-card__tag { color: var(--gold-soft); }
.event-card__line { width: 50px; height: 1px; background: var(--line); margin: 22px auto; }
.event-card--feature .event-card__line { background: rgba(216,193,152,.4); }
.event-card__meta { list-style: none; margin-bottom: 20px; }
.event-card__meta li { font-size: 1.12rem; margin: 8px 0; color: var(--text); }
.event-card--feature .event-card__meta li { color: #EAF1F2; }
.event-card__meta span { display: block; text-transform: uppercase; letter-spacing: .2em; font-family: var(--sans); font-size: .58rem; color: var(--gold-deep); margin-top: 10px; }
.event-card--feature .event-card__meta span { color: var(--gold-soft); }
.event-card__desc { font-size: 1.02rem; color: var(--brown-soft); margin-bottom: 20px; font-style: italic; }
.event-card--feature .event-card__desc { color: rgba(234,241,242,.82); }
.event-card__map { font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.event-card--feature .event-card__map { color: var(--gold-soft); }
.event-card__map:hover { border-color: currentColor; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { list-style: none; position: relative; margin-top: 44px; text-align: left; }
.timeline::before { content: ""; position: absolute; left: 128px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.timeline__item { position: relative; display: flex; align-items: baseline; gap: 34px; padding: 16px 0; }
.timeline__item::before { content: ""; position: absolute; left: 123px; top: 24px; width: 11px; height: 11px; border-radius: 50%; background: var(--cream-2); border: 2px solid var(--gold); }
.timeline__time { font-family: var(--script); color: var(--gold-deep); font-size: 1.6rem; line-height: 1.15; width: 108px; text-align: right; flex-shrink: 0; }
.timeline__text { font-size: 1.22rem; color: var(--text); padding-left: 26px; }
.timeline__ar { font-family: var(--arab); color: var(--gold-deep); font-size: 1.1em; margin: 0 2px; unicode-bidi: isolate; }

/* ============================================================
   LIEU
   ============================================================ */
.venue__addr { font-style: italic; font-size: 1.2rem; color: var(--brown-soft); max-width: 560px; margin: 0 auto 36px; }
.venue__map-wrap { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; box-shadow: 0 18px 40px rgba(20,58,74,.12); }
.venue__map { width: 100%; height: 380px; border: 0; display: block; filter: sepia(.1) saturate(.95); }
.venue__access { display: flex; justify-content: center; flex-wrap: wrap; gap: 36px; margin-top: 40px; }
.venue__access-item strong { display: block; font-family: var(--serif); font-weight: 600; color: var(--marine); font-size: 1.15rem; margin-bottom: 2px; }
.venue__access-item span { color: var(--gold-deep); font-size: .92rem; font-family: var(--sans); letter-spacing: .04em; }
.venue__maps { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 48px; text-align: left; }
.venue__place-name { font-family: var(--serif); font-weight: 600; font-size: 1.34rem; color: var(--marine); }
.venue__place-sub { font-family: var(--sans); text-transform: uppercase; letter-spacing: .18em; font-size: .62rem; color: var(--gold-deep); margin: 5px 0 16px; }
.venue__maps .venue__map { height: 300px; }
.venue__map-link { display: inline-block; margin-top: 15px; font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
.venue__map-link:hover { border-color: currentColor; }

/* ============================================================
   FAQ
   ============================================================ */
.accordion { text-align: left; margin-top: 36px; }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item summary { font-size: 1.32rem; color: var(--marine); cursor: pointer; list-style: none; padding: 20px 40px 20px 4px; position: relative; transition: color .3s; }
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--gold-deep); font-size: 1.5rem; font-family: var(--sans); transition: transform .3s; }
.accordion__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion__item[open] summary { color: var(--gold-deep); }
.accordion__item p { padding: 0 4px 22px; color: var(--brown-soft); font-size: 1.06rem; }

/* ============================================================
   FOOTER (marine — Bizerte)
   ============================================================ */
.footer { position: relative; background: linear-gradient(170deg, var(--marine), #0C2530); color: #EAF1F2; text-align: center; padding: 40px 20px 60px; }
.footer__wave { position: absolute; top: -1px; left: 0; width: 100%; line-height: 0; transform: translateY(-99%); }
.footer__wave svg { width: 100%; height: clamp(40px, 7vw, 80px); display: block; }
.footer__names { font-family: var(--script); font-weight: 400; font-size: clamp(2.6rem, 8vw, 4rem); color: #FBF3E4; margin-top: 20px; }
.footer__arabic { font-family: var(--arab); color: var(--gold-soft); font-size: 1.4rem; margin-top: 2px; }
.footer__date { font-style: italic; margin: 14px 0; letter-spacing: .03em; color: #D9E4E5; }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__chevron, .floaty, .intro__hint, .hero__glow, .music-btn__icon { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE — priorité mobile (beaucoup ouvriront au téléphone)
   ============================================================ */
@media (max-width: 880px) {
  .events__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .event-card--feature { order: -1; }
  .hero::before, .hero::after { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16.5px; }
  .section { padding: 64px 0; }
  .prose { font-size: 1.15rem; }
  .hero__tint { background: linear-gradient(180deg, rgba(245,241,233,.45), rgba(245,241,233,.25) 45%, rgba(20,58,74,.40)); }
  .timeline::before { left: 96px; }
  .timeline__item::before { left: 91px; }
  .timeline__time { width: 84px; font-size: 1.32rem; }
  .timeline__item { gap: 16px; }
  .timeline__text { padding-left: 18px; font-size: 1.12rem; }
  .venue__map { height: 300px; }
  .venue__maps { grid-template-columns: 1fr; gap: 40px; }
  .venue__maps .venue__map { height: 260px; }
  .flourish span { width: 36px; }
}
@media (max-width: 380px) {
  .hero__names { font-size: 3rem; }
  .countdown__cell { min-width: 64px; }
}
