/* ─────────────────────────────────────────────────────────────
   Piano Piatto — site vitrine
   Les couleurs, les polices et les rayons viennent de
   mobile/src/theme/tokens.ts. Le site et l'app doivent se
   ressembler au pixel près : c'est le même produit.
   ───────────────────────────────────────────────────────────── */

:root {
  /* Marque */
  --terra:        #C05A44;
  --terra-dark:   #9E3F2E;
  --terra-light:  #D4806E;
  --olive:        #7A8A50;
  --olive-dark:   #596832;
  --olive-bg:     #F4F6EC;

  /* Fonds */
  --cream:        #FFF4EC;
  --cream-alt:    #FFF6EB;
  --surface:      #FFFFFF;
  --surface-mute: #FAF5F0;
  --border:       #E8DDD5;

  /* Décor */
  --gold:         #F4E4C1;
  --blob-1:       #F5D5C4;
  --blob-2:       #FAE8DA;
  --blob-3:       #F0C9B3;

  /* Texte */
  --ink:          #1A1008;
  --ink-2:        #6B5E52;
  --ink-3:        #9C8E82;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-sm: 0 1px 2px rgba(26, 16, 8, .05), 0 2px 8px rgba(26, 16, 8, .04);
  --shadow-md: 0 4px 12px rgba(26, 16, 8, .06), 0 12px 32px rgba(26, 16, 8, .07);
  --shadow-lg: 0 8px 24px rgba(26, 16, 8, .08), 0 32px 64px rgba(26, 16, 8, .12);

  --page: 1160px;
}

/* L'app n'a pas de mode sombre — le site non plus.
   Sans cette ligne, certains navigateurs inversent les couleurs d'eux-mêmes. */
:root { color-scheme: light; }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.1; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }

.page { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: 24px; }

/* ── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s, background-color .18s, border-color .18s;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 6px 18px rgba(192, 90, 68, .28); }
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(192, 90, 68, .34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-3); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 15px; }
.btn:focus-visible, a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 3px solid var(--terra-light); outline-offset: 3px;
}

/* ── En-tête ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 244, 236, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background-color .25s;
}
.site-header.is-scrolled { border-bottom-color: var(--border); background: rgba(255, 244, 236, .94); }
.site-header .page { display: flex; align-items: center; gap: 28px; height: 84px; }
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
/*
   TAILLE ET ALIGNEMENT DU LOGO
   La marque tient sur DEUX lignes. À 30 px de haut, chaque ligne n'en faisait
   que 13 — plus petit que les liens de navigation posés à côté, et deux fois
   moins large que le bouton d'appel à l'action. La marque était l'élément le
   moins visible de son propre en-tête.

   Le décalage vertical n'est pas un réglage à l'œil : l'encre de la marque
   pèse 4,8 % de sa hauteur SOUS son centre géométrique (« Piatto » est plus
   gras que « piano » et porte le pictogramme). Centrée mathématiquement, elle
   paraît donc basse. On la remonte exactement de cet écart — 4,8 % de sa
   hauteur. Si tu changes la taille, recalcule ce décalage avec elle.

   LA TAILLE VIENT DU BOUTON, PAS D'UN CHIFFRE ROND
   À 42 px, la marque gardait 21 px d'air au-dessus et en dessous quand le
   bouton d'appel n'en avait que 17,5 : elle flottait pendant que son voisin
   tenait le cadre, ce qui la faisait paraître à la fois petite et mal posée.
   À 50 px, les deux respirent pareil (17 px contre 17,5) et la marque
   redevient l'élément le plus haut de l'en-tête — ce qu'un logo doit être
   chez lui. */
.brand img { height: 50px; width: auto; transform: translateY(-2.4px); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink-2); text-decoration: none; transition: color .15s; }
.nav a:hover { color: var(--terra); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .login { font-size: 15px; font-weight: 600; text-decoration: none; color: var(--ink); }
.header-cta .login:hover { color: var(--terra); }
@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta .login { display: none; }
  /* Sans navigation à loger, l'en-tête se resserre — mais la marque doit
     rester la chose la plus lisible du haut de l'écran. Le déséquilibre était
     ici le plus fort : 17 px d'air autour d'un logo de 34, contre 9,5 autour
     d'un bouton de 49. La marque faisait la moitié de la hauteur de son
     voisin, dans son propre en-tête. */
  .site-header .page { height: 68px; gap: 16px; }
  .brand img { height: 46px; transform: translateY(-2.2px); }
}

/* ── Décor organique ───────────────────────────────────────── */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; z-index: 0; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { position: relative; padding: 76px 0 96px; overflow: hidden; }
.hero .blob-a { width: 620px; height: 620px; background: var(--blob-2); top: -260px; right: -180px; }
.hero .blob-b { width: 420px; height: 420px; background: var(--blob-1); bottom: -220px; left: -160px; opacity: .8; }
.hero .page { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); color: var(--ink-2);
  font-size: 13.5px; font-weight: 600; padding: 7px 15px; border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--olive); }

.hero h1 { font-size: clamp(38px, 5.2vw, 64px); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--terra); }
.hero .lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); max-width: 30em; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14.5px; color: var(--ink-3); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { flex: none; color: var(--olive); }

@media (max-width: 1040px) {
  .hero { padding: 48px 0 72px; }
  .hero .page { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-self: center; }
}

/* ── Maquette de téléphone ─────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 310px; flex: none;
  background: #1A1008; border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,16,8,.06);
}
.phone::after { /* l'encoche */
  content: ''; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 24px; background: #1A1008; border-radius: 999px; z-index: 3;
}
.phone-screen {
  background: var(--cream); border-radius: 36px; overflow: hidden;
  height: 620px; display: flex; flex-direction: column; position: relative;
}
.phone--tilt { transform: rotate(2.2deg); }
@media (max-width: 1040px) { .phone--tilt { transform: none; } }

.scr { flex: 1; overflow: hidden; padding: 44px 15px 0; }
.scr-mark { display: flex; justify-content: center; margin-bottom: 14px; }
.scr-mark img { height: 30px; width: auto; }
.scr-hello { font-family: var(--serif); font-size: 21px; font-weight: 700; }
.scr-sub { font-size: 12.5px; color: var(--ink-2); margin-bottom: 10px; }
.scr-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600;
  color: var(--terra); background: rgba(192,90,68,.09); border: 1px solid rgba(192,90,68,.2);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.scr-card { background: var(--surface); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 13px; }
.scr-photo { position: relative; aspect-ratio: 720 / 430; }
.scr-photo img { width: 100%; height: 100%; object-fit: cover; }
.scr-badge {
  position: absolute; top: 10px; left: 10px; font-size: 10.5px; font-weight: 700; color: #fff;
  background: rgba(26,16,8,.62); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 999px;
}
.scr-card-body { padding: 12px 13px 13px; }
.scr-dish { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 11px; line-height: 1.2; }
.scr-row { display: flex; align-items: center; gap: 10px; }
.scr-cook {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--terra); color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px; border-radius: 999px;
}
.scr-portions { font-size: 11.5px; color: var(--ink-3); white-space: nowrap; }

.scr-nutri { padding: 12px 13px; }
.scr-nutri-h { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 700; letter-spacing: .9px; color: var(--ink-2); margin-bottom: 12px; }
.scr-nutri-body { display: flex; align-items: center; gap: 14px; }
.ring { width: 62px; height: 62px; flex: none; position: relative; }
.ring svg { transform: rotate(-90deg); }
.ring-txt { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; line-height: 1.05; }
.ring-txt b { font-size: 15px; }
.ring-txt span { font-size: 8px; color: var(--ink-3); }
.macros { flex: 1; display: grid; gap: 7px; }
.macro { display: flex; align-items: center; gap: 7px; font-size: 11px; }
.macro i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.macro span { color: var(--ink-2); }
.macro b { margin-left: auto; font-weight: 600; color: var(--ink-3); font-size: 10.5px; }

.scr-tabs {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px;
  padding: 9px 6px 14px; background: rgba(255,255,255,.94);
  border-top: 1px solid var(--border);
}
.scr-tab { display: grid; justify-items: center; gap: 3px; font-size: 8.5px; font-weight: 600; color: var(--ink-3); }
.scr-tab.is-on { color: var(--ink); }

/* Maquettes secondaires (planning, courses) */
.mini { background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.mini-h { padding: 13px 15px 9px; border-bottom: 1px solid var(--border); }
.mini-h b { font-family: var(--serif); font-size: 16px; }
.mini-h span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.mini-row { display: flex; align-items: center; gap: 11px; padding: 10px 15px; border-bottom: 1px solid var(--surface-mute); }
.mini-row:last-child { border-bottom: 0; }
.mini-row img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex: none; }
.mini-row .lbl { flex: 1; min-width: 0; }
.mini-row .lbl em { display: block; font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: .7px; color: var(--ink-3); }
.mini-row .lbl b { display: block; font-size: 13.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mini-tick { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--border); flex: none; display: grid; place-content: center; }
.mini-tick.is-on { background: var(--olive); border-color: var(--olive); color: #fff; }
.mini-box { width: 19px; height: 19px; border-radius: 6px; border: 1.5px solid var(--border); flex: none; }
.mini-cat { display: flex; align-items: center; gap: 8px; padding: 10px 15px 6px; font-size: 10px; font-weight: 700; letter-spacing: .9px; color: var(--ink-2); }
.mini-cat span { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.mini-qty { font-size: 13px; font-weight: 700; }
.chip-price { font-size: 10.5px; font-weight: 600; color: var(--olive-dark); background: var(--olive-bg); padding: 3px 8px; border-radius: 999px; }
.mini-total { display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: var(--surface-mute); font-size: 13px; }
.mini-total b { margin-left: auto; font-size: 15px; }

/* ── Sections ──────────────────────────────────────────────── */
section { position: relative; }
/* L'en-tête est collant : sans cette marge, un lien d'ancre dépose le titre
   de la section DERRIÈRE lui, et on croit avoir atterri au mauvais endroit. */
section[id] { scroll-margin-top: 102px; }
.sec { padding: 96px 0; }
.sec-alt { background: var(--cream-alt); }
.sec-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.sec-head .kicker { font-size: 13px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; }
.sec-head p { color: var(--ink-2); font-size: 18px; }
@media (max-width: 700px) { .sec { padding: 68px 0; } }

/* ── Le problème ───────────────────────────────────────────── */
.pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.pain {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.pain q { display: block; font-family: var(--serif); font-size: 19px; font-weight: 600; quotes: '«\00a0' '\00a0»'; margin-bottom: 9px; }
.pain p { font-size: 14.5px; color: var(--ink-2); }

/* ── Comment ça marche ─────────────────────────────────────── */
.steps { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.step { display: flex; flex-direction: column; }
.step-n {
  width: 38px; height: 38px; border-radius: 50%; background: var(--terra); color: #fff;
  display: grid; place-content: center; font-weight: 700; font-size: 17px; margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(192,90,68,.3);
}
.step h3 { font-size: 23px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 22px; }
.step .visual { margin-top: auto; }

/* ── Fonctionnalités ───────────────────────────────────────── */
.feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.feat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-content: center;
  background: rgba(192,90,68,.1); color: var(--terra); margin-bottom: 16px;
}
.feat-ico.olive { background: rgba(122,138,80,.13); color: var(--olive-dark); }
.feat h3 { font-size: 20px; margin-bottom: 8px; }
.feat p { color: var(--ink-2); font-size: 15px; }
.feat .tag {
  display: inline-block; margin-top: 12px; font-size: 11.5px; font-weight: 700; letter-spacing: .6px;
  color: var(--terra); background: rgba(192,90,68,.1); padding: 4px 10px; border-radius: 999px;
}

/* ── Bande de plats ────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.gallery figure { margin: 0; position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.3,1); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; color: #fff;
  font-size: 13.5px; font-weight: 600;
  background: linear-gradient(to top, rgba(26,16,8,.78), transparent);
}
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ── Installation ──────────────────────────────────────────── */
.install-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 40px; box-shadow: var(--shadow-md); max-width: 880px; margin-inline: auto;
}
.os-tabs { display: flex; gap: 8px; background: var(--surface-mute); padding: 6px; border-radius: 999px; margin-bottom: 30px; flex-wrap: wrap; }
.os-tab {
  flex: 1; min-width: 110px; border: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  padding: 11px 14px; border-radius: 999px; transition: background-color .2s, color .2s, box-shadow .2s;
}
.os-tab[aria-selected='true'] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.os-panel[hidden] { display: none; }
.os-panel .detected { font-size: 13.5px; color: var(--olive-dark); background: var(--olive-bg); border-radius: var(--r-sm); padding: 9px 14px; margin-bottom: 22px; display: inline-flex; gap: 8px; align-items: center; }
.os-steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 16px; }
.os-steps li { counter-increment: s; display: flex; gap: 15px; align-items: flex-start; }
.os-steps li::before {
  content: counter(s); flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); border: 1.5px solid var(--border); color: var(--ink);
  display: grid; place-content: center; font-size: 14px; font-weight: 700;
}
.os-steps li p { font-size: 15.5px; }
.os-steps li p b { font-weight: 600; }
.os-note { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 14.5px; color: var(--ink-2); }
.key {
  display: inline-flex; align-items: center; gap: 5px; vertical-align: -3px;
  background: var(--cream); border: 1px solid var(--border); border-radius: 7px;
  padding: 2px 7px; font-size: 13px; font-weight: 600;
}

/* ── Tarifs ────────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 880px; margin-inline: auto; align-items: start; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; max-width: 460px; } }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 34px; box-shadow: var(--shadow-sm); }
.plan--pro { background: var(--ink); border-color: var(--ink); color: var(--cream); box-shadow: var(--shadow-lg); position: relative; }
.plan-name { font-size: 14px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.plan--pro .plan-name { color: var(--terra-light); }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.plan-price b { font-family: var(--serif); font-size: 46px; font-weight: 700; line-height: 1; }
.plan-price span { font-size: 15px; color: var(--ink-2); }
.plan--pro .plan-price span { color: rgba(255,244,236,.6); }
.plan-alt { font-size: 14.5px; color: var(--ink-2); margin-bottom: 24px; }
.plan--pro .plan-alt { color: rgba(255,244,236,.7); }
.plan ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.plan li svg { flex: none; margin-top: 3px; color: var(--olive); }
.plan--pro li svg { color: var(--terra-light); }
.plan .btn { width: 100%; }
.plan--pro .btn-primary { background: var(--terra); }
.plan--pro .btn-primary:hover { background: var(--terra-light); }
.save-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--terra); color: #fff; font-size: 12.5px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.family-note {
  max-width: 880px; margin: 26px auto 0; display: flex; gap: 14px; align-items: flex-start;
  background: var(--olive-bg); border: 1px solid rgba(122,138,80,.25); border-radius: var(--r-md); padding: 20px 22px;
}
.family-note svg { flex: none; color: var(--olive-dark); margin-top: 2px; }
.family-note b { display: block; margin-bottom: 3px; }
.family-note p { font-size: 15px; color: var(--ink-2); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 600; font-size: 17px;
  display: flex; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; margin-left: auto; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3);
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq .answer { padding: 0 24px 22px; color: var(--ink-2); font-size: 15.5px; }
.faq .answer a { color: var(--terra); }

/* ── Appel final ───────────────────────────────────────────── */
.final { position: relative; overflow: hidden; background: var(--ink); color: var(--cream); padding: 96px 0; text-align: center; }
.final .blob-c { width: 560px; height: 560px; background: rgba(192,90,68,.22); top: -280px; left: 50%; transform: translateX(-50%); filter: blur(60px); }
.final .page { position: relative; z-index: 1; }
.final h2 { font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 18px; }
.final p { color: rgba(255,244,236,.72); font-size: 18px; max-width: 34em; margin: 0 auto 32px; }
.final .btn-ghost { color: var(--cream); border-color: rgba(255,244,236,.28); }
.final .btn-ghost:hover { background: rgba(255,244,236,.08); border-color: rgba(255,244,236,.5); }
.final-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Pied de page ──────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,244,236,.6); padding: 0 0 48px; font-size: 14.5px; }
.footer-top { border-top: 1px solid rgba(255,244,236,.12); padding-top: 48px; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.footer-brand img { height: 28px; width: auto; opacity: .95; }
.footer-brand p { margin-top: 12px; max-width: 26em; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-links h4 { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,244,236,.4); margin: 0 0 14px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,244,236,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: 13.5px; }

/* ── Apparition au défilement ──────────────────────────────── */
/* Par défaut, TOUT est visible. L'opacité nulle n'est appliquée que si le
   script a pu poser la classe `js` sur <html> — sinon un script bloqué ou en
   échec rendrait invisible toute la page sous le hero. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .feat:hover { transform: none; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
