/* ==========================================================================
   Christèle Egea — La Magie de Vie
   Design system : "Wellness organique" — vert forêt, crème, or, terracotta
   Polices : Fraunces (titres) + Hanken Grotesk (corps)
   ========================================================================== */

/* ----------------------------------------------------------------------- */
/* 1. Tokens                                                               */
/* ----------------------------------------------------------------------- */
:root {
  /* Palette */
  --forest:       #2E4A41;
  --forest-700:   #243B34;
  --forest-900:   #1A2C27;
  --sage:         #8BA793;
  --sage-soft:    #C7D6C8;
  --gold:         #C49A4A;
  --gold-soft:    #E4CE97;
  --terracotta:   #AB5C37;
  --terracotta-d: #8F4B2C;
  --accent-ink:   #98502B; /* terracotta foncé : petit texte/labels sur fond clair (AA) */
  --cream:        #F6F0E6;
  --cream-2:      #EFE6D6;
  --ivory:        #FCFAF4;
  --white:        #FFFFFF;
  --ink:          #20251F;
  --ink-soft:     #3A4239;
  --muted:        #606A5C;
  --line:         #E3D9C7;

  /* Semantic */
  --bg:           var(--cream);
  --surface:      var(--ivory);
  --text:         var(--ink);
  --text-muted:   var(--muted);
  --primary:      var(--forest);
  --accent:       var(--terracotta);

  /* Typo */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  /* Échelle fluide */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.45rem, 1.25rem + 1vw, 2.1rem);
  --step-3:  clamp(1.85rem, 1.5rem + 1.7vw, 3rem);
  --step-4:  clamp(2.3rem, 1.8rem + 2.6vw, 4rem);
  --step-5:  clamp(2.8rem, 2rem + 4vw, 5.2rem);

  /* Espacement */
  --space-xs: 0.5rem;
  --space-s:  1rem;
  --space-m:  1.75rem;
  --space-l:  3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Forme */
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  /* Ombres douces */
  --shadow-s:  0 2px 8px rgba(32, 37, 31, 0.05), 0 1px 2px rgba(32, 37, 31, 0.04);
  --shadow-m:  0 14px 34px -18px rgba(32, 50, 40, 0.28), 0 4px 12px -8px rgba(32, 50, 40, 0.12);
  --shadow-l:  0 40px 80px -40px rgba(26, 44, 39, 0.45), 0 10px 24px -16px rgba(26, 44, 39, 0.2);

  --container: 1200px;
  --container-narrow: 760px;
  --header-h: 84px;
}

/* ----------------------------------------------------------------------- */
/* 2. Reset                                                                */
/* ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
img { border-radius: inherit; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold-soft); color: var(--forest-900); }

/* ----------------------------------------------------------------------- */
/* 3. Typo                                                                 */
/* ----------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--forest-900);
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); font-weight: 500; }
h4 { font-size: var(--step-1); font-weight: 560; }
p { text-wrap: pretty; }
.lead { font-size: var(--step-1); line-height: 1.6; color: var(--ink-soft); font-weight: 360; }
strong { font-weight: 600; color: var(--forest-700); }
em.serif { font-family: var(--font-display); font-style: italic; }

/* ----------------------------------------------------------------------- */
/* 4. Layout                                                               */
/* ----------------------------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, var(--container-narrow)); margin-inline: auto; }
.section { padding-block: var(--space-2xl); position: relative; }
.section--tight { padding-block: var(--space-xl); }
.section--cream2 { background: var(--cream-2); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--white); }
.section--ivory { background: var(--ivory); }

@media (max-width: 720px) {
  :root { --space-2xl: 5rem; --space-xl: 3.5rem; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1.5px; background: var(--accent-ink); opacity: 0.75;
}
/* Eyebrow sur fond SOMBRE : doré clair */
.section--forest .eyebrow,
.page-hero.has-img .eyebrow,
.cta-inner .eyebrow { color: var(--gold-soft); }
.section--forest .eyebrow::before,
.page-hero.has-img .eyebrow::before,
.cta-inner .eyebrow::before { background: var(--gold-soft); }

.section-head { max-width: 640px; margin-bottom: var(--space-l); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: var(--space-s); }

/* ----------------------------------------------------------------------- */
/* 5. Boutons                                                              */
/* ----------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.95em 1.7em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: var(--step-0);
  border: none; border-radius: var(--radius-pill); cursor: pointer;
  line-height: 1; text-align: center;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background-color .25s ease;
  box-shadow: var(--shadow-s);
  min-height: 48px;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn:active { transform: translateY(0); }
.btn--accent { --btn-bg: var(--terracotta); --btn-fg: #fff; }
.btn--accent:hover { background: var(--terracotta-d); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--forest-900); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--forest);
  box-shadow: inset 0 0 0 1.5px var(--forest);
}
.btn--ghost:hover { background: var(--forest); color: var(--cream); box-shadow: var(--shadow-m); }
/* Boutons fantômes sur fond SOMBRE (hero image, bande CTA, sections forêt) : contraste clair */
.section--forest .btn--ghost,
.page-hero.has-img .btn--ghost,
.cta-inner .btn--ghost { --btn-fg: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.section--forest .btn--ghost:hover,
.page-hero.has-img .btn--ghost:hover,
.cta-inner .btn--ghost:hover { background: var(--cream); color: var(--forest-900); box-shadow: var(--shadow-m); }
.btn--lg { padding: 1.15em 2.2em; font-size: var(--step-1); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 600; color: var(--forest); position: relative;
}
.link-arrow svg { transition: transform .25s ease; width: 1em; height: 1em; }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow::after { content:""; position:absolute; left:0; bottom:-3px; height:1.5px; width:0; background: var(--terracotta); transition: width .3s ease; }
.link-arrow:hover::after { width: calc(100% - 1.5em); }

/* ----------------------------------------------------------------------- */
/* 6. Header                                                               */
/* ----------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 240, 230, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-s); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-m); min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--shadow-s); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 1.22rem; font-weight: 560; color: var(--forest-900); letter-spacing: -0.01em; }
.brand-tag { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-menu > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.3em; white-space: nowrap;
  padding: 0.6em 0.85em; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.94rem; color: var(--ink-soft);
  transition: color .2s ease, background-color .2s ease;
}
/* Bouton RDV du menu : visible uniquement en mobile */
@media (min-width: 1001px) { .nav-menu > li:has(> .btn--block) { display: none; } }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--forest); background: rgba(139, 167, 147, 0.18); }
.nav-link svg { width: 0.8em; height: 0.8em; transition: transform .25s ease; }
.has-sub:hover .nav-link svg { transform: rotate(180deg); }

.submenu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-l);
  padding: 0.6rem; min-width: 280px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.7rem 0.8rem; border-radius: 12px; transition: background-color .2s ease; }
.submenu a:hover { background: var(--cream); }
.submenu .s-ico { width: 34px; height: 34px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--cream-2); color: var(--forest); }
.submenu .s-ico svg { width: 18px; height: 18px; }
.submenu .s-title { display: block; font-weight: 600; color: var(--forest-900); font-size: 0.95rem; line-height: 1.2; }
.submenu .s-desc { display: block; font-size: 0.8rem; color: var(--muted); line-height: 1.3; }

.nav-actions { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.45em; font-weight: 600; color: var(--forest); font-size: 0.95rem; }
.nav-phone svg { width: 1.05em; height: 1.05em; color: var(--terracotta); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--surface); border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center; flex: none;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--forest); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after { position: absolute; top: 6px; left: 0; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1000px) {
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: auto;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    z-index: 90;
    flex-direction: column; align-items: stretch; gap: 0.15rem;
    background: var(--cream); padding: 1.5rem 1.25rem 3rem;
    overflow-y: auto; transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-l);
  }
  body.menu-open .nav-menu { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 0.85em 0.9em; justify-content: space-between; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0.2rem 0 0.5rem 0.6rem;
    min-width: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .has-sub.open .submenu { max-height: 600px; }
  .nav-actions .btn { display: none; }
}

/* ----------------------------------------------------------------------- */
/* 7. Hero                                                                 */
/* ----------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3rem, 8vw, 6rem) var(--space-2xl); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { margin-top: 1rem; }
.hero h1 .accent { color: var(--terracotta); font-style: italic; }
.hero .lead { margin-top: 1.5rem; max-width: 48ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.4rem; flex-wrap: wrap; }
.hero-stars { color: var(--gold); display: inline-flex; gap: 2px; }
.hero-stars svg { width: 1.15em; height: 1.15em; }
.hero-trust-text { font-size: 0.9rem; color: var(--muted); }
.hero-trust-text strong { color: var(--forest-700); }

.hero-visual { position: relative; }
.hero-visual .blob {
  position: absolute; inset: -8% -6% -6% -8%; z-index: 0;
  background: radial-gradient(120% 100% at 70% 20%, var(--sage-soft), transparent 60%),
              radial-gradient(90% 90% at 20% 90%, var(--gold-soft), transparent 55%);
  filter: blur(8px); border-radius: 50% 42% 56% 44% / 48% 52% 46% 54%;
}
.hero-photo {
  position: relative; z-index: 1; border-radius: 48% 52% 50% 50% / 54% 50% 50% 46%;
  overflow: hidden; box-shadow: var(--shadow-l);
  aspect-ratio: 4 / 5; background: var(--forest-900);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; z-index: 3; bottom: 6%; left: -4%;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-l); padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.8rem; max-width: 250px;
}
.hero-badge .b-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--cream-2); color: var(--terracotta); display: grid; place-items: center; flex: none; }
.hero-badge .b-ico svg { width: 22px; height: 22px; }
.hero-badge .b-title { display: block; font-weight: 700; font-size: 0.95rem; color: var(--forest-900); line-height: 1.15; }
.hero-badge .b-sub { display: block; font-size: 0.78rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero-badge { left: 2%; }
}

/* ----------------------------------------------------------------------- */
/* 8. Decorations                                                          */
/* ----------------------------------------------------------------------- */
.leaf-deco { position: absolute; opacity: 0.5; pointer-events: none; color: var(--sage); z-index: 0; }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.divider-wave { display: block; width: 100%; height: auto; color: var(--cream); }

/* ----------------------------------------------------------------------- */
/* 9. Cards / Services                                                     */
/* ----------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); border-color: var(--sage-soft); }

.service-card { position: relative; }
.service-card .sc-media { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.service-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.service-card:hover .sc-media img { transform: scale(1.06); }
.service-card .sc-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(252, 250, 244, 0.92); color: var(--forest); backdrop-filter: blur(4px);
  padding: 0.4em 0.9em; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; box-shadow: var(--shadow-s);
}
.service-card .sc-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.2rem; flex: 1; }
.service-card .sc-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.service-card .sc-price { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-900); }
.service-card .sc-price span { font-size: 0.78rem; color: var(--muted); font-family: var(--font-body); }

/* Feature / icon card */
.feature { text-align: left; padding: 1.6rem; }
.feature .f-ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--cream-2); color: var(--forest); margin-bottom: 1.1rem;
}
.feature .f-ico svg { width: 28px; height: 28px; }
.section--forest .feature .f-ico { background: rgba(255,255,255,0.08); color: var(--gold-soft); }
.feature h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.feature p { color: var(--muted); font-size: 0.97rem; }
.section--forest .feature p { color: rgba(246,240,230,0.78); }

/* ----------------------------------------------------------------------- */
/* 10. Split / image + texte                                              */
/* ----------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-m); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-media.tall img { aspect-ratio: 3/4; }
.split-media .accent-shape {
  position: absolute; inset: auto -18px -18px auto; width: 60%; height: 60%; z-index: -1;
  background: var(--sage-soft); border-radius: var(--radius-xl);
  border-radius: 46% 54% 50% 50% / 52% 48% 52% 48%;
}
/* Contenu .prose dans une section SOMBRE : texte clair (corrige texte invisible) */
.section--forest .prose,
.section--forest .prose p,
.section--forest .prose li { color: rgba(246, 240, 230, 0.86); }
.section--forest .prose strong { color: #fff; }
.section--forest .prose h2,
.section--forest .prose h3,
.section--forest .prose h4 { color: #fff; }
.section--forest .link-arrow,
.cta-inner .link-arrow { color: var(--gold-soft); }
.section--forest .link-arrow::after,
.cta-inner .link-arrow::after { background: var(--gold-soft); }

.prose > * + * { margin-top: 1.1rem; }
.prose h2 + p, .prose h3 + p { margin-top: 0.8rem; }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.prose ul li { position: relative; padding-left: 2rem; color: var(--ink-soft); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.45em; width: 18px; height: 18px;
  background: var(--terracotta);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ----------------------------------------------------------------------- */
/* 11. Stats / chiffres                                                    */
/* ----------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .s-num { font-family: var(--font-display); font-size: var(--step-4); color: var(--forest-900); line-height: 1; }
.section--forest .stat .s-num { color: var(--gold-soft); }
.stat .s-label { font-size: 0.92rem; color: var(--muted); margin-top: 0.4rem; }
.section--forest .stat .s-label { color: rgba(246,240,230,0.8); }

/* ----------------------------------------------------------------------- */
/* 12. Process / étapes                                                    */
/* ----------------------------------------------------------------------- */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
.step-row {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem;
}
.step-row .s-num {
  counter-increment: step; width: 52px; height: 52px; flex: none;
  border-radius: 50%; background: var(--forest); color: var(--gold-soft);
  font-family: var(--font-display); font-size: 1.4rem; display: grid; place-items: center;
}
.step-row .s-num::before { content: counter(step, decimal-leading-zero); }
.step-row h4 { margin-bottom: 0.35rem; }
.step-row p { color: var(--muted); font-size: 0.96rem; }

/* ----------------------------------------------------------------------- */
/* 13. Témoignages                                                         */
/* ----------------------------------------------------------------------- */
.reviews-rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(86%, 380px); gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1.5rem; margin-inline: calc(-1 * var(--space-s)); padding-inline: var(--space-s); scrollbar-width: thin; }
.reviews-rail::-webkit-scrollbar { height: 8px; }
.reviews-rail::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 99px; }
.review {
  scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.review .r-stars { color: var(--gold); display: inline-flex; gap: 3px; }
.review .r-stars svg { width: 1.1em; height: 1.1em; }
.review .r-text { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.review .r-text::before { content: "“"; font-family: var(--font-display); font-size: 2.4rem; color: var(--sage); line-height: 0; vertical-align: -0.35em; margin-right: 0.1em; }
.review .r-meta { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.review .r-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--forest); color: var(--gold-soft); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; flex: none; }
.review .r-name { display: block; font-weight: 700; color: var(--forest-900); font-size: 0.95rem; }
.review .r-date { display: block; font-size: 0.8rem; color: var(--muted); }

/* Grille d'avis (page dédiée) */
.reviews-grid { columns: 3 280px; column-gap: 1.5rem; }
.reviews-grid .review { break-inside: avoid; margin-bottom: 1.5rem; display: inline-flex; width: 100%; }

/* ----------------------------------------------------------------------- */
/* 14. FAQ                                                                 */
/* ----------------------------------------------------------------------- */
.faq { display: grid; gap: 0.9rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s ease; }
.faq-item[open] { box-shadow: var(--shadow-m); border-color: var(--sage-soft); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 500; color: var(--forest-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-ico { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; transition: transform .3s ease, background-color .3s ease; }
.faq-item summary .faq-ico svg { width: 16px; height: 16px; color: var(--forest); }
.faq-item[open] summary .faq-ico { transform: rotate(45deg); background: var(--terracotta); }
.faq-item[open] summary .faq-ico svg { color: #fff; }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem; color: var(--muted); }
.faq-item .faq-body p + p { margin-top: 0.8rem; }

/* ----------------------------------------------------------------------- */
/* 15. CTA band                                                            */
/* ----------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .cta-inner {
  background: linear-gradient(135deg, var(--forest-700), var(--forest));
  border-radius: var(--radius-xl); padding: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden; color: var(--cream);
  box-shadow: var(--shadow-l);
}
.cta-band .cta-inner h2 { color: #fff; }
.cta-band .cta-inner p { color: rgba(246,240,230,0.85); max-width: 52ch; margin: 1rem auto 0; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.cta-band .glow { position: absolute; width: 460px; height: 460px; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.cta-band .glow.g1 { background: var(--gold); top: -160px; right: -100px; }
.cta-band .glow.g2 { background: var(--sage); bottom: -180px; left: -120px; }

/* ----------------------------------------------------------------------- */
/* 16. Map / itinéraire                                                    */
/* ----------------------------------------------------------------------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-m); border: 1px solid var(--line); background: var(--cream-2); }
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-meta { display: grid; gap: 1.2rem; }
.info-row { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-row .i-ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--cream-2); color: var(--terracotta); display: grid; place-items: center; }
.info-row .i-ico svg { width: 22px; height: 22px; }
.info-row .i-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.info-row .i-value { font-weight: 600; color: var(--forest-900); font-size: 1.05rem; }
.info-row .i-value a:hover { color: var(--terracotta); }

/* Communes / zone */
.towns-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.8rem; }
.town-chip {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 1.1rem; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.town-chip:hover { transform: translateY(-3px); border-color: var(--sage); box-shadow: var(--shadow-m); }
.town-chip .t-name { font-weight: 600; color: var(--forest-900); }
.town-chip .t-dist { font-size: 0.8rem; color: var(--muted); }
.town-chip svg { width: 1em; height: 1em; color: var(--terracotta); flex: none; }

/* ----------------------------------------------------------------------- */
/* 17. Page hero (interior)                                                */
/* ----------------------------------------------------------------------- */
.page-hero { position: relative; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 3.5rem); overflow: hidden; background: var(--cream-2); }
.page-hero .breadcrumb { margin-bottom: 1.3rem; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 1.2rem; max-width: 58ch; }
.page-hero.has-img { background: var(--forest-900); color: var(--cream); }
.page-hero.has-img::after { content:""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(26,44,39,0.92) 30%, rgba(26,44,39,0.55)); z-index: 1; }
.page-hero.has-img > .bg { position: absolute; inset: 0; z-index: 0; }
.page-hero.has-img > .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-img .container { position: relative; z-index: 2; }
.page-hero.has-img h1 { color: #fff; }
.page-hero.has-img .lead { color: rgba(246,240,230,0.88); }
.page-hero.has-img .breadcrumb, .page-hero.has-img .breadcrumb a { color: rgba(246,240,230,0.7); }

.breadcrumb { font-size: 0.85rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.4em; align-items: center; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { opacity: 0.5; }

.pricing-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.pricing-pill { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0.6em 1.1em; font-size: 0.92rem; font-weight: 600; color: var(--forest-700); display: inline-flex; gap: 0.5em; align-items: center; }
.pricing-pill b { color: var(--accent-ink); }
.page-hero.has-img .pricing-pill b { color: var(--gold-soft); }
.page-hero.has-img .pricing-pill { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }

/* ----------------------------------------------------------------------- */
/* 18. Footer                                                              */
/* ----------------------------------------------------------------------- */
.site-footer { background: var(--forest-900); color: rgba(246,240,230,0.75); padding-block: var(--space-xl) var(--space-m); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 1.1rem; }
.footer-brand .brand-name { color: var(--white); }
.site-footer .brand-tag { color: var(--gold-soft); }
.footer-brand p { font-size: 0.92rem; margin-top: 1rem; max-width: 30ch; }
.footer-links { list-style: none; display: grid; gap: 0.6rem; }
.footer-links a { font-size: 0.94rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-contact { display: grid; gap: 0.8rem; font-size: 0.94rem; }
.footer-contact a { display: inline-flex; gap: 0.5em; align-items: flex-start; }
.footer-contact svg { width: 1.1em; height: 1.1em; color: var(--gold); flex: none; margin-top: 0.2em; }
.social-row { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-row a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.07); display: grid; place-items: center; transition: background-color .25s ease, transform .25s ease; }
.social-row a:hover { background: var(--gold); color: var(--forest-900); transform: translateY(-3px); }
.social-row svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--space-l); padding-top: var(--space-m); display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ----------------------------------------------------------------------- */
/* 19. Misc / chips / utils                                                */
/* ----------------------------------------------------------------------- */
.chip-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { background: var(--cream-2); color: var(--forest-700); border-radius: var(--radius-pill); padding: 0.45em 0.95em; font-size: 0.85rem; font-weight: 500; }
.section--forest .chip { background: rgba(255,255,255,0.1); color: var(--cream); }
.text-center { text-align: center; }
.mt-l { margin-top: var(--space-l); }
.mt-m { margin-top: var(--space-m); }
.muted { color: var(--muted); }
.note { font-size: 0.85rem; color: var(--muted); }

.callout {
  background: var(--cream-2); border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.3rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start;
}
.callout .c-ico { color: var(--terracotta); flex: none; }
.callout .c-ico svg { width: 26px; height: 26px; }
.callout h4 { margin-bottom: 0.3rem; }
.callout p { color: var(--ink-soft); font-size: 0.96rem; }

/* Tarif table */
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-s); }
.price-card .pc-head { background: var(--forest); color: var(--cream); padding: 1.4rem 1.8rem; }
.price-card .pc-head h3 { color: #fff; }
.price-row { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.8rem; border-bottom: 1px solid var(--line); align-items: baseline; }
.price-row:last-child { border-bottom: none; }
.price-row .pr-name { font-weight: 600; color: var(--forest-900); }
.price-row .pr-name small { display: block; font-weight: 400; color: var(--muted); font-size: 0.82rem; }
.price-row .pr-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--terracotta); white-space: nowrap; }

/* Form */
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--forest-900); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85em 1em; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--white); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(139,167,147,0.2); }
.field textarea { min-height: 130px; resize: vertical; }
.form-status { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 12px; font-weight: 600; font-size: 0.95rem; }
.form-status.ok { background: #e6efe4; color: #2c4a36; border: 1px solid #b8d2bb; }
.form-status.err { background: #faece6; color: #8a3a1e; border: 1px solid #e6c2b0; }

/* ----------------------------------------------------------------------- */
/* 20. Animations (scroll reveal)                                          */
/* ----------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
[data-reveal].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; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

.float-anim { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
