/* ==========================================================================
   RD ENVIRONNEMENT — Paysagiste à Renaison (42)
   Direction : éditoriale, naturelle, premium. Vert bouteille + craie + clémentine.
   Type : Bricolage Grotesque (titres) + Hanken Grotesk (texte).
   Zéro build — Tailwind CDN pour l'utilitaire, ce fichier pour l'identité.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Verts */
  --ink:        #16211B;   /* texte principal (vert quasi-noir) */
  --pine:       #1E3D2C;   /* vert bouteille — surfaces sombres, marque */
  --pine-deep:  #13271C;   /* le plus profond — footer, dégradés */
  --fern:       #3E6B45;   /* vert moyen — liens, survols sur clair */

  /* Neutres clairs (frais, PAS de crème beige) */
  --paper:      #F5F6F1;   /* fond de page */
  --chalk:      #E9EBE2;   /* sections alternées */
  --mist:       #D7DBCE;   /* filets, bordures */
  --on-pine:    #EDEFE7;   /* texte sur vert sombre */

  /* Accent unique : clémentine */
  --accent:     #D9642C;   /* décor, étoiles, filets */
  --accent-btn: #C1531F;   /* fond bouton (texte blanc, contraste AA) */
  --accent-ink: #9E4318;   /* accent en texte sur fond clair (AA) */

  /* Typo */
  --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rayons (interactif = pilule ; surfaces = 8px) */
  --r: 8px;
  --r-pill: 999px;

  /* Ombres teintées vert (jamais noir pur) */
  --sh-1: 0 1px 2px rgba(22,33,27,.05), 0 4px 14px rgba(22,33,27,.05);
  --sh-2: 0 10px 30px rgba(22,33,27,.10), 0 4px 10px rgba(22,33,27,.06);
  --sh-3: 0 26px 60px rgba(19,39,28,.20);

  --ease: cubic-bezier(.2,.7,.2,1);
  --nav-h: 76px;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid var(--fern); outline-offset: 3px; border-radius: 4px; }

.u-wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 24px; }

/* Icônes Phosphor (chargées via CDN) — taille cohérente */
.ph, .ph-fill { font-size: 1.25em; line-height: 1; display: inline-block; vertical-align: -0.12em; }

/* --------------------------------------------------------------------------
   3. BOUTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; min-height: 54px;
  border-radius: var(--r-pill);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background-color .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn .ph { font-size: 1.3em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }

.btn--accent { background: var(--accent-btn); color: #fff; box-shadow: var(--sh-2); }
.btn--accent:hover { background: var(--accent-ink); }

.btn--ink { background: var(--ink); color: var(--on-pine); }
.btn--ink:hover { background: #0f1913; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--on-pine); }

/* sur fond sombre */
.btn--light { background: var(--on-pine); color: var(--pine-deep); }
.btn--light:hover { background: #fff; }
.btn--onpine-outline { background: transparent; color: var(--on-pine); border-color: rgba(237,239,231,.45); }
.btn--onpine-outline:hover { border-color: var(--on-pine); background: rgba(237,239,231,.08); }

/* --------------------------------------------------------------------------
   4. NOTE / ÉTOILES
   -------------------------------------------------------------------------- */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars .ph-fill { font-size: 1.05em; }
.stars--lg .ph-fill { font-size: 1.5em; }

.rating-inline { display: inline-flex; align-items: center; gap: 12px; }
.rating-inline .g { width: 20px; height: 20px; flex: none; }
.rating-inline .val { font-family: var(--font-display); font-weight: 700; }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr .u-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hdr.is-solid { background: rgba(245,246,241,.86); backdrop-filter: blur(12px) saturate(1.2); border-bottom-color: var(--mist); }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--on-pine); transition: color .3s var(--ease); }
.hdr.is-solid .brand { color: var(--ink); }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.24rem; letter-spacing: -0.03em; line-height: 1; }
.brand__name b { color: var(--accent); font-weight: 700; }

.nav { display: none; align-items: center; gap: 30px; }
.nav a { font-size: .98rem; font-weight: 500; color: var(--on-pine); opacity: .85; position: relative; padding: 4px 0; transition: opacity .2s var(--ease); }
.hdr.is-solid .nav a { color: var(--ink); opacity: .72; }
.nav a::after { content:""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--accent); transition: width .25s var(--ease); }
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }

.hdr__cta { display: flex; align-items: center; gap: 12px; }
.hdr__cta .btn { min-height: 46px; padding: 11px 20px; font-size: .95rem; }

.burger {
  width: 46px; height: 46px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(237,239,231,.4); background: rgba(237,239,231,.08);
  color: var(--on-pine); cursor: pointer;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.hdr.is-solid .burger { color: var(--ink); border-color: var(--mist); background: transparent; }
.burger span { width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.msheet {
  position: fixed; inset: 0; z-index: 55;
  background: var(--pine); color: var(--on-pine);
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 96px 30px 40px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .45s var(--ease), opacity .3s var(--ease), visibility .45s;
}
.msheet.is-open { transform: none; opacity: 1; visibility: visible; }
.msheet a { font-family: var(--font-display); font-weight: 600; font-size: 2rem; padding: 12px 0; border-bottom: 1px solid rgba(237,239,231,.14); }
.msheet a:last-of-type { border: none; }
.msheet .btn { margin-top: 26px; align-self: flex-start; padding: 12px 22px; min-height: 48px; font-size: .95rem; }

/* --------------------------------------------------------------------------
   6. HERO (split photographique)
   -------------------------------------------------------------------------- */
.hero { position: relative; min-height: 100dvh; background: var(--pine); color: var(--on-pine); display: flex; align-items: flex-start; overflow: hidden; }
.hero__photo { position: absolute; inset: 0; z-index: 0; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
/* Duotone vert : unifie n'importe quelle photo à la marque (à alléger avec vos vraies photos) */
.hero__photo::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,61,44,.55) 0%, rgba(19,39,28,.92) 78%);
  mix-blend-mode: multiply;
}
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(19,39,28,.72) 0%, rgba(19,39,28,.32) 42%, rgba(19,39,28,.55) 100%); }
.hero__content { position: relative; z-index: 2; padding-block: 130px 64px; max-width: 760px; }

.hero__rating { display: inline-flex; align-items: center; gap: 12px; padding: 8px 8px 8px 6px; margin-bottom: 26px; }
.hero__rating .val { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.hero__rating .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(237,239,231,.4); }
.hero__rating small { color: var(--on-pine); opacity: .8; font-weight: 500; }

.hero h1 { font-size: clamp(2.7rem, 8vw, 5.4rem); font-weight: 800; letter-spacing: -0.035em; color: #fff; }
.hero h1 i { font-style: italic; font-weight: 700; color: var(--accent); }
.hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 2.3vw, 1.28rem); line-height: 1.5; max-width: 42ch; color: rgba(237,239,231,.9); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

@media (min-width: 1024px) {
  /* Photo plein cadre : couvre toute la surface du hero (largeur ET hauteur) */
  .hero__photo { inset: 0; width: auto; }
  .hero__photo::after { background: linear-gradient(90deg, rgba(19,39,28,.55) 0%, rgba(19,39,28,.30) 55%, rgba(19,39,28,.20) 100%); }
  .hero__scrim { background: linear-gradient(90deg, rgba(19,39,28,.80) 0%, rgba(19,39,28,.35) 45%, rgba(19,39,28,0) 78%); }
  .hero { align-items: center; }
  .hero__content { padding-block: 120px; }
}

/* --------------------------------------------------------------------------
   7. SECTIONS
   -------------------------------------------------------------------------- */
.sec { padding-block: clamp(72px, 11vw, 148px); }
.sec--chalk { background: var(--chalk); }
.sec--pine { background: var(--pine); color: var(--on-pine); }
.sec--pine h2, .sec--pine h3 { color: #fff; }

.kicker { display: inline-block; font-family: var(--font-body); font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 20px; }
.sec--pine .kicker { color: var(--accent); }

.h-lg { font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; }
.lead { font-size: 1.12rem; line-height: 1.55; color: var(--fern); max-width: 54ch; }
.sec--pine .lead { color: rgba(237,239,231,.82); }

/* --------------------------------------------------------------------------
   8. STATEMENT + STATS (remplace le marquee)
   -------------------------------------------------------------------------- */
.statement { display: grid; gap: 48px; }
.statement__lead { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 4.2vw, 2.9rem); line-height: 1.14; letter-spacing: -0.025em; max-width: 20ch; }
.statement__lead b { color: var(--accent-ink); font-weight: 500; }
.statement__body { max-width: 46ch; color: var(--fern); font-size: 1.08rem; line-height: 1.6; }
.statement__body .sig { margin-top: 22px; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.statement__body .sig span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .92rem; color: var(--fern); }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 8px; border-top: 1px solid var(--mist); }
.stat { padding: 26px 4px 6px; }
.stat__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.4rem); letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.stat__n .u { color: var(--accent); }
.stat__l { margin-top: 10px; font-size: .92rem; color: var(--fern); }

@media (min-width: 860px) {
  .statement { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .stats { grid-template-columns: repeat(4, 1fr); grid-column: 1 / -1; }
}

/* --------------------------------------------------------------------------
   9. PRESTATIONS — liste éditoriale (split collant)
   -------------------------------------------------------------------------- */
.svc { display: grid; gap: 40px; }
.svc__aside { }
.svc__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; }
.svc__intro { margin-top: 18px; color: var(--fern); font-size: 1.06rem; line-height: 1.55; max-width: 40ch; }
.svc__intro .btn { margin-top: 26px; }

.svc__list { border-top: 1px solid var(--mist); }
.svc-row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 8px 20px;
  padding: 26px 0; border-bottom: 1px solid var(--mist);
  transition: padding-left .3s var(--ease);
}
.svc-row__h { display: flex; align-items: baseline; gap: 14px; }
.svc-row__h .ph { color: var(--accent); font-size: 1.15rem; transform: translateY(2px); }
.svc-row h3 { font-size: clamp(1.4rem, 3.2vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; }
.svc-row p { grid-column: 1 / -1; color: var(--fern); font-size: 1rem; line-height: 1.5; max-width: 60ch; margin-top: 6px; }
.svc-row__meta { font-size: .86rem; color: var(--fern); font-weight: 500; white-space: nowrap; }
.svc-row:hover { padding-left: 14px; }
.svc-row:hover h3 { color: var(--accent-ink); }

@media (min-width: 940px) {
  .svc { grid-template-columns: 0.82fr 1.18fr; gap: 72px; }
  .svc__aside { position: sticky; top: 110px; align-self: start; }
}

/* --------------------------------------------------------------------------
   10. AVANT / APRÈS
   -------------------------------------------------------------------------- */
.ba-head { display: grid; gap: 16px; max-width: 640px; margin-bottom: 44px; }
.ba {
  position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--r);
  overflow: hidden; box-shadow: var(--sh-3); user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba__img { position: absolute; inset: 0; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__img::after { content:""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30,61,44,.10), rgba(19,39,28,.20)); mix-blend-mode: multiply; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__tag { position: absolute; bottom: 16px; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: rgba(19,39,28,.62); backdrop-filter: blur(4px); padding: 7px 13px; border-radius: var(--r-pill); }
.ba__before .ba__tag { left: 16px; }
.ba__after .ba__tag { right: 16px; background: var(--accent-btn); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; margin-left: -1.5px; background: #fff; box-shadow: 0 0 14px rgba(0,0,0,.28); z-index: 3; }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--pine); box-shadow: var(--sh-2); display: grid; place-items: center; }
.ba__grip .ph { font-size: 1.5rem; }
.ba__note { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.85); background: rgba(19,39,28,.45); padding: 6px 12px; border-radius: var(--r-pill); z-index: 3; }

/* --------------------------------------------------------------------------
   11. RÉALISATIONS — grille asymétrique + lightbox
   -------------------------------------------------------------------------- */
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.shot { position: relative; overflow: hidden; border-radius: var(--r); background: var(--pine); aspect-ratio: 1/1; cursor: zoom-in; }
/* Tuile large : occupe 2 colonnes, même hauteur de rangée que les carrés (mosaïque sans trou) */
.shot--w { grid-column: span 2; aspect-ratio: 2/1; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
/* Voile vert léger : cohérence de marque sur des photos temporaires (à retirer avec vos vraies photos) */
.shot::before { content:""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(160deg, rgba(30,61,44,.14), rgba(19,39,28,.22)); mix-blend-mode: multiply; }
.shot::after { content: attr(data-label); position: absolute; inset: auto 0 0 0; z-index: 2; padding: 44px 16px 14px; color: #fff; font-size: .84rem; font-weight: 600; background: linear-gradient(0deg, rgba(19,39,28,.72), transparent); opacity: 0; transition: opacity .3s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot:hover::after { opacity: 1; }
@media (min-width: 780px) {
  .gal { grid-template-columns: repeat(4, 1fr); }
}

.lb { position: fixed; inset: 0; z-index: 100; background: rgba(15,24,18,.94); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.lb.is-open { opacity: 1; visibility: visible; }
.lb__stage { max-width: 92vw; max-height: 84vh; border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-3); transform: scale(.95); transition: transform .35s var(--ease); }
.lb.is-open .lb__stage { transform: none; }
.lb__stage img { max-width: 92vw; max-height: 84vh; object-fit: contain; }
.lb__btn { position: absolute; background: rgba(237,239,231,.12); border: 1px solid rgba(237,239,231,.28); color: #fff; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background .2s var(--ease); }
.lb__btn:hover { background: rgba(237,239,231,.26); }
.lb__btn .ph { font-size: 1.4rem; }
.lb__close { top: 22px; right: 22px; }
.lb__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   12. AVIS — carrousel éditorial
   -------------------------------------------------------------------------- */
.rev-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.rev-score { display: flex; align-items: center; gap: 18px; }
.rev-score__n { font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; line-height: .9; color: #fff; }
.rev-score__meta { font-size: .95rem; color: rgba(237,239,231,.78); }
.rev-score__meta .stars { margin-bottom: 4px; }
.rev-score__meta a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); }

.caro { position: relative; overflow: hidden; }
.caro__track { display: flex; gap: 22px; transition: transform .55s var(--ease); will-change: transform; }
.qcard { flex: 0 0 100%; background: rgba(237,239,231,.05); border: 1px solid rgba(237,239,231,.14); border-radius: var(--r); padding: 34px; display: flex; flex-direction: column; }
.qcard .ph-quotes { color: var(--accent); font-size: 2rem; margin-bottom: 14px; }
.qcard__q { font-family: var(--font-display); font-weight: 500; font-size: 1.28rem; line-height: 1.42; letter-spacing: -0.01em; color: #fff; flex: 1; }
.qcard__by { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.qcard__av { width: 46px; height: 46px; border-radius: 50%; flex: none; background: var(--accent-btn); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.qcard__nm { font-weight: 600; color: #fff; }
.qcard__src { font-size: .84rem; color: rgba(237,239,231,.6); display: inline-flex; align-items: center; gap: 6px; }
.qcard__src .g { width: 14px; height: 14px; }

.caro-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 34px; }
.caro-btn { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid rgba(237,239,231,.28); background: transparent; color: var(--on-pine); cursor: pointer; display: grid; place-items: center; transition: all .2s var(--ease); }
.caro-btn:hover { background: var(--on-pine); color: var(--pine); border-color: var(--on-pine); transform: translateY(-2px); }
.caro-btn .ph { font-size: 1.3rem; }
.caro-dots { display: flex; gap: 8px; }
.caro-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(237,239,231,.3); cursor: pointer; padding: 0; transition: all .25s var(--ease); }
.caro-dots button[aria-current="true"] { background: var(--accent); width: 24px; border-radius: 4px; }

@media (min-width: 720px) { .qcard { flex-basis: calc(50% - 11px); } }
@media (min-width: 1040px) { .qcard { flex-basis: calc(33.333% - 15px); } }

/* --------------------------------------------------------------------------
   13. ZONE
   -------------------------------------------------------------------------- */
.zone { display: grid; gap: 44px; align-items: start; }
.zone__towns { columns: 2; column-gap: 28px; margin-top: 6px; }
.zone__towns li { break-inside: avoid; padding: 12px 0; border-bottom: 1px solid var(--mist); display: flex; align-items: center; gap: 10px; font-size: 1.02rem; }
.zone__towns li .ph { color: var(--accent); font-size: 1rem; }
.zone__towns li b { font-weight: 600; }
.zone__note { margin-top: 26px; color: var(--fern); }
@media (min-width: 900px) { .zone { grid-template-columns: 1fr 1.05fr; gap: 72px; } .zone__towns { columns: 2; } }

/* --------------------------------------------------------------------------
   14. CTA FINAL
   -------------------------------------------------------------------------- */
.cta { text-align: center; max-width: 780px; margin-inline: auto; }
.cta h2 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.cta p { margin-top: 18px; font-size: 1.15rem; color: rgba(237,239,231,.85); }
.cta__phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 5vw, 2.6rem); color: #fff; letter-spacing: -0.02em; }
.cta__phone .ph { color: var(--accent); }
.cta__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.ftr { background: var(--pine-deep); color: rgba(237,239,231,.75); padding-block: 66px 30px; font-size: .96rem; }
.ftr__grid { display: grid; gap: 40px; }
.ftr h4 { color: #fff; font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.ftr a { transition: color .2s var(--ease); }
.ftr a:hover { color: #fff; }
.ftr__brand .brand { color: #fff; }
.ftr__brand p { margin-top: 16px; max-width: 34ch; line-height: 1.6; }
.ftr__c li { display: flex; gap: 11px; margin-bottom: 12px; align-items: flex-start; }
.ftr__c .ph { color: var(--accent); font-size: 1.05rem; margin-top: 2px; flex: none; }
.ftr__hours { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; }
.ftr__hours dt { color: rgba(237,239,231,.55); }
.ftr__hours dd { margin: 0; text-align: right; color: #fff; font-variant-numeric: tabular-nums; }
.ftr__bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(237,239,231,.12); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .84rem; color: rgba(237,239,231,.5); }
@media (min-width: 780px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr; } }

/* --------------------------------------------------------------------------
   16. BARRE D'APPEL MOBILE
   -------------------------------------------------------------------------- */
.callbar { position: fixed; inset: auto 14px 14px 14px; z-index: 50; display: flex; gap: 10px; transform: translateY(160%); transition: transform .4s var(--ease); }
.callbar.is-on { transform: none; }
.callbar .btn { flex: 1; box-shadow: var(--sh-3); }
@media (min-width: 1024px) { .callbar { display: none; } }

/* --------------------------------------------------------------------------
   17. REVEAL AU SCROLL
   -------------------------------------------------------------------------- */
.rise { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; } .d3 { transition-delay: .21s; } .d4 { transition-delay: .28s; }

/* --------------------------------------------------------------------------
   18. NAV DESKTOP
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .nav { display: flex; }
  .burger { display: none; }
}
@media (max-width: 1023px) { .hdr__cta .btn--desk { display: none; } }

/* --------------------------------------------------------------------------
   19. MOUVEMENT RÉDUIT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .rise { opacity: 1; transform: none; }
}
