/* ═══════════════════════════════════════
   EYWA-INSPIRED — olive · crème · beige
═══════════════════════════════════════ */
:root {
  --cream:       #f5ede0;
  --warm-white:  #fdf8f3;
  --beige:       #ebe2d4;
  --olive:       #4a5c3a;
  --olive-mid:   #6a7b58;
  --olive-light: #8a9b78;
  --olive-pale:  #d4dcc8;
  --olive-dark:  #323d25;
  --gold:        #c4a260;
  --text:        #2c2820;
  --text-mid:    #5a5048;
  --text-muted:  #73624e;
  --line:        rgba(74,92,58,.13);
  --shadow:      0 24px 64px rgba(40,35,28,.11);
  --shadow-sm:   0 6px 24px rgba(40,35,28,.07);
  --r:           18px;
  --r-lg:        36px;
  --max:         1160px;

  /*
    --gutter = marge depuis le bord du viewport jusqu'au début du contenu.
    C'est ce qui garantit l'alignement entre les sections full-bleed (hero,
    about, visio) et les sections en container (.wrap).
  */
  --gutter: max(24px, calc((100vw - var(--max)) / 2));
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}
::selection { background: rgba(74,92,58,.2); color: var(--olive-dark); }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
p { color: var(--text-muted); }
img { display: block; }

/* ── Typographie ── */
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700; line-height: .96;
  letter-spacing: -.02em; color: var(--text);
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin-bottom: 1rem; }
h3 { color: var(--olive-dark); font-size: 1.05rem; line-height: 1.3; margin-top: 0; }

.label {
  display: block; margin-bottom: .85rem;
  color: var(--olive-mid); font-size: .72rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}

/* ── Container centré ── */
.wrap {
  /* Aligne exactement sur --gutter des deux côtés */
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

/* ── Boutons ── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.5rem; border: 1.5px solid transparent;
  border-radius: 999px; font-weight: 700; font-size: .9rem;
  line-height: 1.15; transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--olive); color: #fff;
  box-shadow: 0 10px 32px rgba(74,92,58,.28);
}
.btn-primary:hover { background: var(--olive-dark); box-shadow: 0 14px 40px rgba(74,92,58,.36); }

.btn-outline {
  border-color: var(--olive); color: var(--olive); background: transparent;
}
.btn-outline:hover { background: var(--olive); color: #fff; }

.btn-light { background: #fff; color: var(--olive-dark); box-shadow: 0 4px 16px rgba(40,35,28,.1); }
.btn-light:hover { background: var(--cream); }

.btn-sm { padding: .6rem 1.2rem; font-size: .85rem; }

/* ── Helpers ── */
.center { display: flex; justify-content: center; margin-top: 2rem; }
.section-hd { max-width: 700px; margin-inline: auto; margin-bottom: 3rem; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(253,248,243,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.site-nav__inner {
  /* Même largeur et centrage que .wrap */
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 68px;
}
.brand { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.brand__logo {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  background: var(--cream); color: var(--olive); flex-shrink: 0;
}
.brand__logo svg { width: 22px; height: 22px; }
.brand__name strong {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; font-weight: 700; color: var(--olive-dark); line-height: 1;
}
.brand__name small { font-size: .68rem; color: var(--text-muted); letter-spacing: .05em; }

.nav-links { display: flex; gap: .1rem; }
.nav-links a {
  padding: .42rem .9rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  transition: background .18s, color .18s; white-space: nowrap;
}
.nav-links a:hover { background: var(--beige); color: var(--olive); }

.nav-toggle {
  display: none; width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: var(--r);
  background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--olive); border-radius: 2px; }

/* ═══════════════════════════════════════
   HERO — split exact
═══════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  background: var(--cream);
}

.hero__content {
  /* Le padding-left = --gutter garantit l'alignement avec .wrap et la nav */
  padding: 5rem clamp(2rem, 3vw, 4rem) 5rem var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-bottom: 1.5rem; color: var(--olive-mid);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.hero__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.hero h1 { color: var(--text); max-width: 560px; }
.hero h1 em { color: var(--olive); font-style: normal; }
.hero__lead { max-width: 480px; font-size: 1.05rem; line-height: 1.78; color: var(--text-mid); margin-bottom: 2rem; }
.hero__btns { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero__trust {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--text-muted); font-weight: 500;
}
.hero__trust svg { color: var(--olive-light); flex-shrink: 0; }

.hero__visual { position: relative; overflow: hidden; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms ease; }
.hero__visual:hover img { transform: scale(1.03); }
.hero__deco {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(253,248,243,.9); backdrop-filter: blur(12px);
  border-radius: var(--r); padding: .9rem 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem; font-style: italic; color: var(--olive-dark); line-height: 1.4;
}

/* ═══════════════════════════════════════
   FEATURE STRIP
═══════════════════════════════════════ */
.feature-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.feature-strip__inner {
  /* Même alignement que .wrap */
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.feat {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .85rem;
}
.feat:last-child { border-right: none; }
.feat__icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--olive-mid); }
.feat__icon svg { width: 30px; height: 30px; }
.feat__title { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: .25rem; }
.feat__desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════
   ABOUT — photo gauche, texte droite
═══════════════════════════════════════ */
.about { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }

.about__photo { position: relative; overflow: hidden; min-height: 560px; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms ease; }
.about__photo:hover img { transform: scale(1.04); }
.about__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(50,61,37,.72) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.about__overlay-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem; font-weight: 600; font-style: italic;
  color: rgba(253,248,243,.92); line-height: 1.4;
}
.about__overlay-text span { display: block; }

.about__content {
  /* padding-right = --gutter pour aligner avec .wrap */
  padding: 5rem var(--gutter) 5rem clamp(2rem, 3vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
}
.about__content h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); margin-bottom: .85rem; }
.about__content > p { font-size: .97rem; line-height: 1.78; }

.credentials { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0 2rem; }
.cred {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem 1rem; border-radius: var(--r);
  border: 1px solid var(--line); background: rgba(253,248,243,.85);
}
.cred__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; background: var(--olive-pale);
  display: grid; place-items: center; color: var(--olive);
}
.cred__icon svg { width: 16px; height: 16px; }
.cred strong { font-size: .9rem; color: var(--text); display: block; line-height: 1.2; }
.cred span   { font-size: .8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════
   POUR VOUS AIDER — grille 6 items
═══════════════════════════════════════ */
.for-who { background: var(--warm-white); padding: clamp(4rem, 7vw, 6rem) 0; }

.fw-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: #fff;
}
.fw-item {
  padding: 2rem 1rem; text-align: center;
  border-right: 1px solid var(--line);
  transition: background .2s;
}
.fw-item:last-child { border-right: none; }
.fw-item:hover { background: var(--cream); }
.fw-item__icon { width: 44px; height: 44px; margin: 0 auto .85rem; display: grid; place-items: center; color: var(--olive-mid); }
.fw-item__icon svg { width: 28px; height: 28px; }
.fw-item p { font-size: .83rem; color: var(--text-mid); line-height: 1.5; margin: 0; font-weight: 500; }

/* ═══════════════════════════════════════
   IMAGE ROW
═══════════════════════════════════════ */
.img-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  /* Même alignement que .wrap */
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 3.5rem auto;
}
.img-row figure {
  margin: 0; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 1 / 1.05; box-shadow: var(--shadow-sm);
}
.img-row figure:nth-child(2) { aspect-ratio: 1 / .9; margin-top: 1.5rem; }
.img-row img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms ease; }
.img-row figure:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════
   VISIO — photo gauche, texte droite
═══════════════════════════════════════ */
.visio { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }

.visio__photo { position: relative; overflow: hidden; min-height: 480px; }
.visio__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms ease; }
.visio__photo:hover img { transform: scale(1.04); }

.visio__content {
  /* padding-right = --gutter pour aligner avec .wrap */
  padding: 5rem var(--gutter) 5rem clamp(2rem, 3vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
}
.visio__content h2 { font-size: clamp(1.9rem, 3.2vw, 3rem); margin-bottom: .85rem; }
.visio__content > p { font-size: .97rem; line-height: 1.78; }

/* ═══════════════════════════════════════
   SPÉCIALITÉS
═══════════════════════════════════════ */
.specialties { padding: clamp(4rem, 7vw, 6rem) 0; background: var(--warm-white); }

.spe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.spe-card {
  padding: 1.75rem; border-radius: var(--r);
  border: 1px solid var(--line); background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.spe-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(40,35,28,.1); border-color: rgba(74,92,58,.22); }
.spe-card__icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--olive-pale); color: var(--olive);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.spe-card__icon svg { width: 20px; height: 20px; }
.spe-card h3 { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; margin-bottom: .5rem; color: var(--text); }
.spe-card p  { font-size: .88rem; margin: 0; line-height: 1.65; }

.legal-note {
  margin-top: 2rem; padding: 1rem 1.25rem;
  border: 1px solid rgba(196,162,96,.22); border-radius: var(--r);
  background: rgba(245,237,224,.7); color: var(--text-mid);
  font-size: .86rem; text-align: center;
}

/* ═══════════════════════════════════════
   DÉROULEMENT — 3 étapes
═══════════════════════════════════════ */
.process { background: var(--cream); padding: clamp(4rem, 7vw, 6rem) 0; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.process-step {
  text-align: center; position: relative; padding: 2rem 1.5rem;
  background: rgba(253,248,243,.7); border-radius: var(--r);
  border: 1px solid var(--line);
}
/* Flèche de connexion */
.process-step + .process-step::before {
  content: "→"; position: absolute; left: -1.25rem; top: 50%;
  transform: translateY(-50%);
  color: var(--olive-light); font-size: 1.1rem;
  background: var(--cream); padding: 0 .2rem; z-index: 1;
}
.process-step__num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--olive); color: #fff;
  display: grid; place-items: center; margin: 0 auto 1.25rem;
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(74,92,58,.26);
}
.process-step h3 { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; margin-bottom: .5rem; color: var(--text); }
.process-step p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq { background: var(--warm-white); padding: clamp(4rem, 7vw, 6rem) 0; }

.faq__inner { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }

.faq__side { position: sticky; top: 88px; }
.faq__big {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 700; line-height: 1.02; color: var(--text); margin: 0 0 1.75rem;
}
.faq__photo { margin: 0; border-radius: var(--r); overflow: hidden; max-height: 200px; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.faq__photo img { width: 100%; height: 100%; object-fit: cover; }

.faq-item {
  border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; margin-bottom: .65rem; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.faq-item:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(40,35,28,.08); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; cursor: pointer;
  color: var(--text); font-weight: 700; font-size: .94rem;
  list-style: none; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--olive-pale); color: var(--olive);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 300;
  transition: background .2s, transform .3s ease;
}
.faq-item[open] .faq-plus { background: var(--olive); color: #fff; transform: rotate(45deg); }
.faq-item__body { padding: 0 1.4rem 1.4rem; font-size: .94rem; color: var(--text-muted); line-height: 1.72; }
.faq-rdv { padding: 0 1.4rem 1.4rem; }

/* ═══════════════════════════════════════
   CTA BANNER — fond olive foncé
═══════════════════════════════════════ */
.cta-banner { background: var(--olive-dark); overflow: hidden; position: relative; }
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(196,162,96,.1), transparent 55%);
  pointer-events: none;
}
.cta-banner__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: stretch; gap: 3rem;
  /* Même alignement que .wrap */
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.cta-banner__photo {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  opacity: .75; filter: saturate(.85);
}
.cta-banner__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-banner__text {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.cta-banner__text h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.8rem); margin-bottom: .7rem; }
.cta-banner__text > p { color: rgba(253,248,243,.72); font-size: .97rem; margin-bottom: 1.75rem; }
.cta-banner__checks { list-style: none; margin: 1.5rem auto 0; padding: 0; display: inline-block; text-align: left; }
.cta-banner__checks li {
  display: flex; align-items: center; gap: .55rem;
  font-size: .88rem; color: rgba(253,248,243,.78); margin-bottom: .35rem;
}
.cta-banner__checks li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); }
.footer__inner {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem; padding: 3.5rem 0 2.5rem;
  /* Même alignement que .wrap */
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}
.footer__brand > p { font-size: .88rem; color: var(--text-muted); max-width: 300px; margin-top: .75rem; }
.footer__col strong {
  display: block; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem;
}
.footer__col a:not(.btn) { display: block; font-size: .88rem; color: var(--text-muted); margin-bottom: .45rem; transition: color .18s; }
.footer__col a:not(.btn):hover { color: var(--olive); }
.footer__col .btn-primary { color: #fff; }
.footer__bottom {
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0;
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  font-size: .8rem; color: var(--text-muted);
}

/* ── Sticky CTA mobile ── */
.sticky-cta {
  position: fixed; right: 16px; bottom: 16px; left: 16px;
  z-index: 50; display: none;
  align-items: center; justify-content: center; gap: .5rem;
  min-height: 50px; border-radius: 999px;
  background: var(--olive); color: #fff; font-weight: 700;
  box-shadow: 0 12px 36px rgba(74,92,58,.38);
  transition: transform .22s ease;
}
.sticky-cta:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero__visual { animation: gentle-float 14s ease-in-out infinite; }
.faq__photo   { animation: gentle-float 18s ease-in-out infinite; animation-delay: 1.2s; }

.reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.25,.46,.45,.94), transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE — tablette ≤ 960px
═══════════════════════════════════════ */
@media (max-width: 960px) {
  /* Sections full-bleed passent en mono-colonne */
  .hero, .about, .visio { grid-template-columns: 1fr; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__visual { min-height: 340px; order: -1; animation: none; }
  .hero__content {
    /* En mono-colonne, on repasse sur le gutter standard des deux côtés */
    padding: 3.5rem var(--gutter);
  }

  /* About */
  .about__photo { min-height: 380px; }
  .about__content { padding: 3rem var(--gutter); }

  /* Visio */
  .visio__photo { min-height: 340px; }
  .visio__content { padding: 3rem var(--gutter); }

  /* Feature strip */
  .feature-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .feat:nth-child(2) { border-right: none; }
  .feat:nth-child(1), .feat:nth-child(2) { border-bottom: 1px solid var(--line); }

  /* Pour qui */
  .fw-grid { grid-template-columns: repeat(3, 1fr); }
  .fw-item:nth-child(3) { border-right: none; }

  /* Spécialités */
  .spe-grid { grid-template-columns: repeat(2, 1fr); }

  /* Déroulement */
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }
  .process-step + .process-step::before { display: none; }

  /* FAQ */
  .faq__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__side { position: static; display: flex; align-items: flex-start; gap: 2rem; }
  .faq__photo { flex: 0 0 160px; aspect-ratio: 1 / 1; }
  .faq__big { margin-bottom: 0; }

  /* CTA */
  .cta-banner__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner__photo { display: none; }
  .cta-banner__checks { text-align: center; }
  .cta-banner__checks li { justify-content: center; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  /* Images row */
  .img-row { grid-template-columns: 1fr 1fr; }
  .img-row figure:nth-child(3) { display: none; }
  .img-row figure:nth-child(2) { margin-top: 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — mobile ≤ 600px
═══════════════════════════════════════ */
@media (max-width: 600px) {
  :root {
    /* Sur mobile le gutter est toujours 20px */
    --gutter: 20px;
  }

  body { font-size: 15px; }

  /* Nav */
  .site-nav__inner { height: 60px; }
  .nav-links, .site-nav .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--warm-white); border-bottom: 1px solid var(--line);
    padding: .75rem var(--gutter); gap: .2rem; z-index: 30;
  }

  /* Tailles typo */
  h1 { font-size: clamp(2.3rem, 10vw, 3rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.6rem); }

  /* Hero */
  .hero__visual { min-height: 260px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { text-align: center; justify-content: center; }

  /* Feature strip */
  .feature-strip__inner { grid-template-columns: 1fr 1fr; }
  .feat:nth-child(2) { border-right: none; }
  .feat:nth-child(3) { border-right: 1px solid var(--line); border-bottom: none; }
  .feat:nth-child(1), .feat:nth-child(2) { border-bottom: 1px solid var(--line); }

  /* Pour qui */
  .fw-grid { grid-template-columns: repeat(2, 1fr); }
  .fw-item:nth-child(even) { border-right: none; }
  .fw-item:nth-child(5) { border-right: 1px solid var(--line); }

  /* Spécialités */
  .spe-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq__side { flex-direction: column; }
  .faq__photo { flex: none; width: 100%; aspect-ratio: 16 / 9; }

  /* CTA */
  .cta-banner__inner { padding: 2.5rem var(--gutter); }
  .cta-banner__text .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; gap: .5rem; }

  /* Images row */
  .img-row { grid-template-columns: 1fr; }
  .img-row figure { display: none; }
  .img-row figure:first-child { display: block; }

  /* Sticky CTA */
  .sticky-cta { display: flex; }
}

/* ── Mouvements réduits ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

/* ── Accessibilité ── */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
main:focus-visible {
  outline: 3px solid rgba(198, 107, 75, .48);
  outline-offset: 4px;
  border-radius: 8px;
}

.nav-links a,
.footer a,
.faq-item summary {
  text-underline-offset: .2em;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}
