/* ============================================================
   Wander Fleet — VERSION 2 (registre éditorial).
   Inspirée de la V2 du site ombrelle : sombre, premium,
   titres serif (Fraunces, italiques dorées), corps Inter.
   Charte héraldique conservée : bordeaux (écu), parchemin, or.
   Cette feuille ne sert QUE la page d'accueil V2 (index.html).
   Le calculateur et les pages légales gardent styles.css (V1).
   ============================================================ */

:root {
  --wine:       #7a1d2c;   /* bordeaux de l'écu — primaire */
  --wine-dk:    #5c1320;
  --wine-deep:  #2a0a11;   /* fonds sombres, héros, footer */
  --wine-night: #1d070c;

  --cream:      #f6f2e9;   /* parchemin — fond clair */
  --cream-2:    #efe8d8;
  --sand:       #e9e0cd;
  --line:       #ddd2bd;

  --ink:        #241016;
  --muted:      #6a5a59;

  --gold:       #c2a566;
  --gold-lt:    #d8c089;
  --gold-dk:    #a3854a;

  --white:      #ffffff;

  --container:  1180px;
  --display: "Fraunces", "Hoefler Text", Georgia, "Times New Roman", serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow:     0 30px 70px -34px rgba(20, 6, 10, 0.55);
  --shadow-sm:  0 14px 36px -22px rgba(20, 6, 10, 0.5);
  --ease:       cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--wine-dk); }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  font-optical-sizing: auto;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; }
.section { padding: 108px 0; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--wine-deep); color: #efe1d8; }

.section-head { max-width: 730px; margin: 0 0 58px; }
.section-head.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin: 18px 0 20px; color: var(--ink); }
.section-dark .section-head h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 1.15rem; line-height: 1.65; }
.section-dark .section-head p,
.section-head-light p { color: #d6bfc4; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.section-head-center .eyebrow { justify-content: center; }
.section-dark .eyebrow,
.section-head-light .eyebrow { color: var(--gold-lt); }

.italic { font-style: italic; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--wine); color: var(--white); }
.btn-primary:hover { background: var(--wine-dk); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-gold { background: var(--gold); color: var(--wine-deep); }
.btn-gold:hover { background: var(--gold-lt); color: var(--wine-deep); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.42); color: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }
.btn-lg { padding: 17px 38px; font-size: 0.86rem; }
.btn-sm { padding: 11px 20px; font-size: 0.76rem; }
.btn-block { width: 100%; }

/* lien fléché */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 0.84rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--wine);
}
.arrow-link::after { content: "→"; transition: transform .2s var(--ease); }
.arrow-link:hover::after { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(42, 10, 17, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: rgba(194, 165, 102, .28);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark { display: inline-flex; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.brand-text {
  font-family: var(--display); font-weight: 600; font-size: 1.4rem;
  letter-spacing: 0.12em; line-height: 1; color: #fff;
}
.brand-text strong { font-weight: 600; color: var(--gold-lt); }
/* annule l'effet chrome de la v1 dans ce header sombre */
.brand-text.chrome-text { background: none; -webkit-text-fill-color: currentColor; -webkit-text-stroke: 0; text-shadow: none; }

.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a { color: rgba(255,255,255,.86); font-weight: 500; font-size: 0.92rem; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold); transition: width .25s var(--ease);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: 6px; }
.lang-switch { display: inline-flex; border: 1px solid rgba(255,255,255,.34); border-radius: 2px; overflow: hidden; }
.lang-switch button {
  border: 0; background: transparent; cursor: pointer;
  padding: 7px 12px; font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: .08em; color: rgba(255,255,255,.8);
}
.lang-switch button.is-active { background: var(--gold); color: var(--wine-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 84px;
  background:
    radial-gradient(1100px 620px at 78% 16%, rgba(194,165,102,.20), transparent 60%),
    radial-gradient(900px 700px at 12% 90%, rgba(122,29,44,.40), transparent 62%),
    linear-gradient(160deg, #34101a 0%, var(--wine-deep) 46%, var(--wine-night) 100%);
  color: #f4e8e2;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 4px 4px; opacity: .5;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 54px; align-items: center; width: 100%; }
.hero-copy .eyebrow { color: var(--gold-lt); }
.hero-copy h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  margin: 22px 0 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}
.hero-copy h1 em { font-style: italic; color: var(--gold-lt); }
.hero-copy .lead { font-size: 1.2rem; color: #e3cdd1; max-width: 545px; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 15px; margin: 34px 0 0; }

.hero-points {
  display: flex; flex-wrap: wrap; gap: 0; margin-top: 46px;
  border-top: 1px solid rgba(194,165,102,.32);
}
.hero-points li {
  flex: 1; min-width: 150px; padding: 18px 22px 0 0;
  font-family: var(--display); font-style: italic; font-size: 1.02rem; color: #f0dde1;
}
.hero-points li::before {
  content: ""; display: block; width: 22px; height: 2px; background: var(--gold); margin-bottom: 12px;
}

.hero-figure { position: relative; display: flex; justify-content: center; align-items: center; min-height: 440px; }
.hero-glow {
  position: absolute; width: 84%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,165,102,.34), rgba(122,29,44,.12) 52%, transparent 70%);
  filter: blur(8px); pointer-events: none; animation: pulse 7s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.06); opacity: 1; } }
/* blason détouré (fond transparent) : il flotte directement sur le héros sombre */
.hero-crest { position: relative; max-height: 500px; width: auto; filter: drop-shadow(0 26px 50px rgba(0,0,0,.6)); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 1;
}
.hero-scroll span { display: block; width: 1px; height: 36px; background: linear-gradient(var(--gold), transparent); margin: 0 auto; }

/* ---------- Bandeau de chiffres ---------- */
.statband { background: var(--wine-night); color: var(--cream); border-bottom: 1px solid rgba(194,165,102,.2); }
.statband-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.statband-item { text-align: center; padding: 40px 18px; border-right: 1px solid rgba(194,165,102,.16); }
.statband-item:last-child { border-right: 0; }
.statband-value {
  display: block; font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: 2.1rem; line-height: 1.04; color: var(--gold-lt);
}
.statband-label { display: block; font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase; color: #b89aa0; margin-top: 12px; }

/* ---------- Strip de confiance ---------- */
.strip { background: var(--wine-deep); color: #e7cfd3; padding: 24px 0; }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; justify-content: center; text-align: center; }
.strip-inner p { font-size: 0.86rem; letter-spacing: .04em; color: #c79aa1; }
.strip-tags { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.strip-tags li { font-size: 0.8rem; font-weight: 600; color: #f3e3e5; border: 1px solid rgba(194,165,102,.45); padding: 5px 14px; border-radius: 100px; }

/* ---------- Grilles ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cartes (contexte / décideurs) ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 32px 30px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.card-icon { width: 30px; height: 30px; color: var(--wine); margin-bottom: 18px; }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-family: var(--display); font-size: 1.34rem; margin-bottom: 11px; color: var(--ink); }
.card p { color: var(--muted); font-size: 0.98rem; }
.card-bordered { background: var(--cream); }
.card-bordered:hover { background: var(--white); }

/* ---------- Features (offre) ---------- */
.feature { padding: 36px 32px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; position: relative; }
.feature::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); border-radius: 4px 4px 0 0; }
.feature-num { font-family: var(--display); font-style: italic; font-size: 2.2rem; color: var(--gold-dk); display: block; margin-bottom: 14px; }
.feature h3 { font-size: 1.36rem; margin-bottom: 12px; color: var(--ink); }
.feature p { color: var(--muted); font-size: 0.99rem; }

/* ---------- Étapes (financement) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-bottom: 40px; }
.step { position: relative; padding-top: 6px; }
.step-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: transparent; color: var(--gold-dk);
  font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.5rem; margin-bottom: 18px;
  border: 1px solid var(--gold);
}
.step h3 { font-size: 1.22rem; margin-bottom: 9px; color: var(--ink); }
.step p { color: var(--muted); font-size: 0.96rem; }
.callout { background: var(--wine-deep); color: #e9d3d7; border-radius: 4px; padding: 30px 34px; font-size: 1.04rem; line-height: 1.62; border-left: 3px solid var(--gold); }
.callout strong { color: #fff; font-family: var(--display); font-weight: 600; }

/* ---------- Vélos ---------- */
.bikes-grid { margin-bottom: 24px; }
.bike-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 34px; box-shadow: var(--shadow-sm); }
.bike-tag { display: inline-block; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--wine); border: 1px solid var(--gold); padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.bike-card h3 { font-family: var(--display); font-size: 1.8rem; margin-bottom: 10px; color: var(--ink); }
.bike-desc { color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.spec-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.spec-list li:last-child { border-bottom: 0; }
.spec-list span { color: var(--muted); }
.spec-list strong { text-align: right; color: var(--ink); font-weight: 600; }
.fineprint { color: var(--muted); font-size: 0.85rem; max-width: 780px; line-height: 1.6; }

/* ---------- Estimateur (sombre) ---------- */
.estimator { max-width: 880px; margin: 0 auto; }
.estimator-inputs { display: grid; grid-template-columns: 1fr 1.4fr; gap: 22px; margin-bottom: 28px; }
.estimator .field label { color: #d6bfc4; }
.estimator input, .estimator select {
  width: 100%; padding: 14px 16px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; font-family: var(--sans); font-size: 1rem;
}
.estimator select option { color: #111; }
.estimator input:focus, .estimator select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194,165,102,.18); }

.estimator-results { display: grid; grid-template-columns: 1fr 1.4fr; gap: 22px; margin-bottom: 24px; }
.est-block { background: rgba(255,255,255,.05); border: 1px solid rgba(194,165,102,.22); border-radius: 4px; padding: 28px; }
.est-block-accent { background: linear-gradient(155deg, #3a121c, var(--wine-deep)); border-color: var(--gold); }
.est-label { display: block; font-size: 0.74rem; letter-spacing: .14em; text-transform: uppercase; color: #c79aa1; margin-bottom: 12px; }
.est-value { display: block; font-family: var(--display); font-style: italic; font-size: 2.7rem; font-weight: 500; color: var(--gold-lt); line-height: 1.04; }
.est-unit { display: block; font-size: 0.86rem; color: #b89aa0; margin-top: 6px; }
.est-disclaimer { font-size: 0.8rem; color: #a98088; margin-bottom: 24px; line-height: 1.6; }
.est-cta { text-align: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: 18px 0 18px; color: var(--ink); }
.contact-copy .lead { color: var(--muted); font-size: 1.13rem; line-height: 1.62; }
.contact-points { margin: 28px 0; display: grid; gap: 12px; }
.contact-points li { position: relative; padding-left: 28px; font-weight: 500; color: var(--ink); }
.contact-points li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dk); font-weight: 700; }
.contact-direct { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-direct p { font-size: 0.92rem; color: var(--muted); }
.contact-mail { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.3rem; color: var(--wine); }

/* ---------- Formulaire ---------- */
.lead-form { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 38px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.86rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 3px;
  font-family: var(--sans); font-size: 0.98rem; background: var(--cream); color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wine); background: #fff; box-shadow: 0 0 0 3px rgba(122,29,44,.1); }
.field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); margin: 8px 0 20px; cursor: pointer; }
.consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--wine); }
.form-required { font-size: 0.8rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 4px 24px; transition: border-color .2s var(--ease); }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer; padding: 18px 0; font-family: var(--display); font-weight: 500; font-size: 1.16rem; list-style: none; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-dk); font-weight: 400; line-height: 1; flex-shrink: 0; transition: transform .2s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 20px; line-height: 1.62; }

/* ---------- CTA finale ---------- */
.final-cta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(194,165,102,.18), transparent 60%),
    linear-gradient(135deg, #3a121c, var(--wine-deep));
  color: #fff; text-align: center;
}
.final-cta-inner { max-width: 660px; margin: 0 auto; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 16px; font-style: italic; }
.final-cta p { color: #e6c8ce; font-size: 1.16rem; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--wine-night); color: #d6bcc1; padding: 70px 0 38px; border-top: 1px solid rgba(194,165,102,.26); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.6fr; gap: 40px; }
.footer-wordmark { font-family: var(--display); font-weight: 600; font-size: 1.7rem; letter-spacing: .1em; color: #fff; }
.footer-wordmark.chrome-text { background: none; -webkit-text-fill-color: currentColor; -webkit-text-stroke: 0; text-shadow: none; }
.footer-wordmark strong { font-weight: 600; color: var(--gold-lt); }
.footer-motto { margin-top: 10px; font-family: var(--display); font-style: italic; font-size: 1.02rem; letter-spacing: .04em; color: var(--gold-lt); }
.footer-brand > p { margin-top: 12px; font-size: 0.94rem; max-width: 290px; color: #bf969d; }
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav-title { font-family: var(--sans); font-weight: 600; font-size: 0.72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 4px; }
.footer-nav a { color: #d6bcc1; font-size: 0.94rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal p { font-size: 0.86rem; margin-bottom: 9px; color: #bf969d; line-height: 1.55; }
.footer-copy { color: #93686f; }
.footer-copy a { color: #bf969d; }
.footer-copy a:hover { color: #fff; }

/* ---------- Apparition au scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 38px; }
  .hero-figure { order: -1; min-height: 0; }
  .hero { min-height: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .statband-inner { grid-template-columns: repeat(2, 1fr); }
  .statband-item:nth-child(2) { border-right: 0; }
  .statband-item:nth-child(1), .statband-item:nth-child(2) { border-bottom: 1px solid rgba(194,165,102,.16); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .estimator-inputs, .estimator-results { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 74px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  /* En-tete mobile : marque large « WANDER FLEET » compactee pour que langue + burger
     restent dans l'ecran (corrige le debordement a droite). */
  .brand-text { font-size: 1rem; letter-spacing: 0.04em; }
  .brand-mark svg { width: 26px; height: auto; }
  .header-inner { gap: 10px; }
  .header-actions { gap: 8px; margin-left: auto; }
  .lang-switch button { padding: 6px 9px; }
  br.br-desktop { display: none; }
  .main-nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(42,10,17,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(194,165,102,.28); padding: 22px 28px; gap: 18px; margin: 0;
  }
  .main-nav.is-open a { color: #fff; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-points { flex-direction: column; }
  .hero-points li { padding: 16px 0 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Accessibilité ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, .reveal { transition: none !important; animation: none !important; transform: none !important; opacity: 1 !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   SOUS-PAGES (calculateur, mentions légales, confidentialité, merci)
   En-tête plein (sticky bordeaux) car pas de héros sombre derrière.
   ============================================================ */
.site-header.header-solid {
  position: sticky;
  background: var(--wine-deep);
  border-bottom-color: rgba(194, 165, 102, .28);
  backdrop-filter: none;
}

/* ---------- Calculateur (compléments à l'estimateur) ---------- */
.calc-inputs { grid-template-columns: repeat(3, 1fr); }
.calc-results { grid-template-columns: repeat(3, 1fr); }
.est-value-sm { font-size: 1.9rem; }

.calc-details {
  display: grid; gap: 0; margin: 6px 0 30px;
  border: 1px solid rgba(194, 165, 102, .22); border-radius: 4px;
  background: rgba(255, 255, 255, .04);
}
.calc-details li {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 14px 20px; border-bottom: 1px solid rgba(194, 165, 102, .14);
  font-size: 0.95rem; color: #e0c7cb;
}
.calc-details li[hidden] { display: none !important; }
.calc-details li:last-child { border-bottom: 0; }
.calc-details li strong { color: #fff; font-weight: 600; white-space: nowrap; }
.calc-details .calc-note { display: block; color: #b98f97; font-style: italic; font-size: 0.85rem; }

.calc-net { margin-top: 8px; }
.calc-net-title { font-family: var(--display); font-style: italic; color: var(--gold-lt); font-size: 1.5rem; margin-bottom: 10px; }
.calc-net-lead { color: #d6bfc4; margin-bottom: 26px; max-width: 760px; line-height: 1.6; }
.calc-net-sum { background: rgba(194, 165, 102, .12); }
.calc-net-sum span, .calc-net-sum strong { font-family: var(--display); font-style: italic; font-size: 1.08rem; color: #fff; }
.calc-net-note { color: #a98088; font-size: 0.8rem; line-height: 1.6; margin-top: 18px; }

/* ---------- Pages légales ---------- */
.legal { padding: 72px 0 96px; background: var(--cream); }
.legal-head { max-width: 820px; margin: 0 auto 40px; }
.legal-head .eyebrow { color: var(--gold-dk); }
.legal-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 12px; color: var(--ink); }
.legal-updated { color: var(--muted); font-size: 0.9rem; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-family: var(--display); font-size: 1.5rem; margin: 42px 0 14px; color: var(--wine); }
.legal-content p { margin-bottom: 14px; line-height: 1.72; color: #4a3b3d; }
.legal-content a { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--ink); }
.legal-table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 0.95rem; vertical-align: top; }
.legal-table th { width: 38%; background: var(--cream-2); font-weight: 600; color: var(--ink); }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: 0; }
.legal-todo { color: var(--wine); font-style: italic; font-size: 0.88rem; }
.legal-note { margin-top: 32px; padding: 22px 26px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 4px; }
.legal-note p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* ---------- Page « merci » ---------- */
.thanks {
  min-height: 72vh; display: flex; align-items: center; padding: 110px 0;
  background:
    radial-gradient(800px 460px at 50% 0%, rgba(194,165,102,.16), transparent 60%),
    linear-gradient(160deg, #34101a, var(--wine-deep));
  color: #f4e8e2;
}
.thanks-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.thanks-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 74px; height: 74px; border-radius: 50%; background: var(--gold); color: var(--wine-deep);
  margin-bottom: 26px; box-shadow: 0 18px 40px -16px rgba(194,165,102,.6);
}
.thanks-mark svg { width: 34px; height: 34px; }
.thanks h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; font-style: italic; }
.thanks p { color: #e6c8ce; font-size: 1.12rem; margin-bottom: 30px; line-height: 1.6; }

/* ---------- Responsive sous-pages ---------- */
@media (max-width: 1000px) {
  .calc-inputs { grid-template-columns: repeat(2, 1fr); }
  .calc-results { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .calc-inputs { grid-template-columns: 1fr; }
  .legal-table th { width: 44%; }
}


/* ============================================================
   VERSION 4 — Héros desktop compact : blason remonté en haut à
   droite, les deux boutons sous le blason, héros + bandeau des
   chiffres visibles sans défiler.
   ============================================================ */
@media (min-width: 721px) {
  .hero { min-height: auto; padding: 104px 0 30px; }
  .hero-inner {
    grid-template-columns: 1.06fr 0.94fr;
    grid-template-areas: "copy figure" "copy actions";
    align-items: start; gap: 26px 48px;
  }
  .hero-copy { grid-area: copy; align-self: center; }
  .hero-copy h1 { font-size: clamp(2.1rem, 3.6vw, 3.2rem); margin: 16px 0 18px; }
  .hero-copy .lead { font-size: 1.06rem; max-width: 520px; }
  .hero-points { margin-top: 26px; }
  .hero-points li { padding-top: 14px; font-size: 0.96rem; }
  .hero-figure { grid-area: figure; min-height: 0; align-self: start; }
  .hero-crest { max-height: 300px; }
  .hero-cta {
    grid-area: actions; margin: 0; justify-self: center; align-self: start;
    flex-direction: column; align-items: stretch; gap: 12px; width: 100%; max-width: 290px;
  }
  .hero-cta .btn { width: 100%; }
  .hero-scroll { display: none; }
  .statband-item { padding: 22px 16px; }
}
@media (max-width: 720px) {
  .hero-inner { grid-template-areas: "figure" "copy" "actions"; }
  .hero-copy { grid-area: copy; }
  .hero-figure { grid-area: figure; }
  .hero-cta { grid-area: actions; }
}
