/* ============================================================
   Olympe Fenêtres — Design system v2
   Direction : artisan local de confiance
   Typo : Montserrat (400 / 500 / 600 / 700)
   Palette : bleu nuit + cuivre brûlé + crème
   ============================================================ */

:root {
  /* Palette */
  --ink:         #0f1d2d;      /* bleu nuit profond — titres, sections sombres */
  --ink-2:       #1a2e44;      /* bleu nuit médian */
  --ink-soft:    #2a3d56;      /* pour textes sur fond clair en variante */
  --paper:       #fdfcf7;      /* fond principal — blanc chaud */
  --cream:       #f4ebd9;      /* fond doux pour sections alternées */
  --cream-2:     #ebe0c8;      /* nuance plus marquée */
  /* Accent principal — bleu, matche l'identité du magasin physique Olympe */
  --copper:      #1f6fb8;      /* bleu moyen — accents, eyebrows, traits */
  --copper-deep: #144d8c;      /* bleu profond — CTA, liens forts */
  --copper-soft: #8cb6dc;      /* bleu pâle — sur fonds sombres */
  --text:        #2a2520;      /* texte courant */
  --text-soft:   #4a443e;
  --text-muted:  #837a6b;
  --line:        #e0d8c4;
  --line-soft:   #efe7d6;
  --line-dark:   rgba(245,235,215,.14);
  --success:     #3a7d57;
  --error:       #c1453b;
  --warning:     #d48b1a;

  /* Typo */
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(1.4rem, 4vw, 2.5rem);

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(15,29,45,.06);
  --shadow-md: 0 12px 32px rgba(15,29,45,.10);
  --shadow-lg: 0 24px 60px rgba(15,29,45,.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
em { font-style: italic; }
strong, b { font-weight: 600; }

.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;
}
.skip-link { position: absolute; left: -999px; top: 0; z-index: 9999; background: var(--ink); color: var(--paper); padding: .8rem 1.4rem; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
}
.display { font-size: clamp(1.9rem, 3.8vw, 3.2rem); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
.display-light { color: var(--paper); }

h1 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.08; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.15; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }

p { color: var(--text-soft); }
.lead { font-size: 1.08rem; color: var(--text-soft); line-height: 1.6; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em;
  color: var(--copper-deep); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--copper); display: inline-block; }
.eyebrow-light { color: var(--copper-soft); }
.eyebrow-light::before { background: var(--copper-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); position: relative; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark p, .section-dark .lead { color: rgba(253,252,247,.78); }
.section-dark .eyebrow { color: var(--copper-soft); }
.section-dark .eyebrow::before { background: var(--copper-soft); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head-centered { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: .9rem; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  padding: .95rem 1.5rem; border: 1.5px solid transparent; border-radius: 3px;
  cursor: pointer; transition: background .25s var(--ease), color .25s, border-color .25s, transform .25s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--copper-deep); color: var(--paper); border-color: var(--copper-deep); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-light:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-link { background: transparent; padding: 0; color: var(--copper-deep); border: 0; font-weight: 600; border-bottom: 1.5px solid var(--copper); padding-bottom: 2px; border-radius: 0; }
.btn-link:hover { color: var(--ink); border-color: var(--ink); }

.btn-lg { padding: 1.05rem 1.75rem; font-size: .85rem; }
.btn-sm { padding: .6rem 1.1rem; font-size: .72rem; }
.btn-block { width: 100%; }

/* ---------- Utility bar (top) ---------- */
.utility-bar { background: var(--ink); color: rgba(253,252,247,.85); font-size: .78rem; }
.utility-inner {
  display: flex; align-items: center; gap: 1.5rem; justify-content: center;
  padding-block: .6rem; flex-wrap: wrap;
  font-weight: 500;
}
.utility-item { display: inline-flex; align-items: center; gap: .55rem; }
.utility-item svg { color: var(--copper-soft); flex-shrink: 0; }
.utility-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--copper); }
.utility-phone { font-weight: 600; color: var(--paper); }
.utility-phone:hover { color: var(--copper-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(253,252,247,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 2rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); }
.brand-logo {
  width: 36px; height: 36px;
  background: var(--ink); color: var(--copper-soft);
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.1rem;
  border-radius: 3px;
  letter-spacing: -.03em;
}
.brand-text { font-weight: 700; font-size: 1.05rem; letter-spacing: -.005em; line-height: 1.1; }
.brand-text small { display: block; font-size: .66rem; font-weight: 500; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; margin-top: 1px; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.8rem; }
.main-nav a {
  position: relative; color: var(--text); font-size: .85rem; font-weight: 500;
  padding: .5rem 0; transition: color .25s;
}
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--copper); transition: width .3s var(--ease); }
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.is-active::after { width: 100%; }
.main-nav a.is-active { color: var(--ink); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: .7rem; }
.header-phone { display: none; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--ink); }
.header-phone svg { color: var(--copper-deep); }
@media (min-width: 700px) { .header-phone { display: inline-flex; } }

.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: transparent; border-radius: 3px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* ============================================================
   PHOTO PLACEHOLDER (transparent : on assume qu'on attend des photos)
   ============================================================ */
.photo-ph {
  position: relative; overflow: hidden;
  background: var(--cream);
  border: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  color: var(--text-muted);
  min-height: 200px;
  border-radius: 3px;
}
.photo-ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(184,112,58,.06) 18px 19px);
  pointer-events: none;
}
.photo-ph-icon {
  width: 36px; height: 36px; color: var(--copper);
  margin-bottom: .75rem;
}
.photo-ph-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--copper-deep); margin-bottom: .35rem;
}
.photo-ph-desc { font-size: .82rem; color: var(--text-soft); max-width: 28ch; line-height: 1.5; font-weight: 400; }

.photo-ph-dark { background: var(--ink-2); border-color: rgba(245,235,215,.2); color: rgba(253,252,247,.7); }
.photo-ph-dark::before { background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(217,166,117,.06) 18px 19px); }
.photo-ph-dark .photo-ph-icon { color: var(--copper-soft); }
.photo-ph-dark .photo-ph-label { color: var(--copper-soft); }
.photo-ph-dark .photo-ph-desc { color: rgba(253,252,247,.65); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 6vw, 5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 879px) {
  .hero { padding-top: 1rem; padding-bottom: 2.5rem; overflow: hidden; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 879px) {
  /* Sur mobile : photo en premier, texte en dessous */
  .hero-grid .hero-visual { order: -1; }
}
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 4.5rem); } }

.hero-text .eyebrow { margin-bottom: 1.2rem; }
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.hero-title em { color: var(--copper-deep); font-style: normal; font-weight: 700; }
.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 50ch;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2rem; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero-trust-item { display: flex; align-items: center; gap: .65rem; }
.hero-trust-item svg { color: var(--copper-deep); flex-shrink: 0; }
.hero-trust-item strong { font-size: .82rem; font-weight: 600; color: var(--ink); display: block; line-height: 1.3; }
.hero-trust-item span { font-size: .72rem; color: var(--text-muted); display: block; line-height: 1.3; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 320px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 879px) {
  .hero-visual {
    aspect-ratio: 3/4;
    min-height: 380px;
    max-height: 60vh;
    margin-inline: calc(var(--gutter) * -1);  /* full-bleed photo on mobile */
    border-radius: 0;
  }
}
.hero-visual .photo-ph { width: 100%; height: 100%; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem; z-index: 3;
  background: var(--ink); color: var(--paper);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .85rem;
  border-radius: 3px;
  box-shadow: var(--shadow-md);
  max-width: 88%;
}
.hero-badge-num { font-size: 1.8rem; font-weight: 700; color: var(--copper-soft); line-height: 1; }
.hero-badge-txt { font-size: .76rem; line-height: 1.4; color: rgba(253,252,247,.85); }
.hero-badge-txt strong { display: block; color: var(--paper); font-weight: 600; font-size: .85rem; }

/* Estampille "Partenaire exclusif ALLARD" */
.hero-stamp {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--copper);
  max-width: 240px;
}
@media (max-width: 879px) {
  .hero-stamp {
    bottom: 1rem; left: 1rem;
    padding: .8rem 1.1rem;
    max-width: 200px;
  }
  .hero-stamp-mid { font-size: 1rem; }
  .hero-stamp-name { font-size: 1.05rem; }
}
.hero-stamp::before, .hero-stamp::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(245,235,215,.18);
}
.hero-stamp::before { top: 8px; }
.hero-stamp::after  { bottom: 8px; }
.hero-stamp-top {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(253,252,247,.55);
  margin-bottom: .3rem;
}
.hero-stamp-mid {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .28em;
  color: var(--copper-soft);
  line-height: 1;
  padding-block: .3rem;
}
.hero-stamp-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--paper);
  margin-top: .35rem;
  margin-bottom: .55rem;
}
.hero-stamp-bot {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(253,252,247,.5);
}

/* ============================================================
   TRUST STRIP (labels & garanties)
   ============================================================ */
.trust-strip {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
}
.trust-strip::before {
  content: "Nos engagements";
  position: absolute; top: 1.4rem; left: 50%; transform: translateX(-50%);
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 600;
  color: var(--copper-soft);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 1.5rem;
}
@media (min-width: 720px) { .trust-strip-inner { grid-template-columns: repeat(4, 1fr); } }

.trust-label {
  display: flex; flex-direction: row; align-items: center; gap: 1rem;
  padding: 1.4rem 1.2rem;
  border-right: 1px solid rgba(245,235,215,.1);
  border-bottom: 1px solid rgba(245,235,215,.1);
  transition: background .25s var(--ease);
}
.trust-label:hover { background: rgba(255,255,255,.03); }
@media (max-width: 719px) {
  .trust-label:nth-child(2n) { border-right: none; }
  .trust-label:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 720px) {
  .trust-label { border-bottom: none; }
  .trust-label:last-child { border-right: none; }
}

.trust-label-mark {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  position: relative;
  color: var(--copper-soft);
}
.trust-label-mark svg { width: 100%; height: 100%; }
.trust-label-text { display: flex; flex-direction: column; gap: .15rem; }
.trust-label strong {
  font-size: .92rem; color: var(--paper); font-weight: 600;
  letter-spacing: -.005em; line-height: 1.25;
}
.trust-label span {
  font-size: .76rem; color: rgba(253,252,247,.55);
  letter-spacing: .01em;
}

/* ============================================================
   PROCESS (Comment ça marche)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 700px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  padding: 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color .25s, transform .25s;
}
.process-step:hover { border-color: var(--copper); transform: translateY(-2px); }
.process-step-num {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  color: var(--copper-deep);
  margin-bottom: .85rem;
}
.process-step h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.process-step p { font-size: .88rem; color: var(--text-soft); line-height: 1.55; }

/* ============================================================
   PRODUITS (cards)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--copper); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card-media { aspect-ratio: 4/3; overflow: hidden; }
.product-card-media .photo-ph { width: 100%; height: 100%; min-height: 0; border: 0; border-bottom: 1px solid var(--line); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease-out); }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; flex-grow: 1; }
.product-card h3 { font-size: 1.08rem; color: var(--ink); }
.product-card p { font-size: .88rem; color: var(--text-soft); line-height: 1.55; flex-grow: 1; }
.product-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .6rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--copper-deep);
}
.product-card-link svg { transition: transform .3s var(--ease-out); }
.product-card:hover .product-card-link svg { transform: translateX(4px); }

/* ============================================================
   AIDES & FINANCEMENT (résumé sur home)
   ============================================================ */
.aides-home-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) { .aides-home-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.aides-perks { display: grid; gap: 1rem; }
.aides-perk {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  padding: 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,235,215,.12);
  border-radius: 3px;
}
.aides-perk-amount {
  font-size: 1.5rem; font-weight: 700; color: var(--copper-soft); line-height: 1;
  letter-spacing: -.02em;
}
.aides-perk strong { display: block; color: var(--paper); font-size: .95rem; font-weight: 600; margin-bottom: .25rem; }
.aides-perk p { color: rgba(253,252,247,.7); font-size: .82rem; line-height: 1.5; margin: 0; }

/* ============================================================
   RÉALISATIONS (preview sur home)
   ============================================================ */
.works-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.3rem;
}
@media (min-width: 700px) { .works-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .works-grid { grid-template-columns: repeat(3, 1fr); } }
.work-item { display: flex; flex-direction: column; gap: .7rem; }
.work-item .photo-ph { aspect-ratio: 4/3; min-height: 0; }
.work-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: 3px; display: block; transition: transform .5s var(--ease-out); }
.work-item:hover img { transform: scale(1.02); }
.work-item strong { font-size: .92rem; color: var(--ink); font-weight: 600; }
.work-item span { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   AVIS GOOGLE
   ============================================================ */
.reviews-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
  padding: 1.5rem 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-bottom: 2rem;
}
.reviews-rating { display: flex; align-items: center; gap: .8rem; }
.reviews-rating-num { font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.reviews-stars { color: var(--copper); letter-spacing: .12em; font-size: 1.1rem; }
.reviews-rating-meta { font-size: .78rem; color: var(--text-muted); display: block; margin-top: .2rem; }
.reviews-google {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; color: var(--text-soft);
}
.reviews-google svg { color: var(--copper-deep); }
.reviews-note {
  margin-left: auto;
  font-size: .76rem; color: var(--text-muted); font-style: italic;
  max-width: 30ch;
}

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
  padding: 1.6rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.review-card .stars { color: var(--copper); letter-spacing: .12em; font-size: .95rem; }
.review-card blockquote { font-size: .92rem; line-height: 1.55; color: var(--text); margin: 0; flex-grow: 1; }
.review-card figcaption { display: flex; justify-content: space-between; font-size: .76rem; }
.review-card figcaption strong { color: var(--ink); font-weight: 600; }
.review-card figcaption span { color: var(--text-muted); }

/* ============================================================
   FAQ (accordéon)
   ============================================================ */
.faq-list { display: grid; gap: .65rem; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: .98rem; color: var(--ink);
  transition: background .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--copper-deep); flex-shrink: 0; transition: transform .3s var(--ease), border-color .3s; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); border-color: var(--copper); }
.faq-body { padding: 0 1.4rem 1.4rem; color: var(--text-soft); line-height: 1.65; font-size: .93rem; }
.faq-body p + p { margin-top: .8rem; }

/* ============================================================
   ZONE / CONTACT
   ============================================================ */
.zone-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 880px) { .zone-grid { grid-template-columns: 1.2fr .8fr; gap: 3rem; } }
.zone-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.zone-list li { border: 1px solid var(--line); padding: .45rem 1rem; font-size: .82rem; color: var(--text-soft); border-radius: 999px; background: var(--paper); }
.zone-card { background: var(--ink); color: var(--paper); padding: 1.8rem; border-radius: 3px; }
.zone-card h3 { color: var(--paper); margin-bottom: 1rem; }
.zone-card address { font-style: normal; display: grid; gap: .85rem; margin-bottom: 1.4rem; font-size: .9rem; }
.zone-card address p { display: grid; grid-template-columns: auto 1fr; gap: .6rem; color: rgba(253,252,247,.8); }
.zone-card address svg { color: var(--copper-soft); margin-top: 2px; }
.zone-card a { color: var(--paper); }

/* ============================================================
   FORMULAIRE (utilisé sur home + page contact)
   ============================================================ */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.req { color: var(--copper-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .98rem; color: var(--ink);
  background: transparent; border: none; border-bottom: 1.5px solid var(--line);
  padding: .55rem 0; min-height: 42px; transition: border-color .25s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23144d8c' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .2rem center; }
.field textarea { resize: vertical; min-height: 80px; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--copper); }
.field input[aria-invalid="true"] { border-bottom-color: var(--error); }
.field-error { color: var(--error); font-size: .76rem; min-height: 1em; font-weight: 500; }
.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .82rem; color: var(--text-soft); margin: .8rem 0 1.2rem; line-height: 1.4; }
.consent input { width: 16px; height: 16px; accent-color: var(--copper-deep); margin-top: 2px; }
.form-hint { font-size: .74rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.5; }
.form-status { margin-top: 1rem; font-size: .9rem; font-weight: 600; min-height: 1.2em; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }

/* ============================================================
   CTA BANDEAU
   ============================================================ */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.cta-band h2 { color: var(--paper); max-width: 24ch; margin: 0 auto 1rem; }
.cta-band p { color: rgba(253,252,247,.78); max-width: 50ch; margin: 0 auto 1.8rem; }
.cta-band .btn-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-band .btn-light:hover { background: var(--copper-deep); color: var(--paper); border-color: var(--copper-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(253,252,247,.6); padding-block: clamp(3rem, 5vw, 4rem) 1.5rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245,235,215,.1);
}
@media (min-width: 700px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.footer-brand .brand { color: var(--paper); }
.footer-tag { margin-top: 1rem; max-width: 36ch; font-size: .9rem; color: rgba(253,252,247,.55); }
.footer-col h4 { color: var(--paper); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .88rem; color: rgba(253,252,247,.6); transition: color .25s; }
.footer-col a:hover { color: var(--copper-soft); }
.footer-contact address { font-style: normal; display: grid; gap: .85rem; font-size: .88rem; margin-bottom: 1rem; }
.footer-contact a { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.5rem; font-size: .78rem; color: rgba(253,252,247,.45); }
.footer-bottom .credit a { color: var(--copper-soft); font-weight: 600; }
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a:hover { color: var(--paper); }

/* ============================================================
   PAGE HEADER (pour pages internes)
   ============================================================ */
.page-header {
  background: var(--ink); color: var(--paper);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.page-header .eyebrow { color: var(--copper-soft); }
.page-header .eyebrow::before { background: var(--copper-soft); }
.page-header h1 { color: var(--paper); margin-bottom: 1rem; }
.page-header .lead { color: rgba(253,252,247,.8); max-width: 60ch; }
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .76rem; color: rgba(253,252,247,.55); margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(253,252,247,.8); }
.breadcrumb a:hover { color: var(--copper-soft); }
.breadcrumb-sep { color: var(--copper-soft); }

/* ============================================================
   SIMULATEUR D'AIDES
   ============================================================ */
.simulator {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 880px) { .simulator { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.simulator-fields h3 { margin-bottom: 1.2rem; }
.simulator-result {
  background: var(--ink); color: var(--paper);
  padding: 1.8rem;
  border-radius: 3px;
  display: flex; flex-direction: column; justify-content: center;
}
.simulator-result-eyebrow { color: var(--copper-soft); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .6rem; }
.simulator-result-amount { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--paper); letter-spacing: -.02em; line-height: 1; margin-bottom: .5rem; }
.simulator-result-amount span { color: var(--copper-soft); font-size: .6em; font-weight: 600; }
.simulator-result-detail { font-size: .85rem; color: rgba(253,252,247,.75); line-height: 1.55; margin-bottom: 1.2rem; }
.simulator-result-note { font-size: .72rem; color: rgba(253,252,247,.5); font-style: italic; }

/* ============================================================
   STATS
   ============================================================ */
.stats-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem;
  margin-top: 2rem;
}
@media (min-width: 700px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: rgba(15,29,45,.03);
  border-left: 2px solid var(--copper);
  padding: 1rem 1.2rem;
}
.section-dark .stat { background: rgba(255,255,255,.04); border-left-color: var(--copper-soft); }
.stat-num { display: block; font-size: 1.8rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.section-dark .stat-num { color: var(--paper); }
.stat-label { display: block; font-size: .75rem; color: var(--text-muted); margin-top: .4rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }
.section-dark .stat-label { color: rgba(253,252,247,.6); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    background: var(--ink); padding: 5rem 1.8rem 2rem;
    transform: translateX(100%); transition: transform .35s var(--ease-out);
    box-shadow: var(--shadow-lg); margin: 0;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid rgba(245,235,215,.08); }
  .main-nav a { display: block; padding: 1rem 0; color: var(--paper); font-size: 1rem; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; z-index: 90; }
  .header-actions .btn { display: none; }
  .header-actions .header-phone { display: none; }
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .reviews-note { margin-left: 0; }
}
@media (max-width: 520px) {
  .utility-inner { gap: .8rem; font-size: .72rem; }
  .utility-item:not(.utility-phone) span:not(.utility-sep) { display: none; }
  .hero-trust { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
