/* ============================================================
   Wander Ride — feuille de style (registre éditorial V2).
   Titres en serif haute lisibilité (Fraunces), corps en Inter.
   Charte héraldique : bordeaux profond, parchemin, or.
   Direction : maison parisienne, sombre et premium.
   Aligné sur la version 2 du site ombrelle wander.paris.
   ============================================================ */

: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;
  --radius:     4px;
  --radius-sm:  3px;
  --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: 110px 0; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--wine-deep); color: #efe1d8; }

.section-head { max-width: 720px; margin: 0 0 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 18px 0 20px; color: var(--ink); }
.section-dark .section-head h2, .section-head-light h2 { color: #fff; }
.section-head p { color: var(--muted); font-size: 1.16rem; 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); }

/* ---------- 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-outline { background: transparent; border-color: var(--gold); color: var(--wine); }
.btn-outline:hover { background: var(--wine); border-color: var(--wine); color: var(--white); }
.btn-sm { padding: 11px 20px; font-size: 0.76rem; }
.btn-lg { padding: 18px 38px; font-size: 0.88rem; }
.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: 30px; 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.14em; line-height: 1; color: #fff;
}
.brand-text strong { font-weight: 600; color: var(--gold-lt); }

.main-nav { display: flex; gap: 30px; margin-left: auto; }
.main-nav a { color: rgba(255,255,255,.86); font-weight: 500; font-size: 0.94rem; 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: 16px; 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 80px;
  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: 56px; align-items: center; width: 100%; }
.hero-copy .eyebrow { color: var(--gold-lt); }
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  margin: 22px 0 24px;
  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.22rem; color: #e3cdd1; max-width: 545px; line-height: 1.62; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; 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.04rem; 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; }
.crest-glow, .hero-glow {
  position: absolute; width: 88%; 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); animation: pulse 7s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.06); opacity: 1; } }
.hero-crest { position: relative; max-height: 520px; width: auto; filter: drop-shadow(0 26px 50px rgba(0,0,0,.55)); }
.hero-crest-svg { position: relative; width: 320px; max-width: 80%; filter: drop-shadow(0 22px 40px rgba(0,0,0,.5)); }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1;
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.5); display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); }

/* ---------- 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.2rem; line-height: 1; color: var(--gold-lt);
}
.statband-label { display: block; font-size: 0.74rem; letter-spacing: .14em; text-transform: uppercase; color: #b89aa0; margin-top: 12px; }

/* ---------- Strip de confiance ---------- */
.strip { background: var(--wine-deep); color: #e7cfd3; padding: 24px 0; border-bottom: 1px solid rgba(194,165,102,.16); }
.strip-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; justify-content: center; text-align: center; }
.strip-inner p { font-family: var(--display); font-style: italic; font-size: 1.02rem; color: #e6c8ce; }
.strip-tags { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.strip-tags li { font-size: 0.78rem; font-weight: 600; letter-spacing: .04em; color: #f3e3e5; border: 1px solid rgba(194,165,102,.45); padding: 6px 15px; 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 ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); 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 { font-size: 1.7rem; margin-bottom: 16px; }
.card h3 { font-size: 1.28rem; margin-bottom: 11px; color: var(--ink); }
.card p { color: var(--muted); font-size: 0.99rem; }
.card-bordered { background: transparent; border-color: var(--line); }
.card-bordered:hover { background: var(--white); }

/* ---------- Features ---------- */
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; position: relative; }
.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.32rem; margin-bottom: 12px; color: var(--ink); }
.feature p { color: var(--muted); font-size: 0.99rem; }

/* ---------- Étapes ---------- */
.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: 50px; height: 50px; border-radius: 50%; background: var(--wine); color: #fff;
  font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.3rem; margin-bottom: 18px;
  border: 1px solid var(--gold); box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.2rem; margin-bottom: 9px; color: var(--ink); }
.step p { color: var(--muted); font-size: 0.97rem; }

.callout { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 26px 30px; color: var(--muted); font-size: 1.02rem; line-height: 1.66; }
.callout strong { font-family: var(--display); color: var(--ink); font-weight: 600; }

/* ---------- Balades (parcours) ---------- */
.tours-grid { margin-bottom: 26px; }
.tour-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow-sm); position: relative; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.tour-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--wine); border-radius: var(--radius) var(--radius) 0 0; transition: background .25s var(--ease); }
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.tour-card:hover::before { background: var(--gold); }
.tour-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; }
.tour-card h3 { font-size: 1.7rem; margin-bottom: 10px; color: var(--ink); }
.tour-desc { color: var(--muted); margin-bottom: 20px; font-size: 1.02rem; 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.88rem; 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: #d7b9bf; }
.estimator input, .estimator select {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  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: var(--radius); padding: 26px; }
.est-block-accent { background: var(--wine); border-color: var(--gold); }
.est-label { display: block; font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase; color: #d7b9bf; margin-bottom: 10px; }
.est-block-accent .est-label { color: #f0d2b6; }
.est-value { display: block; font-family: var(--display); font-style: italic; font-size: 2.6rem; font-weight: 500; color: var(--gold-lt); line-height: 1.04; }
.est-block-accent .est-value { color: #fff; }
.est-unit { display: block; font-size: 0.86rem; color: #c79aa1; margin-top: 6px; }
.est-block-accent .est-unit { color: #f3d9c4; }
.est-disclaimer { font-size: 0.82rem; color: #b78f96; 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.14rem; 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: var(--radius); padding: 36px; 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: var(--radius-sm);
  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: var(--radius-sm); padding: 4px 26px; transition: border-color .2s var(--ease); }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer; padding: 20px 0; font-family: var(--display); font-weight: 600; font-size: 1.14rem; 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(--wine); 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.66; }

/* ---------- CTA finale ---------- */
.final-cta { background: linear-gradient(155deg, #34101a, var(--wine-deep) 60%, var(--wine-night)); color: #fff; position: relative; overflow: hidden; }
.final-cta::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;
}
.final-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 660px; margin: 0 auto; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; font-weight: 400; }
.final-cta h2 em { font-style: italic; color: var(--gold-lt); }
.final-cta p { color: #e6c8ce; font-size: 1.18rem; 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.5fr 1fr 1.5fr; gap: 40px; }
.footer-wordmark { font-family: var(--display); font-weight: 600; font-size: 1.7rem; letter-spacing: .12em; color: #fff; }
.footer-wordmark strong { font-weight: 600; color: var(--gold-lt); }
.footer-brand p { margin-top: 14px; font-size: 0.95rem; max-width: 290px; color: #bf969d; }
.footer-brand .footer-motto { font-family: var(--display); font-style: italic; font-size: 1.02rem; color: var(--gold-lt); margin-top: 16px; max-width: none; }
.footer-nav { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { color: #d6bcc1; font-size: 0.95rem; }
.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 ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure { order: -1; min-height: 320px; }
  .hero-crest { max-height: 360px; }
  .hero { min-height: auto; }
  .grid-4 { 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; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  /* En-tête mobile : la marque WANDER RIDE est large, on la réduit et on
     colle les actions à droite pour que langue + burger restent dans l'écran. */
  .brand-text { font-size: 1.1rem; letter-spacing: 0.07em; }
  .header-inner { gap: 12px; }
  .header-actions { gap: 10px; margin-left: auto; }
  .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; }
  .hero-points { flex-direction: column; }
  .hero-points li { padding: 18px 0 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .estimator-inputs, .estimator-results { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

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