/* ==========================================================================
   EEIL — Éclaireuses Éclaireurs Israélites de Luxembourg
   Feuille de style principale — identité "carnet de camp" scoute
   Palette ancrée dans le bleu roi et l'ambre du site national EEIF,
   et le rouge / bleu ciel du drapeau luxembourgeois.
   ========================================================================== */

:root {
  /* Papier — fond clair, plus de brun dominant */
  --canvas: #FAF7EF;
  --sand: #F1EAD6;         /* fond de sections alternées */
  --sand-dark: #E4D9BC;
  --ink: #142547;          /* encre bleu nuit, texte principal */
  --ink-soft: #4E5A72;
  --stitch: #C9BFA0;       /* fil de couture discret — jamais dominant */

  /* Bleu roi — identité du mouvement national EEIF, remplace le vert */
  --royal: #154097;
  --royal-deep: #0E2E6E;

  /* Ambre — clin d'œil à l'uniforme EEIF, couleur d'action */
  --amber: #E2900F;
  --amber-deep: #B96F06;

  /* Couleurs du Luxembourg — identité locale, foulard et écussons */
  --lux-red: #D5303F;
  --lux-red-dark: #AD2531;
  --lux-blue: #2E8FC7;
  --lux-blue-dark: #1D6A99;
  --lux-blue-pale: #BFE0F5;
  --white: #ffffff;

  /* UI */
  --bg: var(--canvas);
  --stamp: rgba(20,37,71,.18);
  --shadow-sm: 0 2px 0 rgba(20,37,71,.12);
  --shadow-md: 0 5px 0 rgba(20,37,71,.14);
  --shadow-lg: 0 9px 0 rgba(20,37,71,.16);
  --radius: 7px;
  --radius-lg: 11px;
  --maxw: 1140px;

  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset léger --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    repeating-linear-gradient(45deg, rgba(20,37,71,.018) 0px, rgba(20,37,71,.018) 1px, transparent 1px, transparent 9px),
    repeating-linear-gradient(-45deg, rgba(20,37,71,.018) 0px, rgba(20,37,71,.018) 1px, transparent 1px, transparent 9px);
}
img { max-width: 100%; display: block; }
a { color: var(--royal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--lux-red); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); font-weight: 600; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* Utilitaire "tamponné" ------------------------------------------------------ */
.stamped {
  text-transform: uppercase; letter-spacing: .05em;
  text-shadow: 1.5px 1.5px 0 var(--stamp);
}

/* Utilitaires --------------------------------------------------------------- */
.section { padding: 84px 0; }
.section--sand { background: var(--sand); }
.section--forest { background: var(--royal-deep); color: #eaf0fb; }
.section--forest h2, .section--forest h3 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--lux-red);
  margin-bottom: .6rem;
}
.section--forest .eyebrow { color: var(--lux-blue-pale); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 0 0 .4rem; }
.section-lead { max-width: 640px; margin: 0 auto 2.6rem; color: var(--ink-soft); font-size: 1.08rem; }
.section--forest .section-lead { color: #c4d6f0; }

/* Boutons ------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 800; font-size: .95rem;
  letter-spacing: .02em;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .2s, background .2s;
  line-height: 1;
}
.btn:active { transform: translateY(2px); box-shadow: none !important; }
.btn--primary { background: var(--amber); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--blue { background: var(--royal); color: #fff; box-shadow: var(--shadow-sm); }
.btn--blue:hover { background: var(--royal-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { background: transparent; color: var(--royal); border-color: var(--royal); }
.btn--outline:hover { background: var(--royal); color: #fff; }
.btn[disabled] { opacity: .65; cursor: not-allowed; }

/* En-tête / navigation — bandeau de toile -------------------------------------- */
.site-header {
  position: relative; z-index: 50;
  background: var(--canvas);
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background-repeat: repeat-x; background-size: 20px 5px; background-position: bottom;
  background-image: linear-gradient(115deg, transparent 45%, var(--stitch) 45%, var(--stitch) 55%, transparent 55%);
  opacity: .7;
}
.nav {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 22px 0 18px; position: relative;
}
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-head); }
.brand__logo {
  width: 54px; height: 54px; flex: none; display: block; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--royal); box-shadow: 0 3px 0 var(--stamp);
}
.brand__logo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__title { font-weight: 700; font-size: 1.2rem; color: var(--ink); letter-spacing: .01em; }
.brand__sub { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--royal); font-family: var(--font-body); font-weight: 800; }

.nav__links { display: flex; align-items: center; gap: .5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.nav__links li:nth-child(3n+1) a { transform: rotate(-1deg); }
.nav__links li:nth-child(3n+2) a { transform: rotate(.8deg); }
.nav__links li:nth-child(3n+3) a { transform: rotate(-.4deg); }
.nav__links a {
  display: block; padding: .55rem 1.05rem .6rem; font-weight: 700; font-size: .88rem;
  color: var(--ink); background: var(--sand);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0% 100%);
  border-bottom: 2px solid var(--stitch);
  transition: transform .18s, background .18s, color .18s;
}
.nav__links a:hover { background: var(--sand-dark); color: var(--royal); transform: rotate(0deg) translateY(-2px); }
.nav__links a.is-active { background: var(--royal); color: #fff; border-bottom-color: var(--royal-deep); }
.nav__cta { margin-left: .3rem; }
.nav__cta a { background: var(--royal); color: #fff; border-bottom-color: var(--royal-deep); }
.nav__cta a:hover { background: var(--royal-deep); color: #fff; }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 0; color: var(--ink);
  position: absolute; top: 18px; right: 22px;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; width: 24px; height: 2.5px; background: currentColor;
  border-radius: 3px; transition: transform .25s, opacity .2s;
}
.nav__toggle span { position: relative; display: inline-block; }
.nav__toggle span::before { top: -8px; }
.nav__toggle span::after { top: 8px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-8px) rotate(-45deg); }

/* Ruban tricolore ----------------------------------------------------------- */
.tricolore { height: 6px; display: flex; }
.tricolore i { flex: 1; }
.tricolore i:nth-child(1) { background: var(--lux-red); }
.tricolore i:nth-child(2) { background: var(--white); }
.tricolore i:nth-child(3) { background: var(--lux-blue); }

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--canvas);
  padding: 60px 0 76px;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--sand); border: 1px solid var(--stitch); box-shadow: var(--shadow-sm);
  padding: .4rem .9rem; border-radius: 999px; font-weight: 800; font-size: .82rem;
  color: var(--royal); margin-bottom: 1.2rem; transform: rotate(-.6deg);
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lux-red); }
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); margin: 0 0 1rem; letter-spacing: -.01em; }
.hero h1 .accent { color: var(--lux-red); }
.hero__lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__stats { display: flex; gap: 2rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero__stat b { font-family: var(--font-head); font-size: 1.9rem; color: var(--royal); display: block; line-height: 1; }
.hero__stat span { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 700; }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__photo {
  width: min(420px, 92%); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff; outline: 2px dashed var(--stitch); outline-offset: 4px;
  animation: floaty 6s ease-in-out infinite; aspect-ratio: 4/5; transform: rotate(1.2deg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes floaty { 0%,100% { transform: rotate(1.2deg) translateY(0); } 50% { transform: rotate(1.2deg) translateY(-14px); } }

/* Bandeau de motto ---------------------------------------------------------- */
.motto {
  background: var(--lux-red); color: #fff; text-align: center; padding: 26px 0;
  border-top: 3px solid rgba(0,0,0,.12); border-bottom: 3px solid rgba(0,0,0,.12);
}
.motto p { margin: 0; font-family: var(--font-head); font-size: clamp(1.1rem, 2.6vw, 1.6rem); font-style: italic; }
.motto small { display: block; text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; opacity: .9; margin-top: .3rem; font-family: var(--font-body); font-weight: 700; }

/* Cartes = écussons cousus --------------------------------------------------- */
.grid { display: grid; gap: 30px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--sand); border: 2px dashed var(--stitch); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s;
}
.grid--3 .card:nth-child(3n+1), .grid--2 .card:nth-child(2n+1) { transform: rotate(-.9deg); }
.grid--3 .card:nth-child(3n+2) { transform: rotate(.7deg); }
.grid--3 .card:nth-child(3n+3), .grid--2 .card:nth-child(2n) { transform: rotate(-.4deg); }
.card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 1rem; background: var(--canvas); color: var(--lux-red);
  border: 2px solid var(--stitch);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin: 0 0 .5rem; }
.card p { color: var(--ink-soft); margin: 0; }
.card--red .card__icon { background: rgba(213,48,63,.12); color: var(--lux-red); border-color: var(--lux-red); }
.card--blue .card__icon { background: rgba(46,143,199,.14); color: var(--lux-blue-dark); border-color: var(--lux-blue); }
.card--green .card__icon { background: rgba(21,64,151,.12); color: var(--royal); border-color: var(--royal); }

/* Section image + texte ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--royal), var(--royal-deep)); aspect-ratio: 4/3;
  display: grid; place-items: center;
}
.split__media svg { width: 62%; }
.split__media img { width: 58%; border-radius: 50%; box-shadow: var(--shadow-md); border: 4px solid rgba(255,255,255,.9); }
.split h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-top: 0; }
.split p { color: var(--ink-soft); }
.split ul { padding-left: 0; list-style: none; margin: 1.2rem 0; }
.split li { position: relative; padding: .35rem 0 .35rem 2rem; font-weight: 600; }
.split li::before {
  content: ""; position: absolute; left: 0; top: .55rem; width: 20px; height: 20px;
  background: var(--royal); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 60% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 60% no-repeat;
}

/* Chronologie = sentier balisé ----------------------------------------------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 8px; }
.timeline::before {
  content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px; width: 3px;
  background-image: repeating-linear-gradient(var(--stitch) 0 8px, transparent 8px 16px);
}
.tl-item { position: relative; padding: 0 0 34px 58px; }
.tl-item::before {
  content: ""; position: absolute; left: 6px; top: -2px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--canvas); border: 3px solid var(--royal);
  box-shadow: 0 0 0 5px var(--sand);
}
.tl-item:nth-child(even)::before { border-color: var(--lux-blue-dark); }
.tl-year { font-family: var(--font-head); font-weight: 700; color: var(--royal); font-size: 1.2rem; }
.tl-item:nth-child(even) .tl-year { color: var(--lux-blue-dark); }
.tl-item h3 { margin: .1rem 0 .3rem; font-size: 1.2rem; }
.tl-item p { margin: 0; color: var(--ink-soft); }

/* Page header (sous-pages) -------------------------------------------------- */
.page-hero {
  background: var(--royal-deep);
  color: #fff; padding: 62px 0 56px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><path d='M30 4 34 20 30 16 26 20z' fill='white'/></svg>");
  background-size: 90px 90px;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin: .4rem 0 .5rem; position: relative; }
.page-hero p { color: #cfe0f0; max-width: 620px; margin: 0 auto; position: relative; }
.page-hero .eyebrow { color: var(--amber); }
.breadcrumb { position: relative; margin-bottom: .6rem; font-size: .85rem; color: #a9c0dd; }
.breadcrumb a { color: #cfe0f0; }

/* Prose (pages de contenu) -------------------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.08rem; }
.prose h2 { font-size: 1.7rem; margin: 2.2rem 0 .8rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 .6rem; }
.prose p { color: var(--ink-soft); }
.prose blockquote {
  margin: 1.6rem 0; padding: 1rem 1.4rem; border-left: 5px solid var(--royal);
  background: var(--sand); border-radius: 0 12px 12px 0; font-family: var(--font-head);
  font-style: italic; font-size: 1.2rem; color: var(--ink); transform: rotate(-.3deg);
}
.callout {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(21,64,151,.08); border: 1px dashed var(--royal);
  padding: 1.1rem 1.3rem; border-radius: 14px; margin: 1.6rem 0;
}
.callout svg { flex: none; width: 28px; height: 28px; color: var(--royal); margin-top: 2px; }
.callout p { margin: 0; color: var(--ink); }

/* Foulard / écusson — photos réelles ------------------------------------------- */
.scarf-figure, .totem-figure {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; outline: 2px dashed var(--stitch); outline-offset: 3px;
}
.scarf-figure img, .totem-figure img { width: 100%; display: block; object-fit: cover; }
.totem-figure { background: var(--sand); display: grid; place-items: center; }
.totem-figure img { width: 84%; object-fit: contain; padding: 8px 0; }

.badge-pair { display: flex; align-items: flex-end; gap: 18px; }
.badge-pair .scarf-figure { flex: 1; margin: 0; }
.badge-pair__pin { flex: 0 0 38%; }

/* Bannière photo plein écran -------------------------------------------------- */
.photo-band { position: relative; overflow: hidden; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; max-height: 520px; }
.photo-band__caption {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(0deg, rgba(14,46,110,.86) 0%, rgba(14,46,110,.18) 55%, transparent 100%);
  padding: 34px 0;
}
.photo-band__caption .container { color: #fff; }
.photo-band__caption span { display: inline-block; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: var(--amber); margin-bottom: .4rem; }
.photo-band__caption p { margin: 0; font-family: var(--font-head); font-size: clamp(1.1rem, 2.6vw, 1.6rem); }
.legend { list-style: none; padding: 0; margin: 1.4rem 0; display: grid; gap: .7rem; }
.legend li { display: flex; align-items: center; gap: .8rem; font-weight: 600; }
.legend .swatch { width: 26px; height: 26px; border-radius: 50%; flex: none; border: 2px solid var(--stitch); box-shadow: var(--shadow-sm); }

/* Paroles de chanson -------------------------------------------------------- */
.song { max-width: 720px; margin: 0 auto; }
.song__meta { text-align: center; color: var(--ink-soft); margin-bottom: 2rem; }
.song__meta .pill {
  display: inline-block; background: var(--sand); border: 1px dashed var(--stitch); border-radius: 999px; padding: .3rem .9rem;
  font-weight: 800; font-size: .82rem; color: var(--royal); margin: .2rem;
}
.verse {
  background: var(--canvas); border: 2px dashed var(--stitch); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 18px; box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--lux-blue);
}
.verse:nth-child(odd) { transform: rotate(-.4deg); }
.verse:nth-child(even) { transform: rotate(.35deg); }
.verse.refrain { border-left-color: var(--lux-red); background: var(--sand); }
.verse h4 { margin: 0 0 .5rem; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--lux-red); font-family: var(--font-body); }
.verse p { margin: 0; font-family: var(--font-head); font-size: 1.12rem; line-height: 1.9; color: var(--ink); }

/* Formulaire de contact ----------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.info-card {
  background: var(--royal-deep); color: #eaf0fb; border-radius: var(--radius-lg); padding: 34px 30px;
  box-shadow: var(--shadow-md);
}
.info-card h3 { color: #fff; margin-top: 0; }
.info-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ico { width: 40px; height: 40px; flex: none; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px dashed rgba(255,255,255,.4); display: grid; place-items: center; }
.info-list .ico svg { width: 20px; height: 20px; color: var(--amber); }
.info-list b { display: block; color: #fff; font-family: var(--font-head); }
.info-list span { color: #c4d6f0; font-size: .95rem; }

.form { background: var(--canvas); border: 2px dashed var(--stitch); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 800; margin-bottom: .4rem; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 2px solid var(--sand-dark); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--royal); box-shadow: 0 0 0 4px rgba(21,64,151,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .85rem; color: var(--ink-soft); margin-top: .6rem; }
.form__status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 12px; font-weight: 700; display: none; }
.form__status.ok { display: block; background: rgba(21,64,151,.10); color: var(--royal-deep); border: 1px solid rgba(21,64,151,.28); }
.form__status.error { display: block; background: rgba(213,48,63,.08); color: var(--lux-red-dark); border: 1px solid rgba(213,48,63,.3); }

/* CTA final ------------------------------------------------------------------ */
.cta {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #fff; text-align: center; border-radius: var(--radius-lg); padding: 54px 30px;
  box-shadow: var(--shadow-md); border: 2px dashed rgba(255,255,255,.35);
}
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin: 0 0 .6rem; }
.cta p { color: #fdecd2; max-width: 520px; margin: 0 auto 1.6rem; }

/* Pied de page -------------------------------------------------------------- */
.site-footer { background: var(--royal-deep); color: #c4d6f0; padding: 52px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin: 0 0 1rem; }
.site-footer a { color: #c4d6f0; }
.site-footer a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand .brand__logo { width: 46px; height: 46px; border-color: rgba(255,255,255,.5); }
.footer-brand b { font-family: var(--font-head); color: #fff; font-size: 1.1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-bottom {
  border-top: 1px dashed rgba(255,255,255,.25); margin-top: 34px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: #9fb4d6;
}
.footer-bottom .tri { display: inline-flex; gap: 4px; vertical-align: middle; margin-left: .4rem; }
.footer-bottom .tri i { width: 14px; height: 10px; border-radius: 2px; display: inline-block; }

/* Animations au défilement -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__art { order: -1; }
  .hero__photo { width: min(300px, 70%); }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split__media { max-width: 460px; margin-inline: auto; }
  .grid--3, .grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--canvas); padding: 14px 18px; gap: 8px; border-bottom: 3px dashed var(--stitch);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links li a { transform: none !important; clip-path: none; border-radius: 8px; text-align: center; }
  .nav__cta { margin: 6px 0 0; }
  .nav__cta a { display: block; width: 100%; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .grid--3, .grid--2, .footer-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
