/* =====================================================================
   BRYE.BE — Feuille de style principale
   Identité « Mix vivant » : base moderne épurée + touches nature & festives
   Auteur : Devlooper — partenaire des nouvelles initiatives villageoises
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Variables & thème                                               */
/* ------------------------------------------------------------------ */
:root {
  /* Couleurs nature */
  --green-900: #143d28;
  --green-700: #1f6b43;
  --green-600: #2f8a57;
  --green-500: #3fa36a;
  --green-200: #c4e6d2;
  --green-100: #e6f3ec;

  /* Couleurs festives / chaleureuses */
  --gold-600: #c9791a;
  --gold-500: #e6962f;
  --gold-200: #f6dcae;
  --gold-100: #fbeed8;

  /* Accents festifs (Ducasse) */
  --pink: #f0407f;
  --blue: #2f5fd0;
  --sky: #4cb6cb;

  /* Neutres */
  --ink: #18241d;
  --ink-soft: #4a584f;
  --ink-faint: #7c897f;
  --line: #e7e3d8;
  --cream: #faf7ef;
  --paper: #ffffff;
  --paper-2: #f4efe3;

  /* Marque Devlooper */
  --devlooper: #16335f;

  /* Sémantique */
  --bg: var(--cream);
  --surface: var(--paper);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --brand: var(--green-700);
  --brand-strong: var(--green-900);
  --accent: var(--gold-500);

  /* Typo */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Échelle de texte (pilotée par la barre d'accessibilité) */
  --font-scale: 1;

  /* Rayons & ombres */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20, 61, 40, .06);
  --shadow-md: 0 14px 34px rgba(20, 61, 40, .10);
  --shadow-lg: 0 26px 60px rgba(20, 61, 40, .16);

  /* Mise en page */
  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --header-h: 74px;
}

/* Contraste élevé (accessibilité) */
html[data-contrast="high"] {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #000000;
  --text-soft: #1a1a1a;
  --text-faint: #333333;
  --line: #000000;
  --brand: #0a4d2a;
  --brand-strong: #062f19;
  --accent: #8a4b00;
  --shadow-sm: 0 0 0 1px #000;
  --shadow-md: 0 0 0 2px #000;
  --shadow-lg: 0 0 0 2px #000;
}
html[data-contrast="high"] .btn,
html[data-contrast="high"] .card,
html[data-contrast="high"] .chip { border: 2px solid #000 !important; }

/* Police adaptée à la lecture (dyslexie / confort) */
html[data-readable="on"] {
  --font-body: "Verdana", "Plus Jakarta Sans", sans-serif;
  --font-display: "Verdana", Georgia, serif;
  letter-spacing: .015em;
  word-spacing: .08em;
  line-height: 1.85;
}

/* ------------------------------------------------------------------ */
/* 2. Reset & bases                                                   */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  font-size: calc(100% * var(--font-scale));
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

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

img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--brand-strong);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
p { color: var(--text-soft); }

:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 4px;
}
html[data-contrast="high"] :focus-visible { outline-color: #000; }

::selection { background: var(--green-200); color: var(--green-900); }

/* Accès rapide clavier */
.skip-link {
  position: fixed; left: 12px; top: -120px; z-index: 2000;
  background: var(--green-700); color: #fff; padding: .8rem 1.2rem;
  border-radius: var(--r-sm); font-weight: 700; box-shadow: var(--shadow-md);
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Material Symbols */
.material-symbols-rounded {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  vertical-align: middle;
  user-select: none;
}
.ms-fill { font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24; }

/* ------------------------------------------------------------------ */
/* 3. Conteneurs & utilitaires                                        */
/* ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-sm { padding-block: clamp(2.2rem, 5vw, 3.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow .material-symbols-rounded { font-size: 1.15rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-soft); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; }
.mt-4 { margin-top: 2.4rem; } .mb-2 { margin-bottom: 1rem; }
.muted { color: var(--ink-faint); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------------ */
/* 4. Boutons & puces                                                 */
/* ------------------------------------------------------------------ */
.btn {
  --b: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: var(--r-pill);
  font-weight: 700; font-size: 1rem; border: 2px solid transparent;
  background: var(--b); color: #fff; transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .material-symbols-rounded { font-size: 1.3rem; }
.btn-accent { --b: var(--gold-500); color: #3a2400; }
.btn-festive { --b: var(--pink); }
.btn-ghost {
  background: transparent; color: var(--brand-strong);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--green-100); border-color: var(--green-200); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn-block { width: 100%; }
/* CTA compact dans l'en-tête : jamais plus haut que l'élément de menu actif (desktop)
   ni que le bouton d'ouverture du menu (mobile) */
.nav-cta { height: 40px; padding: 0 1.05rem; font-size: .95rem; }
.nav-cta .material-symbols-rounded { font-size: 1.2rem; }

.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .85rem; border-radius: var(--r-pill);
  background: var(--green-100); color: var(--green-700);
  font-weight: 700; font-size: .82rem;
}
.chip .material-symbols-rounded { font-size: 1.05rem; }
.chip-gold { background: var(--gold-100); color: var(--gold-600); }
.chip-pink { background: #fde3ee; color: var(--pink); }
.chip-blue { background: #e2eaff; color: var(--blue); }

/* ------------------------------------------------------------------ */
/* 5. En-tête / navigation                                            */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--paper);
  padding-top: env(safe-area-inset-top, 0px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
html[data-contrast="high"] .site-header { background: #fff; }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 800; }
.brand-logo { width: 44px; height: 44px; border-radius: 13px; flex: none; box-shadow: var(--shadow-sm); }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; color: var(--brand-strong); line-height: 1; }
.brand-tag { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .55rem .9rem; border-radius: var(--r-pill); font-weight: 600; color: var(--text-soft);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--green-100); color: var(--green-700); }
.nav-links a[aria-current="page"] { background: var(--green-700); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--surface);
  border: 1px solid var(--line); color: var(--brand-strong);
  transition: background .2s, transform .15s;
}
.icon-btn:hover { background: var(--green-100); transform: translateY(-1px); }
.icon-btn .material-symbols-rounded { font-size: 1.5rem; }

.nav-toggle { display: none; }

/* Bascule mobile : on masque la barre desktop et on ouvre un panneau plein écran */
@media (max-width: 920px) {
  .nav > nav { display: none; }
  .nav-toggle { display: grid; }
}

/* ------------------------------------------------------------------ */
/* 5b. Menu mobile plein écran                                        */
/* ------------------------------------------------------------------ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1600;
  background: var(--bg); display: none; flex-direction: column;
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-menu.open { display: flex; }
body.menu-open { overflow: hidden; }

.mobile-menu-head {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: var(--header-h); padding-inline: var(--gutter);
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.mobile-menu-body {
  flex: 1; padding: 1.4rem var(--gutter) 2.6rem;
  display: flex; flex-direction: column; gap: 1.6rem;
}
.mobile-nav { display: flex; flex-direction: column; gap: .35rem; }
.mobile-nav a {
  display: flex; align-items: center; gap: .7rem;
  padding: 1rem 1.1rem; border-radius: var(--r-md);
  font-weight: 700; font-size: 1.18rem; color: var(--text);
  border: 1px solid var(--line); background: var(--surface);
}
.mobile-nav a .material-symbols-rounded { color: var(--green-600); }
.mobile-nav a:hover { background: var(--green-100); color: var(--green-700); }
.mobile-nav a[aria-current="page"] { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.mobile-nav a[aria-current="page"] .material-symbols-rounded { color: #fff; }
.mm-cta { align-self: stretch; justify-content: center; }
.mm-section-title {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 800; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint);
}
.mm-a11y { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.mm-a11y .a11y-group:first-of-type { margin-top: 1rem; }
.mm-a11y .a11y-narrate { margin-top: 1.2rem; }
html[data-contrast="high"] .mobile-menu { background: #fff; }

/* ------------------------------------------------------------------ */
/* 6. Barre d'accessibilité                                           */
/* ------------------------------------------------------------------ */
.a11y-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 1200;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-700); color: #fff; border: none;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .2s;
}
.a11y-fab:hover { transform: scale(1.06); }
.a11y-fab .material-symbols-rounded { font-size: 1.8rem; }

.a11y-panel {
  position: fixed; right: 18px; bottom: 86px; z-index: 1200;
  width: min(330px, calc(100vw - 36px));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.3rem; color: var(--text);
  transform: translateY(14px) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .25s, opacity .25s;
}
.a11y-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.a11y-panel h2 { font-size: 1.15rem; display: flex; align-items: center; gap: .5rem; }
.a11y-group { margin-top: 1.1rem; }
.a11y-group > span.label { display: block; font-weight: 700; font-size: .85rem; color: var(--text); margin-bottom: .5rem; }
.a11y-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.a11y-row .opt {
  flex: 1 1 auto; min-width: 60px; padding: .6rem .4rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--surface); color: var(--text);
  font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  transition: background .2s, border-color .2s;
}
.a11y-row .opt:hover { background: var(--green-100); }
.a11y-row .opt[aria-pressed="true"] { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.a11y-narrate { width: 100%; margin-top: 1.2rem; }
.a11y-reset { width: 100%; margin-top: .6rem; background: transparent; color: var(--text-soft); border: 1.5px solid var(--line); padding: .6rem; border-radius: var(--r-sm); font-weight: 600; }
.a11y-reset:hover { background: var(--paper-2); }

/* Surlignage de la phrase lue */
.tts-active { background: var(--gold-200); box-shadow: 0 0 0 4px var(--gold-200); border-radius: 4px; }

/* ------------------------------------------------------------------ */
/* 7. Héros                                                            */
/* ------------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; background: var(--green-900); color: #fff; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,38,24,.30) 0%, rgba(10,38,24,.20) 40%, rgba(10,38,24,.78) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(4rem, 12vw, 8rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero p { color: rgba(255,255,255,.92); max-width: 52ch; }
.hero .eyebrow { color: var(--gold-200); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 1.2rem; transform: translateX(-50%); z-index: 2;
  color: rgba(255,255,255,.8); display: grid; place-items: center; animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

@media (max-width: 920px) {
  .hero {
    /* Fallback CSS ; la hauteur exacte est posée en JS (innerHeight iOS Safari) */
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
  }
  .hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(1.5rem, 4vw, 3rem);
  }
}

/* ------------------------------------------------------------------ */
/* 8. Cartes & grilles                                                */
/* ------------------------------------------------------------------ */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card.is-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-media { aspect-ratio: 16 / 10; background: var(--green-100); position: relative; overflow: hidden; }
.card-media img, .card-media svg { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card-body h3 { color: var(--brand-strong); }
.card-tagrow { display: flex; flex-wrap: wrap; gap: .4rem; }
.card-link { margin-top: auto; font-weight: 700; color: var(--green-700); display: inline-flex; align-items: center; gap: .35rem; }
.card.is-link:hover .card-link { gap: .6rem; }

.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .7rem;
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700);
}
.feature-icon .material-symbols-rounded { font-size: 1.7rem; }
.feature-icon.gold { background: var(--gold-100); color: var(--gold-600); }
.feature-icon.pink { background: #fde3ee; color: var(--pink); }
.feature-icon.blue { background: #e2eaff; color: var(--blue); }

/* Bandeau d'image en panneaux alternés */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split-media img, .split-media svg { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* Statistiques */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1rem; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--green-700); font-weight: 600; }
.stat-label { font-size: .92rem; color: var(--text-soft); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* 9. Section festive (Ducasse)                                       */
/* ------------------------------------------------------------------ */
.band-festive {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff; border-radius: var(--r-lg); overflow: hidden; position: relative;
}
.band-festive::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 12% 20%, rgba(240,64,127,.28), transparent 35%),
                    radial-gradient(circle at 88% 30%, rgba(230,150,47,.30), transparent 38%);
  pointer-events: none;
}
.band-festive .inner { position: relative; z-index: 2; padding: clamp(2rem, 5vw, 3.4rem); }
.band-festive h2, .band-festive h3 { color: #fff; }
.band-festive p { color: rgba(255,255,255,.9); }

/* Compte à rebours */
.countdown { display: flex; gap: .7rem; flex-wrap: wrap; }
.cd-unit {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md); padding: .9rem 1.1rem; min-width: 78px; text-align: center;
  backdrop-filter: blur(4px);
}
.cd-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1; color: #fff; }
.cd-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.8); margin-top: .35rem; }

/* ------------------------------------------------------------------ */
/* 10. Programme / timeline                                           */
/* ------------------------------------------------------------------ */
.daytabs { display: flex; flex-wrap: wrap; gap: .6rem; }
.daytab {
  flex: 1 1 200px; text-align: left; padding: 1rem 1.2rem; border-radius: var(--r-md);
  border: 2px solid var(--line); background: var(--surface); color: var(--text);
  transition: border-color .2s, background .2s;
}
.daytab strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--brand-strong); }
.daytab span { font-size: .85rem; color: var(--text-soft); }
.daytab[aria-selected="true"] { border-color: var(--green-700); background: var(--green-100); }
.daytab:hover { border-color: var(--green-500); }

.timeline { position: relative; margin-top: 1.8rem; padding-left: 1.6rem; }
.timeline::before { content: ""; position: absolute; left: 6px; top: .4rem; bottom: .4rem; width: 2px; background: var(--green-200); }
.tl-item { position: relative; padding: 0 0 1.5rem 1.4rem; }
.tl-item::before {
  content: ""; position: absolute; left: -1.6rem; top: .35rem; width: 14px; height: 14px;
  border-radius: 50%; background: var(--green-600); border: 3px solid var(--surface); box-shadow: 0 0 0 1px var(--green-200);
}
.tl-time { font-weight: 800; color: var(--green-700); font-size: .95rem; }
.tl-title { font-weight: 700; color: var(--brand-strong); margin-top: .1rem; }
.tl-desc { color: var(--text-soft); font-size: .95rem; margin-top: .15rem; }
.tl-item.highlight .tl-title::after {
  content: "À ne pas manquer"; display: inline-block; margin-left: .5rem; font-size: .68rem;
  background: var(--gold-100); color: var(--gold-600); padding: .12rem .5rem; border-radius: var(--r-pill); font-weight: 800; vertical-align: middle;
}

/* ------------------------------------------------------------------ */
/* 11. Galerie / illustrations                                        */
/* ------------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); border: 1px solid var(--line); }
.gallery img, .gallery svg { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery figcaption { padding: .7rem .9rem; font-size: .85rem; color: var(--text-soft); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* 12. Bloc info / encarts                                            */
/* ------------------------------------------------------------------ */
.note {
  background: var(--green-100); border: 1px solid var(--green-200); border-left: 5px solid var(--green-600);
  border-radius: var(--r-md); padding: 1.2rem 1.4rem; display: flex; gap: .9rem; align-items: flex-start;
}
.note .material-symbols-rounded { color: var(--green-700); font-size: 1.6rem; flex: none; }
.note.gold { background: var(--gold-100); border-color: var(--gold-200); border-left-color: var(--gold-500); }
.note.gold .material-symbols-rounded { color: var(--gold-600); }

.info-list { display: flex; flex-direction: column; gap: .9rem; }
.info-list li { display: flex; gap: .8rem; align-items: flex-start; }
.info-list .material-symbols-rounded { color: var(--green-700); flex: none; }
.info-list strong { display: block; color: var(--brand-strong); }
.info-list span { color: var(--text-soft); }

/* Partenaires */
.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; align-items: stretch; }
.partner {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.3rem; display: grid; place-items: center; min-height: 110px; text-align: center; gap: .5rem;
  color: var(--text-soft); font-weight: 700;
}
.partner img { max-height: 50px; max-width: 100%; width: auto; object-fit: contain; }
.partner--dark { background: #1d2a32; border-color: #1d2a32; color: #fff; }
html[data-contrast="high"] .partner--dark { background: #000; border-color: #000; }

/* ------------------------------------------------------------------ */
/* 13. Pied de page                                                   */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--green-900); color: #d9e6dd; margin-top: 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.2rem; padding-block: clamp(2.6rem, 6vw, 4rem); }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #c7d8cd; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #aebfb3; margin-top: .8rem; max-width: 38ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; }
.footer-social a:hover { background: var(--green-600); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: .86rem; color: #9fb3a6; }
.devlooper-credit { display: inline-flex; align-items: center; gap: .55rem; color: #c7d8cd; }
.devlooper-credit img { height: 22px; width: auto; }
.devlooper-credit:hover { color: #fff; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ------------------------------------------------------------------ */
/* 14. Fil d'ariane & en-tête de page                                 */
/* ------------------------------------------------------------------ */
.page-hero { background: linear-gradient(180deg, var(--green-100), var(--cream)); border-bottom: 1px solid var(--line); }
.page-hero .inner { padding-block: clamp(2.4rem, 6vw, 4rem); }
.breadcrumb { display: flex; gap: .4rem; align-items: center; font-size: .85rem; color: var(--ink-faint); margin-bottom: .8rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb .material-symbols-rounded { font-size: 1rem; }
.page-hero h1 { color: var(--brand-strong); max-width: 18ch; }
.page-hero p { max-width: 60ch; margin-top: .8rem; }

/* ------------------------------------------------------------------ */
/* 15. Divers                                                         */
/* ------------------------------------------------------------------ */
.tag-line { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.divider-wave { display: block; width: 100%; height: auto; color: var(--cream); }
.bg-soft { background: var(--paper-2); }
.bg-green-soft { background: var(--green-100); }
@media (max-width: 560px) { .hide-sm { display: none; } }
.prose p { margin-bottom: 1rem; max-width: 68ch; }
.prose h2 { margin-top: 2.2rem; margin-bottom: .8rem; }
.prose h3 { margin-top: 1.6rem; margin-bottom: .5rem; }
.menu-list { display:flex; flex-direction:column; gap:.6rem; }
.menu-list li { display:flex; gap:.7rem; align-items:flex-start; color:var(--text-soft); }
.menu-list .material-symbols-rounded { color: var(--green-600); font-size:1.25rem; flex:none; }
.price-row { display:flex; justify-content:space-between; gap:1rem; padding:.7rem 0; border-bottom:1px dashed var(--line); }
.price-row strong { color: var(--brand-strong); }
.price-row span { color: var(--green-700); font-weight:800; white-space:nowrap; }
