/* =========================================================
   Renouveau — Prototype de refonte
   Direction visuelle : « Lumière & chaleur »
   Bleu colombe + ambre/flamme + terracotta
   ========================================================= */

:root {
  /* Couleurs */
  --bg:          #FAF9F6;   /* blanc cassé (off-white) */
  --surface:     #FFFFFF;
  --surface-2:   #F3F1EB;   /* blanc cassé légèrement plus chaud (sections alternées) */
  --ink:         #292019;   /* presque noir chaud */
  --ink-soft:    #6A5E52;
  --line:        #ECE1D2;

  --primary:     #1F4E6B;   /* bleu colombe profond */
  --primary-dk:  #163B52;
  --primary-soft:#E4EDF2;

  --accent:      #E0902A;   /* ambre / flamme */
  --accent-dk:   #C57A18;
  --accent-soft: #FBE7C7;

  --terra:       #C2603E;   /* terracotta */
  --terra-soft:  #F6E0D6;

  /* Typo */
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Divers */
  --radius:   18px;
  --radius-s: 12px;
  --shadow:   0 14px 40px -18px rgba(40, 30, 18, .35);
  --shadow-s: 0 6px 20px -12px rgba(40, 30, 18, .35);
  --maxw: 1160px;
  --gut: clamp(18px, 4vw, 40px);
}

/* Reset léger */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 0 0 .5em; }
h3 { font-size: 1.18rem; margin: 0 0 .35em; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(48px, 8vw, 92px); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .76rem; color: var(--terra); margin: 0 0 .6em;
}
.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 56ch; }
.muted { color: var(--ink-soft); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .82em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #2a1c05; box-shadow: var(--shadow-s); }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: var(--surface); border-color: var(--line); color: var(--primary); }
.btn-outline:hover { border-color: var(--primary); }
.btn-sm { padding: .55em 1.05em; font-size: .9rem; }

/* =================== HEADER =================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 246, .82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--ink); }
.brand .dove {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; display: grid; place-items: center; flex: none; overflow: hidden;
  box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-s);
}
.brand .dove img { width: 36px; height: 36px; object-fit: contain; }
.nav-links { display: flex; gap: .35rem; margin-left: auto; align-items: center; list-style: none; padding: 0; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .96rem; padding: .5em .8em; border-radius: 10px; transition: background .15s, color .15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: var(--primary-soft); color: var(--primary-dk); }
.nav-cta { margin-left: .4rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4em; margin-left: auto; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }

@media (max-width: 1280px) {
  /* le backdrop-filter crée un bloc conteneur qui rogne le menu mobile (position:fixed) → on le retire ici */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(250, 249, 246, .98); }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line); padding: 1rem var(--gut) 1.4rem;
    gap: .2rem; margin: 0; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; max-height: calc(100vh - 72px); overflow:auto;
  }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-links a { padding: .8em .6em; }
  .nav-cta { margin: .4rem 0 0; }
  .nav.open .nav-toggle span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2){ opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
}

/* =================== HERO =================== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(224,144,42,.55), transparent 60%),
    radial-gradient(900px 500px at 8% 110%, rgba(194,96,62,.5), transparent 55%),
    linear-gradient(135deg, var(--primary-dk), var(--primary) 55%, #2f6c7e);
}
.hero::after {
  /* halo de lumière (Esprit) */
  content: ""; position: absolute; top: -120px; right: -60px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,233,191,.55), transparent 65%); pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-block: clamp(64px, 11vw, 128px); max-width: 920px; }
.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.2rem; max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.2rem; }
.hero-pills span { font-size: .85rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); padding: .4em .9em; border-radius: 999px; }
.hero.simple { background:
    radial-gradient(900px 420px at 80% -20%, rgba(224,144,42,.45), transparent 60%),
    linear-gradient(135deg, var(--primary-dk), var(--primary) 70%); }
.hero.simple .container { padding-block: clamp(48px, 7vw, 84px); }

/* =================== CARTES & GRILLES =================== */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px){ .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-s); transition: transform .18s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: .9rem;
}
.ic.blue { background: var(--primary-soft); }
.ic.amber{ background: var(--accent-soft); }
.ic.terra{ background: var(--terra-soft); }
.card a.more { color: var(--primary); font-weight: 600; text-decoration: none; }
.card a.more:hover { text-decoration: underline; }

/* Audience cards */
.audience .card { border-top: 4px solid var(--accent); }

/* Témoignages */
.quote {
  background: var(--surface); border-radius: var(--radius); padding: 1.8rem; border: 1px solid var(--line);
  position: relative; box-shadow: var(--shadow-s);
}
.quote::before { content: "\201C"; font-family: var(--serif); font-size: 3.4rem; color: var(--accent); line-height: 0; position: absolute; top: 1.6rem; left: 1.2rem; opacity: .5; }
.quote p { font-size: 1.06rem; padding-top: .6rem; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: .6rem; }
.quote .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-soft); display: grid; place-items: center; color: var(--primary); font-weight: 700; }
.quote .who b { display: block; }
.quote .who small { color: var(--ink-soft); }

/* Bandeau écoute */
.band {
  background: linear-gradient(120deg, var(--primary-dk), var(--primary) 70%, var(--terra));
  color: #fff; border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem); display: flex; gap: 1.4rem; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.band h2 { color: #fff; margin-bottom: .25em; }
.band p { color: rgba(255,255,255,.9); margin: 0; }

/* Don */
.don {
  background: var(--surface-2); border: 1px dashed var(--accent); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center;
}

/* Aperçu carte (accueil) */
.map-search { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.2rem; }
.map-search input { flex: 1 1 240px; padding: .85em 1.1em; border: 1.5px solid var(--line); border-radius: 999px; font-size: 1rem; font-family: inherit; background: var(--surface); }
.map-search input:focus { outline: 2px solid var(--accent); border-color: transparent; }
.region-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.region-pills button {
  font-family: inherit; font-size: .92rem; font-weight: 500; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line); color: var(--ink);
  padding: .5em 1em; border-radius: 999px; transition: .15s;
}
.region-pills button:hover { border-color: var(--primary); }
.region-pills button.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* =================== PAGE GROUPES =================== */
.finder { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.6rem; align-items: start; }
@media (max-width: 940px){ .finder { grid-template-columns: 1fr; } .finder .map-panel { order: -1; } }

.filters { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow-s); position: sticky; top: 88px; }
.filters .row { display: flex; gap: .6rem; flex-wrap: wrap; }
.filters label { font-weight: 600; font-size: .85rem; display: block; margin: 0 0 .35rem; }
.field { width: 100%; padding: .75em 1em; border: 1.5px solid var(--line); border-radius: 12px; font-size: 1rem; font-family: inherit; background: var(--surface); }
.field:focus { outline: 2px solid var(--accent); border-color: transparent; }

.results-count { font-weight: 600; margin: 1.2rem 0 .8rem; }

/* indicateur de chargement (liste des groupes) */
.gl-loading {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  padding: 2.6rem 1rem; color: var(--primary); font-weight: 700; font-size: 1.05rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-s); animation: glpulse 1.3s ease-in-out infinite;
}
.gl-loading .spinner {
  width: 24px; height: 24px; flex: none; border-radius: 50%;
  border: 3px solid var(--accent-soft); border-top-color: var(--accent);
  animation: glspin .8s linear infinite;
}
@keyframes glspin { to { transform: rotate(360deg); } }
@keyframes glpulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
.group-list { display: grid; gap: 1rem; }
.group-card { background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent); border-radius: var(--radius-s); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-s); }
.group-card h3 { margin-bottom: .15rem; }
.group-card .reg { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--primary); background: var(--primary-soft); padding: .25em .7em; border-radius: 999px; margin-bottom: .5rem; }
.group-card .meta { font-size: .94rem; color: var(--ink-soft); margin: .1rem 0; display: flex; gap: .5rem; align-items: flex-start; }
.group-card .meta b { color: var(--ink); font-weight: 600; }
.group-actions { margin-top: .7rem; display: flex; gap: .5rem; flex-wrap: wrap; }

/* Carte stylisée */
.map-panel { background: linear-gradient(160deg, #eaf2f5, #f6ece0); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-s); position: sticky; top: 88px; }
.map-panel .map-note { font-size: .8rem; color: var(--ink-soft); text-align: center; margin-top: .4rem; }
.map-svg { width: 100%; height: auto; display: block; }
.map-dot { cursor: pointer; transition: .2s; }
.map-dot circle.halo { fill: rgba(224,144,42,.25); }
.map-dot circle.core { fill: var(--terra); stroke: #fff; stroke-width: 2; }
.map-dot.active circle.core { fill: var(--accent); r: 11; }
.map-dot.active circle.halo { fill: rgba(224,144,42,.5); }
.map-dot text { font-family: var(--sans); font-size: 11px; font-weight: 600; fill: var(--primary-dk); }

/* =================== PAGE AGENDA =================== */
.toolbar { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.6rem; }
.toolbar .field { width: auto; min-width: 170px; }
.event {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 1.2rem; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-s); transition: transform .15s ease;
}
.event:hover { transform: translateY(-2px); }
.event .date { text-align: center; background: var(--surface-2); border-radius: 14px; padding: .6rem .3rem; }
.event .date .d { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: 1; color: var(--terra); }
.event .date .m { text-transform: uppercase; font-size: .74rem; letter-spacing: .08em; font-weight: 700; color: var(--ink-soft); }
.event .tag { display: inline-block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .25em .7em; border-radius: 999px; margin-bottom: .35rem; }
.tag.camp { background: var(--accent-soft); color: var(--accent-dk); }
.tag.session { background: var(--primary-soft); color: var(--primary-dk); }
.tag.louange { background: var(--terra-soft); color: var(--terra); }
.tag.formation { background: #E3F0E6; color: #2f6b43; }
.event .ev-meta { font-size: .94rem; color: var(--ink-soft); }
.event .ev-actions { display: flex; flex-direction: column; gap: .45rem; }
@media (max-width: 720px){
  .event { grid-template-columns: 66px 1fr; }
  .event .ev-actions { grid-column: 1 / -1; flex-direction: row; }
}

/* FAQ */
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-s); padding: .4rem 1.2rem; margin-bottom: .7rem; }
.faq summary { cursor: pointer; font-weight: 600; padding: .9rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--serif); font-size: 1.08rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); transition: .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1rem; margin: 0; color: var(--ink-soft); }

/* =================== FOOTER =================== */
.site-footer { background: #1b2b34; color: #cdd9df; margin-top: 2rem; }
.site-footer .container { padding-block: clamp(40px, 6vw, 64px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; }
@media (max-width: 880px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--serif); color: #fff; font-size: 1.05rem; margin: 0 0 .8rem; }
.site-footer a { color: #cdd9df; text-decoration: none; display: block; padding: .22rem 0; font-size: .95rem; }
.site-footer a:hover { color: var(--accent); }
.site-footer .brand { color: #fff; margin-bottom: .8rem; }
.foot-news input { width: 100%; padding: .7em 1em; border-radius: 999px; border: 1px solid #36474f; background: #22333c; color: #fff; margin-bottom: .6rem; }
.foot-bottom { border-top: 1px solid #2c3d46; margin-top: 2rem; padding-top: 1.2rem; font-size: .85rem; color: #8fa3ad; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* Utilitaires */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }
.badge-soft { display:inline-block; background: var(--accent-soft); color: var(--accent-dk); font-weight:600; font-size:.8rem; padding:.3em .8em; border-radius:999px; }
.note-geo { background: var(--primary-soft); border-left: 4px solid var(--primary); border-radius: 10px; padding: 1rem 1.2rem; font-size: .92rem; color: var(--primary-dk); }

/* =================== HÉROS AVEC PHOTO =================== */
.hero.photo { background: var(--primary-dk); }
.hero.photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-bg); background-size: cover; background-position: center;
}
.hero.photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,36,52,.70) 0%, rgba(13,36,52,.64) 45%, rgba(13,36,52,.80) 100%);
}
.hero.photo .container { position: relative; z-index: 2; }
.hero.photo h1, .hero.photo p, .hero.photo .eyebrow { text-shadow: 0 2px 18px rgba(0,0,0,.72), 0 1px 4px rgba(0,0,0,.55); }
.hero.photo p { color: #fff; }

/* =================== FIGURE / IMAGE ENCADRÉE =================== */
.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--surface); }
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figure.tall img { aspect-ratio: 3/4; }
.figcap { font-size: .85rem; color: var(--ink-soft); padding: .7rem 1rem; }

/* bloc texte + image */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem; align-items: center; }
.split.rev { grid-template-columns: .9fr 1.1fr; }
.split.rev > .split-media { order: -1; }
@media (max-width: 820px){ .split, .split.rev { grid-template-columns: 1fr; } .split.rev > .split-media { order: 0; } }

/* bandeau image pleine largeur avec citation */
.photo-band { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display: grid; align-items: end; box-shadow: var(--shadow); }
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-band .overlay { position: relative; z-index: 1; padding: 2rem; background: linear-gradient(to top, rgba(20,40,52,.86), rgba(20,40,52,.15) 70%, transparent); color: #fff; width: 100%; }
.photo-band .overlay p { font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.7rem); margin: 0; max-width: 32ch; }
.photo-band .overlay small { color: rgba(255,255,255,.8); }

/* =================== GALERIE D'AFFICHES =================== */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1.2rem; }
.poster { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-s); overflow: hidden; box-shadow: var(--shadow-s); transition: transform .18s ease, box-shadow .2s ease; }
.poster:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.poster .thumb { aspect-ratio: 3/4; overflow: hidden; background: var(--surface-2); }
.poster .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster .cap { padding: .8rem 1rem 1rem; }
.poster .cap h3 { font-size: 1rem; margin: 0 0 .15rem; }
.poster .cap p { font-size: .85rem; color: var(--ink-soft); margin: 0; }

/* =================== FORMULAIRES =================== */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-s); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }
.form label { font-weight: 600; font-size: .88rem; display: block; margin: 0 0 .35rem; }
.form textarea.field { min-height: 130px; resize: vertical; }
.form .consent { font-size: .82rem; color: var(--ink-soft); display: flex; gap: .5rem; align-items: flex-start; }

/* =================== DON : MONTANTS =================== */
.amounts { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin: 1.2rem 0; }
.amounts button { font-family: inherit; font-size: 1.05rem; font-weight: 700; cursor: pointer; background: var(--surface); border: 2px solid var(--line); color: var(--ink); padding: .7em 1.4em; border-radius: 14px; transition: .15s; }
.amounts button:hover { border-color: var(--accent); }
.amounts button.active { background: var(--accent); border-color: var(--accent); color: #2a1c05; }
.iban { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; background: var(--surface); border: 1px dashed var(--accent); border-radius: 10px; padding: .8rem 1rem; display: inline-block; letter-spacing: .04em; }

/* steps / parcours */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: s; }
@media (max-width: 880px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 1.3rem; box-shadow: var(--shadow-s); position: relative; }
.step::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dk); font-weight: 800; font-family: var(--serif); margin-bottom: .7rem; }

/* liste à puces colombe */
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 1.9em; line-height: 1.55; }
.ticks li::before { content: "🕊️"; position: absolute; left: 0; top: 0; line-height: 1.55; }

/* vignette image en tête de carte */
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; border: 1px solid var(--line); background: var(--surface-2); }

/* planning jour par jour */
.day-times { list-style: none; padding: 0; margin: .5rem 0 0; display: grid; gap: .45rem; font-size: .95rem; }
.day-times li { display: flex; gap: .7rem; align-items: baseline; }
.day-times li b { color: var(--primary-dk); min-width: 96px; flex: none; }

/* tableaux de prix */
.price-table { width: 100%; border-collapse: collapse; font-size: .93rem; margin: .3rem 0 1rem; }
.price-table th, .price-table td { text-align: left; padding: .55rem .7rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table thead th { background: var(--surface-2); font-weight: 700; color: var(--primary-dk); }
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; font-weight: 600; }
.price-table .sub td:first-child { padding-left: 1.6rem; color: var(--ink-soft); font-weight: 400; }

/* =================== ÉVÉNEMENT VEDETTE (PRAISE) =================== */
.featured-event {
  display: grid; grid-template-columns: 300px 1fr; gap: 0;
  background: linear-gradient(120deg, var(--primary-dk), var(--primary) 58%, #2f6c7e);
  color: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 2px solid var(--accent); position: relative;
}
.featured-event .fe-img { position: relative; min-height: 300px; background: #0e2531; }
.featured-event .fe-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-event .fe-body { padding: clamp(1.6rem, 3.2vw, 2.6rem); }
.fe-ribbon {
  display: inline-flex; align-items: center; gap: .4em; background: var(--accent); color: #2a1c05;
  font-weight: 800; font-size: .76rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .45em 1.05em; border-radius: 999px; margin-bottom: 1rem;
}
.featured-event h2 { color: #fff; margin: .1em 0 .3em; }
.featured-event p { color: rgba(255,255,255,.92); margin: 0 0 .4em; }
.fe-meta { display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; margin: 1.1rem 0 1.5rem; font-weight: 600; }
.fe-meta span { display: inline-flex; gap: .4em; align-items: center; }
.featured-event .hero-cta { margin-top: 0; }
@media (max-width: 760px){
  .featured-event { grid-template-columns: 1fr; }
  /* sur mobile : afficher le flyer en entier (pas de recadrage) */
  .featured-event .fe-img { min-height: 0; position: static; }
  .featured-event .fe-img img { position: static; width: 100%; height: auto; object-fit: contain; display: block; }
}

/* =================== BANDEAU COOKIES =================== */
.cookie-banner {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 1000;
  width: min(740px, calc(100% - 28px));
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-left: 5px solid var(--accent);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem; display: none;
}
.cookie-banner.show { display: block; animation: cb-in .25s ease; }
@keyframes cb-in { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
.cookie-banner p { margin: 0 0 .85rem; font-size: .92rem; line-height: 1.5; }
.cookie-banner .cb-link { color: var(--primary); font-weight: 600; }
.cookie-banner .cb-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
@media (max-width: 540px){ .cookie-banner .cb-actions .btn { flex: 1 1 100%; justify-content: center; } }
