/* =========================================================
   VITA PROPRE — Feuille de style
   Charte : bleu marine + crème + doré discret
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Couleurs */
  --navy:        #2b3a5e;   /* bleu marine du logo */
  --navy-deep:   #1e2a47;   /* fond foncé */
  --navy-soft:   #3a4a70;
  --cream:       #faf7f1;   /* fond chaleureux */
  --cream-2:     #f3ede1;   /* fond crème plus soutenu */
  --white:       #ffffff;
  --gold:        #c2a063;   /* doré discret (aplats / fonds) */
  --gold-soft:   #d8c39a;   /* doré clair (texte/icône sur marine) */
  --gold-ink:    #866626;   /* doré encre (texte/icône sur clair, AA) */
  --ink:         #2c2f38;   /* texte principal (chaud) */
  --muted:       #5e6069;   /* texte secondaire (contraste AA relevé) */
  --line:        #e7e0d3;   /* filets / séparateurs */
  --success:     #4a7c59;

  /* Typo */
  --font-brand:  "Cinzel", Georgia, serif;
  --font-title:  "Cormorant Garamond", Georgia, serif;
  --font-script: "Parisienne", cursive;
  --font-body:   "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Divers */
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 10px rgba(30,42,71,.06);
  --shadow-md:   0 12px 40px rgba(30,42,71,.10);
  --maxw:        1140px;
  --gutter:      clamp(1.1rem, 4vw, 2rem);
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; line-height: 1.12; font-weight: 600; }

/* ---------- Utilitaires ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--cream { background: var(--cream-2); }
.section--navy { background: var(--navy-deep); color: #eef1f7; }
.section--navy .lead, .section--navy .muted { color: #c7cede; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: .9rem;
}
.section--navy .eyebrow { color: var(--gold-soft); }
.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
h2.title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600; letter-spacing: .01em; color: var(--navy);
}
.section--navy h2.title { color: #fff; }
h3 { font-family: var(--font-title); font-size: 1.5rem; color: var(--navy); }
.section--navy h3 { color: #fff; }
.lead { font-size: 1.12rem; color: var(--muted); margin-top: .9rem; }
.muted { color: var(--muted); }
.script { font-family: var(--font-script); color: var(--gold-ink); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.55rem; border-radius: 999px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-deep); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #241d0c; }
.btn--gold:hover { background: #b18e4f; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.section--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.section--navy .btn--ghost:hover { background: #fff; color: var(--navy); }
.btn svg { width: 1.05em; height: 1.05em; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,241,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--navy); }
.brand__logo { width: 44px; height: 44px; flex: none; display: block; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: var(--font-brand); font-weight: 600; font-size: 1.12rem; letter-spacing: .18em; color: var(--navy); }
.brand__name span { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.6rem; align-items: center; }
.main-nav a { font-weight: 600; font-size: .95rem; color: var(--ink); padding-block: .3rem; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold); transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-cta { margin-left: .4rem; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; padding: .4rem;
  width: 44px; height: 44px; color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(120% 120% at 85% -10%, #eef0f6 0%, var(--cream) 55%); }
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__wordmark { font-family: var(--font-brand); font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: .1em; color: var(--navy); }
.hero__sub-brand { font-family: var(--font-body); font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; font-size: .8rem; color: var(--muted); margin-top: .5rem; }
.hero__slogan { font-family: var(--font-script); font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  color: var(--gold-ink); margin-top: 1.1rem; }
.hero__pitch { font-size: 1.15rem; color: var(--ink); margin-top: 1.4rem; max-width: 34rem; }
.hero__pitch b { color: var(--navy); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.hero__visual { display: grid; place-items: center; }
.hero__badge {
  width: min(340px, 80%); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; color: var(--navy);
  background: radial-gradient(circle at 50% 35%, #fff 0%, var(--cream-2) 100%);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.hero__badge .badge-mark { width: 62%; display: block; }

/* ---------- Barre de réassurance ---------- */
.trust-bar { background: var(--navy); color: #eef1f7; }
.trust-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: 1.4rem; }
.trust-item { display: flex; align-items: center; gap: .7rem; justify-content: center; text-align: left; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold-soft); flex: none; }
.trust-item b { display: block; font-size: .98rem; color: #fff; }
.trust-item span { font-size: .8rem; color: #b9c1d6; }

/* ---------- Grille de services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--navy); margin-bottom: 1.1rem;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.service-card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Crédit d'impôt + simulateur ---------- */
.credit-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.credit-list { margin-top: 1.4rem; display: grid; gap: .8rem; }
.credit-list li { display: flex; gap: .7rem; align-items: flex-start; color: #dbe0ee; }
.credit-list svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; margin-top: 2px; }
.simulateur {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.3rem); box-shadow: var(--shadow-md);
}
.simulateur h3 { color: var(--navy); font-size: 1.5rem; }
.simulateur__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; }
.simulateur label { font-weight: 600; color: var(--navy); }
.simulateur input[type="number"] {
  width: 120px; padding: .6rem .8rem; font-size: 1.1rem; font-family: inherit; font-weight: 700;
  border: 1.5px solid var(--line); border-radius: 10px; color: var(--navy); text-align: right;
}
.simulateur input:focus { outline: 2px solid var(--gold-ink); outline-offset: 2px; border-color: var(--gold-ink); }
.simulateur__range { width: 100%; margin-top: 1.1rem; accent-color: var(--navy); }
.simulateur__result {
  margin-top: 1.4rem; padding: 1.2rem 1.3rem; border-radius: var(--radius);
  background: var(--cream-2); text-align: center;
}
.simulateur__result .old { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.simulateur__result .new { font-family: var(--font-title); font-weight: 700; font-size: 2.6rem; color: var(--success); line-height: 1.1; }
.simulateur__result .lbl { font-size: .85rem; color: var(--muted); }
.simulateur__note { font-size: .78rem; color: var(--muted); margin-top: 1rem; text-align: center; }

/* ---------- Étapes ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.steps.four { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm);
}
.section--navy .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.step__num {
  counter-increment: step; position: absolute; top: -20px; left: 1.6rem;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold); color: #241d0c; font-family: var(--font-title); font-weight: 700; font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.25rem; margin: .6rem 0 .4rem; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }
.section--navy .step p { color: #c4cbdc; }

/* ---------- Tarifs ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); text-align: center;
}
.price-card.is-featured { border-color: var(--gold-ink); box-shadow: 0 12px 40px rgba(194,160,99,.18); position: relative; }
.price-card__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #241d0c; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 999px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: .8rem; }
.price-card .price-old { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.price-card .price-new { font-family: var(--font-title); font-weight: 700; font-size: 2.5rem; color: var(--navy); line-height: 1.1; }
.price-card .price-new small { font-size: .9rem; font-weight: 600; color: var(--muted); }
.price-card .price-sub { color: var(--success); font-weight: 700; font-size: .9rem; margin-top: .3rem; }
.price-card ul { margin-top: 1.1rem; display: grid; gap: .55rem; text-align: left; }
.price-card li { display: flex; gap: .55rem; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.price-card li svg { width: 18px; height: 18px; color: var(--gold-ink); flex: none; margin-top: 4px; }
.pricing-note { text-align: center; margin-top: 1.6rem; font-size: .88rem; color: var(--muted); }

/* ---------- Zone d'intervention ---------- */
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.zone-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.zone-list li {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-size: .92rem; font-weight: 600; color: var(--navy);
}
.zone-card {
  background: var(--navy-deep); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-md);
}
.zone-card .pin { width: 46px; height: 46px; color: var(--gold-soft); }
.zone-card h3 { color: #fff; margin: .8rem 0 .4rem; }
.zone-card p { color: #c7cede; margin: 0; }

/* ---------- Témoignages ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.testimonial__stars { color: var(--gold-ink); letter-spacing: .1em; font-size: 1.05rem; }
.testimonial p { font-style: italic; color: var(--ink); margin: .8rem 0 1.1rem; }
.testimonial__author { display: flex; align-items: center; gap: .7rem; }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--cream-2); color: var(--navy);
  display: grid; place-items: center; font-family: var(--font-title); font-weight: 700; flex: none;
}
.testimonial__author b { display: block; font-size: .95rem; color: var(--navy); }
.testimonial__author span { font-size: .82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 48rem; margin-inline: auto; display: grid; gap: .8rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 1.15rem 1.3rem;
  font-weight: 700; font-size: 1.05rem; color: var(--navy); display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-q .chevron { width: 20px; height: 20px; flex: none; transition: transform .25s ease; color: var(--gold-ink); }
.faq-item[open] .chevron, .faq-item.is-open .chevron { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a > div { overflow: hidden; padding: 0 1.3rem; color: var(--muted); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a > div { padding-bottom: 1.25rem; }

/* ---------- Contact / formulaire ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,3.5rem); }
.contact-info { display: grid; gap: 1.2rem; align-content: start; }
.contact-line { display: flex; gap: .9rem; align-items: flex-start; }
.contact-line svg { width: 24px; height: 24px; color: var(--gold-ink); flex: none; margin-top: 2px; }
.contact-line b { display: block; color: var(--navy); }
.contact-line a, .contact-line span { color: var(--ink); }
.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,2.3rem); box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field label .req { color: #b4442f; }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem; padding: .75rem .9rem; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--cream); color: var(--ink); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--gold-ink); outline-offset: 2px; border-color: var(--gold-ink); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .84rem; color: var(--muted); margin-bottom: 1.1rem; }
.form__consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--navy); flex: none; }
.form__rgpd { font-size: .78rem; color: var(--muted); margin-top: 1rem; line-height: 1.5; }
.form__status { margin-top: 1rem; font-weight: 600; display: none; }
.form__status.ok { display: block; color: var(--success); }
.form__status.err { display: block; color: #b4442f; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #c7cede; padding-block: clamp(2.5rem,6vw,3.5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer .brand__logo, .site-footer .brand__name b { color: #fff; }
.site-footer .brand__name span { color: #9aa4bf; }
.footer-about { margin-top: 1rem; max-width: 26rem; font-size: .92rem; color: #aab3cc; }
.footer-sap { margin-top: 1rem; font-size: .82rem; color: #8f99b6; }
.footer-col h4 { font-family: var(--font-title); font-size: 1.2rem; color: #fff; margin: 0 0 .9rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { font-size: .93rem; color: #c7cede; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.2rem; padding-top: 1.3rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #8f99b6;
}
.footer-bottom a { color: #8f99b6; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Bandeau "placeholder" (aide au remplissage, à retirer avant mise en ligne) ---------- */
.todo { background: #fff7e6; border: 1px dashed #d9b45a; color: #7a5a12; }

/* ---------- Lien d'évitement (accessibilité clavier) ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0; font-weight: 700; }
.skip-link:focus { left: 0; }

/* ---------- États de focus visibles (charte) ---------- */
.btn:focus-visible, .main-nav a:focus-visible, .faq-q:focus-visible,
.nav-toggle:focus-visible, .skip-link:focus-visible, .footer-col a:focus-visible,
.contact-line a:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 3px; border-radius: 4px; }
.section--navy .btn:focus-visible { outline-color: var(--gold-soft); }

/* ---------- Réassurance sous le bouton du formulaire ---------- */
.form__reassure { text-align: center; font-size: .84rem; color: var(--muted); margin-top: .8rem; }

/* ---------- Barre d'action fixe (mobile) ---------- */
.mobile-cta { display: none; }
@media (max-width: 640px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: .7rem var(--gutter);
    background: rgba(250, 247, 241, .96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { justify-content: center; padding-inline: 1rem; }
  body { padding-bottom: 4.8rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__pitch { margin-inline: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { order: -1; }
  .credit-grid, .zone-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .testimonials-grid, .steps, .steps.four { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .main-nav, .nav-cta { display: none; }
  .site-header.nav-open .main-nav {
    display: block; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 1rem var(--gutter);
  }
  .site-header.nav-open .main-nav ul { flex-direction: column; align-items: stretch; gap: .3rem; }
  .site-header.nav-open .main-nav a { padding: .7rem .2rem; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: grid; place-items: center; }
  .services-grid, .pricing-grid, .testimonials-grid, .steps, .steps.four,
  .trust-bar .container, .footer-grid, .form__row { grid-template-columns: 1fr; }
  .form__row { gap: 0; }
  .footer-bottom { flex-direction: column; }
  .hero__text { min-width: 0; max-width: 100%; }
  .hero__wordmark { font-size: clamp(1.5rem, 7vw, 3rem); letter-spacing: .02em; }
  .hero__sub-brand { letter-spacing: .12em; font-size: .64rem; }
  .hero__slogan { font-size: clamp(1.1rem, 5.2vw, 1.9rem); overflow-wrap: break-word; }
}

/* ---------- Pages légales / texte ---------- */
.legal-header { background: var(--navy-deep); }
.legal-header .container { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.legal-header .brand__name b, .legal-header .brand__logo { color: #fff; }
.legal-header .brand__name span { color: #9aa4bf; }
.legal-header .back { margin-left: auto; color: #c7cede; font-weight: 600; font-size: .92rem; }
.legal-header .back:hover { color: var(--gold-soft); }
.legal { max-width: 800px; margin-inline: auto; }
.legal h1 { font-family: var(--font-title); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--navy); font-weight: 600; }
.legal h2 { font-family: var(--font-title); font-size: 1.5rem; color: var(--navy); margin: 2.2rem 0 .6rem; }
.legal p, .legal li { color: var(--ink); }
.legal ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .4rem; }
.legal a { color: var(--navy); text-decoration: underline; }
.legal .updated { color: var(--muted); font-size: .9rem; }
.legal .callout { background: var(--cream-2); border-left: 4px solid var(--gold); padding: 1rem 1.2rem; border-radius: 8px; margin: 1.2rem 0; }

/* Réduction des animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
