/* =========================================================
   MON ÎLOT ROSE — Feuille de style
   Charte : Pin Maritime #31584C · Aube Rosée #F6C2CE
            Sable Clair #FFF6F1 · Écume de Pin #77A399
   Typo   : Montserrat (titres/texte) · Caveat (accents manuscrits)
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --pin: #31584c;          /* vert foncé principal */
  --pin-dark: #244035;     /* vert plus profond (hover) */
  --rose: #f6c2ce;         /* rose doux */
  --rose-deep: #e79bad;    /* rose accent (boutons hover) */
  --sable: #fff6f1;        /* crème (fond) */
  --sable-2: #fdeee6;      /* crème un peu plus soutenu */
  --ecume: #77a399;        /* vert sauge */
  --ecume-soft: #d9e7e2;   /* sauge très clair */
  --texte: #2c3f38;        /* texte courant */
  --texte-doux: #5b6f68;   /* texte secondaire */
  --blanc: #ffffff;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(49, 88, 76, 0.08);
  --shadow-md: 0 12px 32px rgba(49, 88, 76, 0.12);
  --shadow-lg: 0 24px 60px rgba(49, 88, 76, 0.16);

  --maxw: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);

  --ff-titre: "Montserrat", system-ui, sans-serif;
  --ff-texte: "Montserrat", system-ui, sans-serif;
  --ff-script: "Caveat", "Segoe Script", cursive;
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-texte);
  color: var(--texte);
  background: var(--sable);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-titre);
  color: var(--pin);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); }
p { color: var(--texte-doux); }
strong { color: var(--texte); font-weight: 600; }

.script {
  font-family: var(--ff-script);
  color: var(--ecume);
  font-weight: 600;
  line-height: 1;
}

/* Suréminence "eyebrow" au-dessus des titres */
.eyebrow {
  font-family: var(--ff-script);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  color: var(--rose-deep);
  display: inline-block;
  margin-bottom: .25rem;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sable2 { background: var(--sable-2); }
.section--ecume { background: var(--ecume-soft); }
.section--pin { background: var(--pin); }
.section--pin h1, .section--pin h2, .section--pin h3 { color: var(--sable); }
.section--pin p { color: rgba(255, 246, 241, 0.85); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .75rem; font-size: 1.08rem; }

.lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); color: var(--texte); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--rose { background: var(--rose); color: var(--pin); box-shadow: var(--shadow-sm); }
.btn--rose:hover { background: var(--rose-deep); }
.btn--pin { background: var(--pin); color: var(--sable); }
.btn--pin:hover { background: var(--pin-dark); }
.btn--ghost { background: transparent; color: var(--pin); border-color: var(--pin); }
.btn--ghost:hover { background: var(--pin); color: var(--sable); }
.btn--light { background: var(--sable); color: var(--pin); }
.btn--light:hover { background: var(--blanc); }
.btn--ghost-light { background: transparent; color: var(--sable); border-color: rgba(255,246,241,.6); }
.btn--ghost-light:hover { background: var(--sable); color: var(--pin); border-color: var(--sable); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 246, 241, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(49, 88, 76, 0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .7rem;
}
.nav__logo img { height: 96px; width: auto; }
@media (max-width: 560px) { .nav__logo img { height: 72px; } }
.nav__menu {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem);
}
.nav__links {
  display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem);
}
.nav__links a {
  font-weight: 500; color: var(--pin); font-size: .98rem;
  position: relative; padding: .25rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--rose-deep);
  transition: width .22s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--pin-dark); font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: .6rem; }

/* Lien "Nous soutenir" mis en avant (pilule rose) */
.nav__links a.nav__soutenir {
  background: var(--rose); color: var(--pin);
  padding: .5rem 1.1rem; border-radius: var(--r-pill);
  font-weight: 600; transition: background .2s ease, transform .18s ease;
}
.nav__links a.nav__soutenir::after { display: none; }
.nav__links a.nav__soutenir:hover { background: var(--rose-deep); transform: translateY(-1px); }
.nav__links a.nav__soutenir[aria-current="page"] { background: var(--rose-deep); color: var(--pin); }

.nav__toggle {
  display: none; background: none; border: 0;
  width: 44px; height: 44px; position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 10px; right: 10px; height: 2.5px;
  background: var(--pin); border-radius: 2px; transition: .25s ease;
}
.nav__toggle span { top: 50%; transform: translateY(-50%); }
.nav__toggle span::before { top: -8px; }
.nav__toggle span::after { top: 8px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 72px 0 auto 0;
    background: var(--sable);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 1rem clamp(1.15rem, 4vw, 2.5rem) 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .3s ease;
    display: flex;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__links { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; width: 100%; padding: .85rem 0; border-bottom: 1px solid rgba(49,88,76,.08); }
  .nav__links a.nav__soutenir { display: inline-block; width: auto; margin: .8rem 0; padding: .6rem 1.3rem; border-bottom: 0; }
  .nav__cta { margin-top: 1rem; width: 100%; }
  .nav__cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(246,194,206,.45), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(119,163,153,.28), transparent 55%),
    var(--sable);
  padding-block: clamp(3rem, 7vw, 6rem) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__eyebrow { margin-bottom: .5rem; }
.hero h1 { margin-bottom: 1rem; }
.hero h1 .accent { color: var(--rose-deep); }
.hero__lead { max-width: 48ch; margin-bottom: 1.8rem; }
.hero__actions { margin-bottom: 1.6rem; }
.hero__note { font-size: .92rem; color: var(--texte-doux); display: flex; align-items: center; gap: .5rem; }

.hero__visual { position: relative; display: grid; place-items: center; }
.hero__badge {
  width: min(100%, 420px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #3a6555, var(--pin) 70%);
  display: grid; place-items: center; padding: 12%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__badge img { width: 78%; }
.hero__logo { width: min(100%, 520px); height: auto; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: .8; z-index: -1;
}
.hero__wave {
  width: 100%; margin-top: clamp(1.5rem, 4vw, 3rem);
  line-height: 0;
}
.hero__wave svg { width: 100%; height: auto; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__badge { width: min(78%, 320px); }
}

/* ---------- Cartes ---------- */
.grid { display: grid; gap: clamp(1.2rem, 3vw, 2rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--blanc);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(49,88,76,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 58px; height: 58px; border-radius: var(--r-md);
  background: var(--rose); color: var(--pin);
  display: grid; place-items: center; margin-bottom: 1.1rem;
  font-size: 1.6rem;
}
.card__icon--ecume { background: var(--ecume-soft); }
.card__icon--pin { background: var(--pin); color: var(--sable); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .98rem; }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem; color: var(--pin); font-weight: 600; font-size: .95rem;
}
.card__link:hover { gap: .7rem; color: var(--rose-deep); }

/* ---------- Statistiques ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2rem); text-align: center; }
.stat__num { font-family: var(--ff-titre); font-weight: 700; font-size: clamp(2.2rem, 1.5rem + 2.5vw, 3.2rem); color: var(--rose); line-height: 1; }
.section--pin .stat__label { color: rgba(255,246,241,.85); }
.stat__label { margin-top: .5rem; font-size: .98rem; }

/* ---------- Événements ---------- */
.event {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center;
  background: var(--blanc); border-radius: var(--r-md);
  padding: 1.3rem 1.6rem; box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--rose);
  transition: transform .2s ease, box-shadow .2s ease;
}
.event:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.event__date {
  text-align: center; background: var(--sable-2); border-radius: var(--r-sm);
  padding: .6rem .9rem; min-width: 76px;
}
.event__day { font-family: var(--ff-titre); font-weight: 700; font-size: 1.7rem; color: var(--pin); line-height: 1; }
.event__month { text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; color: var(--rose-deep); font-weight: 600; }
.event__body h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.event__meta { font-size: .9rem; color: var(--texte-doux); display: flex; flex-wrap: wrap; gap: .3rem 1rem; }
.event__tag {
  align-self: center; font-size: .8rem; font-weight: 600; color: var(--pin);
  background: var(--ecume-soft); padding: .35rem .8rem; border-radius: var(--r-pill);
}
@media (max-width: 640px) {
  .event { grid-template-columns: auto 1fr; }
  .event__tag { grid-column: 2; justify-self: start; }
}

/* ---------- Témoignage ---------- */
.quote {
  max-width: 820px; margin-inline: auto; text-align: center;
}
.quote__mark { font-family: var(--ff-script); font-size: 5rem; color: var(--rose); line-height: .5; display: block; margin-bottom: 1rem; }
.quote p { font-size: clamp(1.25rem, 1.1rem + 1vw, 1.7rem); color: var(--pin); font-weight: 500; line-height: 1.5; }
.quote__author { margin-top: 1.4rem; font-weight: 600; color: var(--ecume); }

/* ---------- Bandeau CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: var(--sable); margin-bottom: .8rem; }
.cta-band p { max-width: 60ch; margin: 0 auto 1.8rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Texte + visuel (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--ecume-soft), var(--rose));
  aspect-ratio: 4/3; display: grid; place-items: center; position: relative;
}
.split__media img { width: 60%; opacity: .9; }
.split__media .ph-note {
  position: absolute; bottom: 10px; left: 0; right: 0; text-align: center;
  font-size: .78rem; color: var(--pin); opacity: .7;
}
.split ul.checklist { margin-top: 1.2rem; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--texte); }
.checklist li::before {
  content: "✓"; flex: 0 0 24px; height: 24px; margin-top: 2px;
  background: var(--rose); color: var(--pin); border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* ---------- Page hero (bandeau titre) ---------- */
.page-hero {
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(246,194,206,.4), transparent 60%),
    var(--sable-2);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 0; }
.page-hero p { max-width: 60ch; margin: 1rem auto 0; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: var(--texte-doux); margin-bottom: .5rem; }
.breadcrumb a:hover { color: var(--rose-deep); }

/* ---------- Formulaire ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--pin); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem; color: var(--texte);
  padding: .8rem 1rem; border: 1.5px solid rgba(49,88,76,.18);
  border-radius: var(--r-sm); background: var(--blanc); transition: border .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ecume); box-shadow: 0 0 0 3px rgba(119,163,153,.2);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--texte-doux); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Info / contact cartes ---------- */
.info-list { display: grid; gap: 1.4rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic {
  flex: 0 0 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--ecume-soft); display: grid; place-items: center; font-size: 1.3rem;
}
.info-item h4 { color: var(--pin); font-size: 1rem; margin-bottom: .1rem; }
.info-item p, .info-item a { font-size: .96rem; color: var(--texte-doux); }
.info-item a:hover { color: var(--rose-deep); }

/* ---------- Récit fondatrice ---------- */
.founder {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
  max-width: 1000px; margin-inline: auto;
}
.founder__photo { margin: 0; }
.founder__photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 25%;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
}
.founder__photo figcaption {
  text-align: center; margin-top: .7rem; font-size: .9rem; color: var(--texte-doux);
}
.founder .prose { max-width: none; margin: 0; }
@media (max-width: 760px) {
  .founder { grid-template-columns: 1fr; }
  .founder__photo { max-width: 300px; margin-inline: auto; }
  .founder__photo img { aspect-ratio: 4/3; object-position: center 20%; }
}

/* ---------- Parutions presse ---------- */
.press-list { display: grid; gap: clamp(1.6rem, 4vw, 2.6rem); }
.press-item {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(1.3rem, 3vw, 2.4rem); align-items: center;
}
.press-item__clip { display: block; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; }
.press-item__clip img { width: 100%; height: 300px; object-fit: cover; object-position: top; display: block; transition: transform .35s ease; }
.press-item__clip:hover img { transform: scale(1.04); }
.press-item__more { font-size: .82rem; color: var(--texte-doux); margin-top: .5rem; }
.press-followup { margin: 0 auto; max-width: 780px; text-align: center; }
.press-followup img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-md); display: block; }
.press-followup figcaption { margin-top: .9rem; color: var(--texte); font-size: .98rem; }
@media (max-width: 640px) {
  .press-item { grid-template-columns: 1fr; }
  .press-item__clip { max-width: 330px; margin-inline: auto; }
}

/* ---------- Récit / prose ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose p { margin-bottom: 1.15rem; color: var(--texte); }
.prose p:last-child { margin-bottom: 0; }
.story-highlight {
  font-family: var(--ff-script);
  color: var(--ecume);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  line-height: 1.1;
  margin-block: 1.6rem !important;
}
.story-sign {
  margin-top: 1.8rem !important;
  font-weight: 600; color: var(--pin);
}
.story-sign .name {
  font-family: var(--ff-script);
  font-size: 1.9rem; color: var(--rose-deep);
  display: block; line-height: 1;
}

/* ---------- Séparateur vague ---------- */
.wave-divider { line-height: 0; }
.wave-divider svg { width: 100%; height: clamp(40px, 6vw, 90px); display: block; }

/* ---------- Encadré accent ---------- */
.callout {
  background: var(--rose); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.callout h3 { margin-bottom: .3rem; }
.callout p { color: var(--pin); opacity: .85; }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--pin); color: rgba(255,246,241,.85); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,246,241,.7); font-size: .95rem; max-width: 32ch; }
.site-footer h4 { color: var(--sable); font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,246,241,.8); font-size: .95rem; }
.footer-links a:hover { color: var(--rose); }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,246,241,.1); display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--rose); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; fill: var(--sable); }
.footer-social a:hover svg { fill: var(--pin); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,246,241,.15);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  font-size: .85rem; color: rgba(255,246,241,.6);
}
.footer-bottom a:hover { color: var(--rose); }

/* ---------- Newsletter inline ---------- */
.newsletter { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.newsletter input {
  flex: 1 1 200px; padding: .75rem 1rem; border-radius: var(--r-pill);
  border: 1px solid rgba(255,246,241,.3); background: rgba(255,246,241,.08); color: var(--sable);
}
.newsletter input::placeholder { color: rgba(255,246,241,.55); }
.newsletter input:focus { outline: none; border-color: var(--rose); }

/* ---------- Responsive grilles ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .btn-row .btn { width: auto; }
}

/* ---------- Accessibilité ---------- */
:focus-visible { outline: 3px solid var(--ecume); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--pin); color: var(--sable); padding: .7rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
