/* =====================================================================
   Lo Casau de Cédric — Design System 2026
   Direction : "Nature premium" — pensé pour être beau SANS photographie.
   ===================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Verts */
  --bark:      #12201A;
  --forest:    #163A28;
  --forest-2:  #1E4C34;
  --moss:      #2F6B47;
  --sage:      #86A87A;
  --lichen:    #C9DCBC;
  --wash:      #EDF3E8;

  /* Neutres chauds */
  --cream:     #FAF7EF;
  --sand:      #F2ECDF;
  --paper:     #FFFFFF;
  --line:      #E4DCCB;
  --line-soft: #EFE9DC;
  --ink:       #17211B;
  --body:      #3A423B;
  --muted:     #6E7568;

  /* Accents */
  --clay:      #B65C34;
  --clay-dark: #9A4A26;
  --gold:      #C9A227;

  /* Ombres — teintées vert, jamais du noir pur */
  --sh-xs: 0 1px 2px rgba(22,58,40,.06);
  --sh-sm: 0 2px 10px rgba(22,58,40,.07);
  --sh-md: 0 12px 32px -8px rgba(22,58,40,.14);
  --sh-lg: 0 28px 70px -20px rgba(22,58,40,.24);

  /* Formes */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 100px;

  /* Rythme */
  --max: 1200px;
  --max-narrow: 760px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 10vw, 132px);

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

  color-scheme: light;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "cv11";
  overflow-x: hidden;
}

/* Grain fin sur toute la page — donne la texture "premium" sans image */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { max-width: 100%; display: block; height: auto; }

/* ---------- 3. TYPOGRAPHIE ---------- */
h1, h2, h3, h4, .display {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.022em;
  font-variation-settings: "opsz" 120, "SOFT" 30;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.1vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.2; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { text-wrap: pretty; }
p + p { margin-top: 1.05em; }

a { color: var(--forest); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--moss); }

strong, b { color: var(--ink); font-weight: 600; }
em { font-style: italic; }

::selection { background: var(--lichen); color: var(--forest); }

:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Lien d'évitement — accessibilité clavier */
.skip-link {
  position: absolute; left: 12px; top: -100px;
  background: var(--forest); color: #fff;
  padding: 12px 20px; border-radius: var(--r-sm);
  z-index: 10000; font-weight: 600; font-size: .95rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 4. LAYOUT ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--max-narrow); margin-inline: auto; }
section { padding-block: var(--section-y); position: relative; }
.sec-sand  { background: var(--sand); }
.sec-wash  { background: var(--wash); }
.sec-paper { background: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--sage);
}
.sec-head { max-width: 680px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow::before { display: none; }
.sec-head p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted); margin-top: 20px; max-width: 58ch;
}
.sec-head.center p { margin-inline: auto; }

.lead { font-size: clamp(1.12rem, 1.6vw, 1.3rem); color: var(--ink); line-height: 1.55; }

/* ---------- 5. BOUTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: .98rem; letter-spacing: -.005em;
  border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
              background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--forest); color: #fff; box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--forest-2); color: #fff; box-shadow: var(--sh-md); }

.btn-clay { background: var(--clay); color: #fff; box-shadow: var(--sh-sm); }
.btn-clay:hover { background: var(--clay-dark); color: #fff; box-shadow: var(--sh-md); }

.btn-outline { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-outline:hover { border-color: var(--forest); background: var(--paper); color: var(--forest); }

.btn-light { background: #fff; color: var(--forest); }
.btn-light:hover { background: var(--wash); color: var(--forest); box-shadow: var(--sh-md); }

.btn-glass {
  background: rgba(255,255,255,.1); color: #fff;
  border-color: rgba(255,255,255,.34); backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.19); color: #fff; border-color: rgba(255,255,255,.6); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* Lien fléché */
.arrow-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .93rem; color: var(--forest);
}
.arrow-link svg { transition: transform .25s var(--ease-out); flex-shrink: 0; }
.arrow-link:hover svg { transform: translateX(5px); }

/* ---------- 6. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250,247,239,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 22px rgba(22,58,40,.05);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--max); margin-inline: auto;
  padding: 14px var(--gutter);
  flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand:hover { color: inherit; }
.brand-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand > span { display: block; }
.brand-name {
  display: block;
  font-family: 'Fraunces', Georgia, serif; font-size: 1.2rem;
  color: var(--ink); line-height: 1.1; letter-spacing: -.02em;
  white-space: nowrap;
  font-variation-settings: "opsz" 40, "SOFT" 40;
}
.brand-sub {
  display: block;
  font-size: .625rem; color: var(--muted); line-height: 1.1;
  letter-spacing: .14em; text-transform: uppercase; margin-top: 4px;
  font-weight: 500; white-space: nowrap;
}

.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a {
  display: block; padding: 9px 13px; border-radius: var(--r-pill);
  color: var(--ink); font-weight: 500; font-size: .92rem;
  white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover { background: var(--wash); color: var(--forest); }
.nav-links a[aria-current="page"] { background: var(--wash); color: var(--forest); font-weight: 600; }

.nav-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-tel {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-weight: 600; font-size: .9rem; color: var(--ink);
  padding: 9px 12px; border-radius: var(--r-pill);
}
@media (max-width: 1220px) { .nav-tel { display: none; } }
.nav-tel:hover { background: var(--wash); color: var(--forest); }
.nav-cta {
  background: var(--forest); color: #fff !important;
  padding: 11px 22px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .92rem; white-space: nowrap;
  transition: background-color .2s var(--ease), transform .25s var(--ease-out);
}
.nav-cta:hover { background: var(--clay); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 12px;
  cursor: pointer; align-items: center; justify-content: center;
  color: var(--ink); background: var(--paper);
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: currentColor;
  position: relative; transition: background-color .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: currentColor; transition: transform .28s var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links, .nav-tel { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 14px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    animation: slideDown .3s var(--ease-out);
  }
  .nav-links.is-open a { padding: 14px 16px; font-size: 1.05rem; }
}
@media (max-width: 560px) { .nav-cta { display: none; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative; isolation: isolate;
  background: linear-gradient(160deg, var(--bark) 0%, var(--forest) 42%, var(--forest-2) 78%, var(--moss) 100%);
  color: #fff; overflow: hidden;
  padding-block: clamp(90px, 13vw, 150px) clamp(80px, 11vw, 128px);
}
/* Halos lumineux */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 18% 12%, rgba(134,168,122,.30), transparent 62%),
    radial-gradient(ellipse 60% 50% at 88% 88%, rgba(201,220,188,.14), transparent 60%);
}
/* Courbes de niveau — signature visuelle : la pente, leur métier */
.hero-topo {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  opacity: .3; pointer-events: none;
}
.hero-topo path { fill: none; stroke: var(--lichen); stroke-width: 1; vector-effect: non-scaling-stroke; }

.hero-inner { position: relative; max-width: 940px; }
.hero.center .hero-inner { margin-inline: auto; text-align: center; }
.hero h1 { color: #fff; font-variation-settings: "opsz" 144, "SOFT" 20; }
.hero h1 em { font-style: normal; color: var(--lichen); }
.hero-sub {
  font-size: clamp(1.1rem, 1.75vw, 1.32rem);
  color: rgba(255,255,255,.82); line-height: 1.6;
  max-width: 60ch; margin-top: 26px;
}
.hero.center .hero-sub { margin-inline: auto; }
.hero .btn-row { margin-top: 40px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px 8px 12px; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.94);
  margin-bottom: 30px; backdrop-filter: blur(8px);
}
.hero-badge b { color: #fff; font-weight: 600; }
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sage);
  box-shadow: 0 0 0 4px rgba(134,168,122,.25);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(134,168,122,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(134,168,122,0); }
}

/* Statistiques du hero */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-top: clamp(48px, 6vw, 74px);
  border-top: 1px solid rgba(255,255,255,.16); padding-top: 34px;
}
.hero.center .hero-stats { text-align: left; }
.hstat-num {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem); color: #fff; line-height: 1;
  font-variation-settings: "opsz" 100, "SOFT" 20;
}
.hstat-num sup { font-size: .48em; vertical-align: super; margin-left: 1px; }
.hstat-label {
  font-size: .78rem; color: rgba(255,255,255,.62); margin-top: 9px;
  letter-spacing: .04em; line-height: 1.35;
}
@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* Bandeau page intérieure */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(150deg, var(--bark) 0%, var(--forest) 55%, var(--forest-2) 100%);
  color: #fff;
  padding-block: clamp(76px, 10vw, 116px) clamp(60px, 8vw, 92px);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 65% 60% at 78% 20%, rgba(134,168,122,.26), transparent 62%);
}
.page-hero h1 { color: #fff; max-width: 17ch; }
.page-hero p {
  color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  max-width: 58ch; margin-top: 22px;
}
.page-hero .hero-badge { margin-bottom: 24px; }

/* ---------- 8. FIL D'ARIANE ---------- */
.breadcrumb {
  font-size: .84rem; color: var(--muted);
  padding-block: 20px; border-bottom: 1px solid var(--line-soft);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 500; }

/* ---------- 9. BANDEAU DE CONFIANCE ---------- */
.trustbar { background: var(--paper); border-bottom: 1px solid var(--line-soft); padding-block: 26px; }
.trustbar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--body); line-height: 1.35;
}
.trust-item svg { color: var(--moss); flex-shrink: 0; }
.trust-item b { display: block; color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .trustbar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 480px) { .trustbar-grid { grid-template-columns: 1fr; } }

/* ---------- 10. CARTES SERVICES ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.card-grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }

.svc {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 30px 30px;
  display: flex; flex-direction: column;
  transition: transform .38s var(--ease-out), box-shadow .38s var(--ease-out), border-color .3s var(--ease);
}
/* Voile vert qui monte au survol */
.svc::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 0;
  background: linear-gradient(180deg, transparent, rgba(134,168,122,.09));
  transition: height .45s var(--ease-out);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--sage); }
.svc:hover::before { height: 100%; }
.svc > * { position: relative; }

.svc-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--wash); color: var(--forest);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: background-color .3s var(--ease), transform .4s var(--ease-out);
}
.svc:hover .svc-icon { background: var(--lichen); transform: rotate(-6deg) scale(1.06); }
.svc h3 { margin-bottom: 11px; }
.svc p { color: var(--muted); font-size: .96rem; margin-bottom: 20px; flex: 1; }
.svc .tag {
  display: inline-block; align-self: flex-start;
  background: var(--wash); color: var(--forest);
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.svc .tag.clay { background: rgba(182,92,52,.1); color: var(--clay-dark); }

/* ---------- 11. BANDEAU MACHINE ---------- */
.feature {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-xl); color: #fff;
  background: linear-gradient(125deg, var(--bark) 0%, var(--forest) 58%, var(--forest-2) 100%);
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
}
.feature::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 70% 70% at 85% 40%, rgba(134,168,122,.24), transparent 65%);
}
.feature-body { padding: clamp(38px, 5.2vw, 62px); align-self: center; }
.feature h2 { color: #fff; margin-bottom: 18px; }
.feature h2 em { font-style: normal; color: var(--lichen); }
.feature p { color: rgba(255,255,255,.78); font-size: 1.04rem; }
.feature .pill {
  display: inline-block; background: rgba(134,168,122,.22); color: var(--lichen);
  border: 1px solid rgba(134,168,122,.3);
  padding: 6px 15px; border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 22px;
}
.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 34px 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15);
}
.spec-num {
  font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: var(--lichen); line-height: 1; font-variation-settings: "opsz" 100;
}
.spec-num sup { font-size: .45em; vertical-align: super; }
.spec-label { font-size: .74rem; color: rgba(255,255,255,.6); margin-top: 7px; line-height: 1.3; }
.feature-visual {
  position: relative; min-height: 380px; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
}
.feature-visual svg { width: 100%; height: 100%; }
@media (max-width: 940px) {
  .feature { grid-template-columns: 1fr; }
  .feature-video { min-height: 0; aspect-ratio: 9 / 12; }
  .feature-visual { min-height: 260px; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
}

/* ---------- 12. PROCESSUS ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 4px; }
.step { position: relative; padding: 30px 26px 30px 0; }
.step::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: var(--line);
}
.step::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 46px; height: 2px; background: var(--moss);
}
.step-n {
  font-family: 'Fraunces', Georgia, serif; font-size: .95rem;
  color: var(--moss); letter-spacing: .1em; margin-bottom: 14px; display: block; font-weight: 600;
}
.step h3 { font-size: 1.18rem; margin-bottom: 9px; }
.step p { font-size: .93rem; color: var(--muted); }

/* ---------- 13. CALENDRIER SAISONNIER ---------- */
.season-wrap { overflow-x: auto; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
.season {
  min-width: 720px; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; background: var(--paper);
}
.season-row { display: grid; grid-template-columns: 190px repeat(12, 1fr); align-items: stretch; }
.season-row + .season-row { border-top: 1px solid var(--line-soft); }
.season-head { background: var(--sand); }
.season-head .season-cell {
  font-size: .68rem; font-weight: 700; color: var(--muted);
  letter-spacing: .07em; text-transform: uppercase;
  display: grid; place-items: center; padding: 12px 0;
}
.season-label {
  padding: 15px 18px; font-size: .9rem; font-weight: 600; color: var(--ink);
  border-right: 1px solid var(--line-soft); display: flex; align-items: center; gap: 9px;
}
.season-label svg { color: var(--moss); flex-shrink: 0; }
.season-cell { position: relative; }
.season-row:not(.season-head) .season-cell { padding: 7px 3px; }
.season-bar { height: 100%; min-height: 22px; border-radius: 5px; }
.season-bar.on   { background: var(--moss); }
.season-bar.soft { background: var(--lichen); }
.season-legend {
  display: flex; gap: 22px; flex-wrap: wrap; margin-top: 20px;
  font-size: .84rem; color: var(--muted); align-items: center;
}
.season-legend span { display: inline-flex; align-items: center; gap: 8px; }
.season-legend i { width: 15px; height: 9px; border-radius: 3px; display: block; }

/* ---------- 14. CARTE ZONE ---------- */
.zone-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .zone-layout { grid-template-columns: 1fr; } }
.zone-map {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-sm);
}
.zone-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.zone-chip {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 8px 16px;
  font-size: .87rem; font-weight: 500; color: var(--body);
  transition: all .2s var(--ease);
}
.zone-chip:hover { border-color: var(--sage); background: var(--wash); color: var(--forest); }
.zone-chip.more { border-style: dashed; color: var(--muted); }

/* ---------- 15. ENGAGEMENTS ---------- */
.pledge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.pledge {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.pledge:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.pledge-num {
  font-family: 'Fraunces', Georgia, serif; font-size: 2.6rem; color: var(--lichen);
  line-height: 1; margin-bottom: 16px; font-variation-settings: "opsz" 100;
}
.pledge h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pledge p { font-size: .93rem; color: var(--muted); }

/* ---- Avis client réel + emplacement Google ---- */
.review-live {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; align-items: stretch;
}
@media (max-width: 860px) { .review-live { grid-template-columns: 1fr; } }

.review-live blockquote {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--forest); color: #fff;
  border-radius: var(--r-lg); padding: clamp(30px, 4vw, 44px);
  display: flex; flex-direction: column; justify-content: center;
}
.review-live blockquote::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 70% 70% at 88% 8%, rgba(134,168,122,.32), transparent 62%);
}
.review-live blockquote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  line-height: 1.32; color: #fff; margin: 20px 0 26px;
  font-variation-settings: "opsz" 90, "SOFT" 40;
  text-wrap: balance;
}
.review-live blockquote footer { font-style: normal; }
.review-live blockquote footer strong {
  display: block; color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 4px;
}
.review-live blockquote footer span { font-size: .87rem; color: rgba(255,255,255,.62); }
.review-live blockquote footer a { color: var(--lichen); text-decoration: underline; text-underline-offset: 3px; }
.review-live blockquote footer a:hover { color: #fff; }

.review-next {
  background: var(--paper); border: 1.5px dashed var(--line);
  border-radius: var(--r-lg); padding: clamp(28px, 3.5vw, 38px);
  display: flex; flex-direction: column; justify-content: center;
}
.review-next h3 { margin-bottom: 10px; }
.review-next p { color: var(--muted); font-size: .95rem; }
.review-next .g-mark { margin-bottom: 18px; }

/* Emplacement avis Google (variante seule) */
.reviews-slot {
  background: var(--paper); border: 1.5px dashed var(--line);
  border-radius: var(--r-lg); padding: clamp(34px, 5vw, 54px);
  text-align: center; max-width: 680px; margin-inline: auto;
}
.reviews-slot .g-mark {
  width: 46px; height: 46px; margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--wash); border-radius: 50%; color: var(--moss);
}
.reviews-slot h3 { margin-bottom: 12px; }
.reviews-slot p { color: var(--muted); font-size: .96rem; max-width: 48ch; margin-inline: auto; }
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.reviews-stars { display: block; margin-bottom: 16px; }

/* ---------- 16. GALERIE ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 16px; }
.shot {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-2) 62%, var(--moss) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: #fff; isolation: isolate;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.shot:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .7s var(--ease-out); }
.shot:hover img { transform: scale(1.04); }
a.shot, a.shot:hover { color: #fff; }
a.shot:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }
.shot::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 32%, rgba(18,32,26,.72) 100%);
}
.shot-topo { position: absolute; inset: 0; z-index: -1; opacity: .22; }
.shot-topo path { fill: none; stroke: var(--lichen); stroke-width: 1; vector-effect: non-scaling-stroke; }
.shot-kind {
  align-self: flex-start; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 4px 11px; border-radius: var(--r-pill); margin-bottom: auto;
}
.shot-title { font-family: 'Fraunces', Georgia, serif; font-size: 1.12rem; color: #fff; line-height: 1.2; }
.shot-meta { font-size: .82rem; color: rgba(255,255,255,.72); margin-top: 5px; }

/* ---------- 16b. Photos & vidéo (chantiers réels) ---------- */
.page-hero .hero-photo {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% 55%;
}
.page-hero.has-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(18,32,26,.94) 0%, rgba(18,32,26,.80) 46%, rgba(18,32,26,.40) 100%);
}
.page-hero.has-photo .hero-topo { opacity: .18; }

.feature-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 38% 50%;
}
.feature-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18,32,26,.72) 100%);
}
.feature-caption {
  position: absolute; left: 22px; bottom: 20px; z-index: 1;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lichen); background: rgba(18,32,26,.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18); padding: 6px 12px; border-radius: var(--r-pill);
}

.video-split {
  display: grid; grid-template-columns: minmax(260px, 400px) 1fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
/* deux colonnes de texte : titre/intro à gauche, liste à droite */
.split-text {
  display: grid; grid-template-columns: minmax(280px, 1fr) 1.1fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
.split-text .sec-head { text-align: left; margin-inline: 0; max-width: none; }
.split-text .check-list { margin-bottom: 0; }
.split-text .check-list li {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 18px;
}
.phone {
  position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 30px; overflow: hidden;
  background: #0d1a13; box-shadow: var(--sh-lg); border: 1px solid rgba(22,58,40,.18);
}
.phone video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #0d1a13; }
.check-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); line-height: 1.5; }
.check-list svg { flex-shrink: 0; color: var(--forest); margin-top: 2px; }
.feature-video { padding: 0; }
.feature-video-inner { position: absolute; inset: 0; }
.feature-video-inner video { width: 100%; height: 100%; object-fit: cover; display: block; background: #0d1a13; }
.still-stack { display: grid; gap: 14px; }
.still-stack img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--sh-md, none);
}
.video-stills { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.video-stills img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: var(--r); border: 1px solid var(--line);
}
@media (max-width: 800px) {
  .video-split, .split-text { grid-template-columns: 1fr; }
  .phone { max-width: 300px; margin-inline: auto; }
  .page-hero.has-photo::before {
    background: linear-gradient(180deg, rgba(18,32,26,.90) 0%, rgba(18,32,26,.82) 100%);
  }
}

/* ---------- 16c. Prestations : sommaire + cartes dépliables ---------- */
.svc-index { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.svc-index a {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px;
  border-radius: var(--r-pill); background: var(--paper); border: 1px solid var(--line);
  font-weight: 600; font-size: .9rem; color: var(--forest);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), transform .2s var(--ease-out);
}
.svc-index a:hover { border-color: var(--sage); background: var(--wash); transform: translateY(-1px); }
.svc-index svg { flex-shrink: 0; }
/* onglet actif (mode onglets, JS activé) */
.has-svc-tabs .svc-index a[aria-selected="true"],
.has-svc-tabs .svc-index a[aria-selected="true"]:hover {
  background: var(--forest); border-color: var(--forest); color: #fff; box-shadow: var(--sh-sm);
}
.has-svc-tabs .svc-index a:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; }

.sv-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.sv-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column; scroll-margin-top: 96px;
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
.sv-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.sv-media {
  position: relative; aspect-ratio: 16 / 9; isolation: isolate; border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-2) 62%, var(--moss) 100%);
}
.sv-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sv-media .shot-topo { z-index: 0; opacity: .28; width: 100%; height: 100%; }
/* grand pictogramme en filigrane (cartes sans photo) */
.sv-media .sv-glyph {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%) rotate(-6deg);
  z-index: 1; color: var(--lichen); opacity: .15; pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .6s var(--ease-out);
}
.sv-media .sv-glyph svg { width: clamp(150px, 46%, 250px); height: auto; display: block; }
.sv-card:hover .sv-glyph { opacity: .22; transform: translateY(-50%) rotate(-3deg) scale(1.04); }
.sv-media .tag {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--forest);
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill); backdrop-filter: blur(6px);
}
.sv-media .tag.clay { background: var(--clay); color: #fff; }
.sv-media .svc-icon {
  position: absolute; left: 24px; bottom: -27px; z-index: 2; margin: 0;
  border: 3px solid var(--paper); box-shadow: var(--sh-sm);
}
.sv-body { padding: 44px 28px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.sv-body h2 { font-size: clamp(1.45rem, 1.9vw, 1.8rem); line-height: 1.15; margin: 0; }
.sv-body .lead { font-size: 1rem; color: var(--muted); line-height: 1.55; }
.sv-facts { list-style: none; margin: 2px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sv-facts li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .83rem; font-weight: 600; color: var(--forest);
  background: var(--wash); border-radius: var(--r-pill); padding: 6px 12px 6px 9px;
}
.sv-facts svg { color: var(--moss); flex-shrink: 0; }
.sv-more { margin: 6px 0 0; background: var(--cream); }
.sv-more summary { padding: 16px 20px; font-size: .96rem; }
.sv-more .faq-answer { padding: 0 20px 18px; font-size: .95rem; }
.sv-more .faq-answer ul { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 8px; }
.sv-more .faq-answer li { position: relative; padding-left: 20px; color: var(--ink); }
.sv-more .faq-answer li::before {
  content: ""; position: absolute; left: 3px; top: .6em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--sage);
}
.sv-more .callout { margin: 0; font-size: .92rem; padding: 14px 16px; }
.sv-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: auto; padding-top: 8px; }
@media (max-width: 860px) {
  .sv-grid { grid-template-columns: 1fr; gap: 20px; }
  .sv-body { padding: 40px 22px 24px; }
  .sv-media .sv-glyph { top: 58%; right: 4%; }
  .sv-media .sv-glyph svg { width: 42%; }
  .svc-index { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px;
    scrollbar-width: none; margin-inline: -20px; padding-inline: 20px; }
  .svc-index::-webkit-scrollbar { display: none; }
  .svc-index a { white-space: nowrap; }
}

/* Mode onglets (JS) : une seule carte affichée, en pleine largeur */
.has-svc-tabs .sv-grid { display: block; }
.has-svc-tabs .sv-card[hidden] { display: none !important; }
.has-svc-tabs .sv-card { box-shadow: var(--sh-md); }
.has-svc-tabs .sv-card:hover { transform: none; }
@media (min-width: 861px) {
  .has-svc-tabs .sv-card { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .has-svc-tabs .sv-media {
    aspect-ratio: auto; min-height: 420px; height: 100%;
    border-radius: var(--r-xl) 0 0 var(--r-xl);
  }
  .has-svc-tabs .sv-media .svc-icon { bottom: 28px; left: 28px; }
  .has-svc-tabs .sv-media .sv-glyph { right: auto; left: 50%; top: 46%; transform: translate(-50%, -50%) rotate(-6deg); }
  .has-svc-tabs .sv-media .sv-glyph svg { width: clamp(200px, 58%, 300px); }
  .has-svc-tabs .sv-card:hover .sv-glyph { transform: translate(-50%, -50%) rotate(-3deg) scale(1.04); }
  .has-svc-tabs .sv-body { padding: 44px 48px 40px; }
  .has-svc-tabs .sv-body h2 { font-size: clamp(1.7rem, 2.4vw, 2.3rem); }
  .has-svc-tabs .sv-body .lead { font-size: 1.08rem; }
}

/* ---------- 16d. « En bref » (faits clés, page À propos) ---------- */
.facts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0;
  margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.facts-grid > div { padding: 20px 24px; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.facts-grid dt {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 6px;
}
.facts-grid dd { margin: 0; color: var(--ink); line-height: 1.5; font-size: .98rem; }
.facts-grid dd a { color: var(--forest); font-weight: 600; }

/* ---------- 16e. Blocs issus du benchmark (conversion) ---------- */
/* Bandeau crédit d'impôt */
.credit-band { padding: clamp(40px, 5vw, 64px) 0; background: var(--wash); }
.credit-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px, 4vw, 56px); align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(24px, 3.4vw, 44px); box-shadow: var(--sh-md);
}
.credit-num span {
  font-family: 'Fraunces', Georgia, serif; font-size: clamp(3.2rem, 6vw, 5.4rem); line-height: 1;
  color: var(--clay); font-variation-settings: "opsz" 144; letter-spacing: -.03em; white-space: nowrap;
}
.credit-num sup { font-size: .4em; vertical-align: super; }
.credit-body h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin: 6px 0 12px; }
.credit-body p { color: var(--body); line-height: 1.6; }
.credit-body p + p { margin-top: 10px; }
.credit-cta { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
@media (max-width: 900px) {
  .credit-inner { grid-template-columns: 1fr; }
  .credit-cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
}

/* Déroulé en 3 étapes */
.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .steps-3 { grid-template-columns: 1fr; } }

/* Formules d'entretien */
.tier-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px;
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
.tier:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.tier.hot { border-color: var(--forest); box-shadow: var(--sh-md); }
.tier .tag {
  align-self: flex-start; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); background: var(--wash); color: var(--forest);
}
.tier .tag.clay { background: rgba(182,92,52,.1); color: var(--clay-dark); }
.tier h3 { font-size: 1.6rem; margin: 0; }
.tier ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; flex: 1; }
.tier li { display: flex; gap: 9px; align-items: flex-start; color: var(--body); line-height: 1.45; font-size: .96rem; }
.tier li svg { flex-shrink: 0; color: var(--moss); margin-top: 3px; }
.tier-price { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; color: var(--ink); }
.tier-note { font-size: .8rem; color: var(--muted); margin-top: -8px; }
.tier .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }

/* Ordre de prix dans une carte prestation */
.sv-price { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink); margin: 0; }
.sv-price svg { flex-shrink: 0; color: var(--clay); margin-top: 1px; }

/* Contact : envoi de photos + formulaire court */
.photo-cta {
  display: grid; grid-template-columns: auto 1fr; gap: 12px 16px; align-items: center;
  background: var(--wash); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; margin-bottom: 26px;
}
.photo-cta > div:first-child { color: var(--forest); display: grid; place-items: center; width: 42px; height: 42px;
  background: var(--paper); border-radius: 12px; border: 1px solid var(--line); }
.photo-cta strong { display: block; color: var(--ink); margin-bottom: 2px; }
.photo-cta-btns { display: flex; gap: 8px; flex-wrap: wrap; grid-column: 1 / -1; }
.btn-sm { padding: 9px 14px; font-size: .88rem; }
.form-more { border: 1px dashed var(--line); border-radius: var(--r); padding: 0 16px; margin-bottom: 18px; }
.form-more summary { cursor: pointer; padding: 14px 0; font-weight: 600; color: var(--forest); list-style: none; }
.form-more summary::-webkit-details-marker { display: none; }
.form-more summary::before { content: "+"; display: inline-block; width: 20px; color: var(--moss); font-weight: 700; }
.form-more[open] summary::before { content: "–"; }
.form-more[open] { padding-bottom: 6px; }
.form-more .field, .form-more .field-row { margin-top: 4px; }
.field-photos input[type=file] { padding: 10px; background: var(--cream); border: 1px dashed var(--line); border-radius: var(--r-sm); width: 100%; }

/* Galerie : filtres */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; cursor: pointer;
  border-radius: var(--r-pill); background: var(--paper); border: 1px solid var(--line);
  font: inherit; font-weight: 600; font-size: .9rem; color: var(--forest);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.chip span { font-size: .78rem; font-weight: 600; color: var(--muted); background: var(--wash); border-radius: var(--r-pill); padding: 1px 8px; }
.chip:hover { border-color: var(--sage); background: var(--wash); }
.chip.is-on { background: var(--forest); border-color: var(--forest); color: #fff; }
.chip.is-on span { background: rgba(255,255,255,.16); color: #fff; }
.shot[hidden] { display: none !important; }

/* Zone : cartes par commune */
.zone-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.zone-card {
  display: flex; flex-direction: column; gap: 10px; padding: 26px 24px; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out), border-color .3s var(--ease);
}
.zone-card:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); border-color: var(--sage); }
.zone-card-dist { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); }
.zone-card h3 { font-size: 1.35rem; margin: 0; }
.zone-card p { color: var(--muted); line-height: 1.5; font-size: .95rem; flex: 1; }

/* ---------- 17. FAQ ---------- */
.faq-list { max-width: 840px; margin-inline: auto; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); margin-bottom: 10px; overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item:hover { border-color: var(--sage); }
.faq-item[open] { border-color: var(--sage); box-shadow: var(--sh-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 26px; font-weight: 600; font-size: 1.03rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--wash);
  background-image: linear-gradient(var(--forest),var(--forest)), linear-gradient(var(--forest),var(--forest));
  background-size: 10px 1.5px, 1.5px 10px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform .3s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-answer { padding: 0 26px 24px; color: var(--muted); font-size: .98rem; }
.faq-answer p + p { margin-top: .9em; }

/* ---------- 18. PROSE ---------- */
.prose h2 { margin-top: 2.4em; margin-bottom: .55em; scroll-margin-top: 100px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9em; margin-bottom: .5em; color: var(--forest); }
.prose p { margin-bottom: 1.05em; }
.prose ul, .prose ol { margin: 0 0 1.5em 0; padding-left: 0; list-style: none; }
.prose ol { counter-reset: li; }
.prose li { position: relative; padding-left: 32px; margin-bottom: .65em; }
.prose ul > li::before {
  content: ""; position: absolute; left: 6px; top: .66em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 0 3px var(--wash);
}
.prose ol > li::before {
  counter-increment: li; content: counter(li);
  position: absolute; left: 0; top: .08em;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--wash); color: var(--forest);
  font-size: .74rem; font-weight: 700;
  display: grid; place-items: center;
}
.prose > .anchor-head {
  display: flex; align-items: center; gap: 14px; margin-top: 2.6em;
}
.prose > .anchor-head:first-child { margin-top: 0; }
.prose > .anchor-head h2 { margin: 0; }
.prose > .anchor-head .svc-icon { width: 46px; height: 46px; margin: 0; flex-shrink: 0; border-radius: 13px; }

.callout {
  background: var(--wash); border-left: 3px solid var(--moss);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 22px 26px; margin: 1.8em 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout.clay { background: rgba(182,92,52,.07); border-left-color: var(--clay); }

.price-table {
  width: 100%; border-collapse: collapse; margin: 1.6em 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.price-table th, .price-table td { padding: 15px 18px; text-align: left; font-size: .94rem; }
.price-table thead th {
  background: var(--sand); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.price-table tbody tr + tr { border-top: 1px solid var(--line-soft); }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); white-space: nowrap; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- 19. CONTACT ---------- */
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--forest); color: #fff; position: relative; overflow: hidden;
  border-radius: var(--r-lg); padding: clamp(30px, 4vw, 40px); isolation: isolate;
}
.contact-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 80% 60% at 90% 100%, rgba(134,168,122,.3), transparent 65%);
}
.contact-card h2, .contact-card h3 { color: #fff; }
.crow { display: flex; gap: 15px; align-items: flex-start; padding-block: 17px; }
.crow + .crow { border-top: 1px solid rgba(255,255,255,.13); }
.crow svg { color: var(--sage); flex-shrink: 0; margin-top: 3px; }
.crow-label {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 4px; font-weight: 600;
}
.crow-value { color: #fff; font-size: 1rem; line-height: 1.45; }
.crow-value a { color: #fff; }
.crow-value a:hover { color: var(--lichen); }
.crow-value .big { font-size: 1.32rem; font-weight: 600; letter-spacing: -.01em; }

.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 42px); box-shadow: var(--sh-sm);
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
label { display: block; font-weight: 600; margin-bottom: 8px; font-size: .87rem; color: var(--ink); }
label .req { color: var(--clay); }
input, textarea, select {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--cream);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
input::placeholder, textarea::placeholder { color: #A5A99E; }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--moss); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(47,107,71,.12);
}
input:user-invalid, textarea:user-invalid, select:user-invalid { border-color: var(--clay); }
textarea { min-height: 130px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E7568' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; }
.consent input[type=checkbox] {
  width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--forest); cursor: pointer;
}
.consent label { font-weight: 400; font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.5; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: .84rem; color: var(--muted); text-align: center; margin-top: 16px; }
.form-status {
  display: none; padding: 15px 18px; border-radius: var(--r-sm);
  font-size: .93rem; margin-bottom: 20px; line-height: 1.5;
}
.form-status.ok   { display: block; background: var(--wash); color: var(--forest); border: 1px solid var(--sage); }
.form-status.err  { display: block; background: rgba(182,92,52,.08); color: var(--clay-dark); border: 1px solid rgba(182,92,52,.3); }

/* ---------- 20. CTA FINAL ---------- */
.cta {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(140deg, var(--bark) 0%, var(--forest) 55%, var(--forest-2) 100%);
  color: #fff; text-align: center;
}
.cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 70% at 50% 115%, rgba(134,168,122,.32), transparent 62%);
}
.cta h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta p {
  color: rgba(255,255,255,.78); font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 52ch; margin: 20px auto 36px;
}

/* ---------- 21. FOOTER ---------- */
.site-footer { background: var(--bark); color: rgba(255,255,255,.62); padding-block: clamp(56px, 7vw, 82px) 30px; }
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: clamp(28px, 4vw, 52px); padding-bottom: 46px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.42); }
.site-footer h4 {
  color: #fff; font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,.62); font-size: .93rem; display: block; margin-bottom: 10px; }
.site-footer a:hover { color: var(--lichen); }
.footer-note { font-size: .89rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer-note strong { color: rgba(255,255,255,.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: .82rem; color: rgba(255,255,255,.42);
}
.footer-bottom a { display: inline; margin: 0; font-size: .82rem; }
.footer-legal { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ---------- 22. BARRE MOBILE COLLANTE ---------- */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 880;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar .btn { flex: 1; padding: 14px 16px; font-size: .93rem; }
@media (max-width: 700px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- 23. ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

.hero-topo path { animation: drift 26s ease-in-out infinite alternate; }
.hero-topo path:nth-child(2n) { animation-duration: 34s; animation-direction: alternate-reverse; }
.hero-topo path:nth-child(3n) { animation-duration: 42s; }
@keyframes drift { from { transform: translate3d(0,0,0); } to { transform: translate3d(-22px,10px,0); } }

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

/* ---------- 24. UTILITAIRES ---------- */
.center { text-align: center; }
.mt-xl { margin-top: clamp(40px, 6vw, 68px); }
.mt-l  { margin-top: 34px; }
.mt-m  { margin-top: 22px; }
.mb-0  { margin-bottom: 0; }
.small { font-size: .87rem; }
.muted { color: var(--muted); }
.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;
}
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(40px, 6vw, 70px); }

/* Impression */
@media print {
  body::before, .site-header, .mobile-bar, .cta, .hero-topo { display: none !important; }
  body { background: #fff; color: #000; }
  a { text-decoration: underline; }
}
