/* ==========================================================================
   Digitale Solution — feuille de style des sites d'aperçu
   Portage du handoff de design « Maison Lélia » (hifi) en CSS classique.

   Le handoff est écrit en styles en ligne sur un runtime de prototypage
   (support.js, <x-dc>, image-slot) que son README demande explicitement de NE
   PAS porter : on relit la structure et les valeurs, et on réécrit en HTML/CSS
   standard. Toutes les couleurs passent par des variables définies dans la page
   (design_tokens.py) pour qu'un garage ne reçoive pas la palette d'un salon.

   Valeurs conservées du design : en-tête 80px, rupture burger 1040px, rayons
   999 / 8-10 / 18 / 20 / 22-26 / 160-220px, ombres, durées et courbes de
   transition, échelles typographiques en clamp(), grilles auto-fit/minmax.
   ========================================================================== */

/* --- Base ---------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Hauteur réelle de la barre fixe, recalculée par site.js. */
  --topbar-h: 128px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Jost, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

::selection { background: var(--accent-light); color: var(--dark); }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  margin: 0;
  color: var(--ink-title);
  letter-spacing: .01em;
}

.serif { font-family: "Cormorant Garamond", Georgia, serif; }
.mono { font-family: ui-monospace, Menlo, Consolas, monospace; }
.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;
}

/* --- Blocs de section ---------------------------------------------------- */

.section {
  background: var(--cream);
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 44px);
  scroll-margin-top: calc(var(--topbar-h) + 10px);
}
.section--alt { background: var(--cream-alt); }
.section--tight { padding-block: clamp(52px, 7vw, 90px); }
.section--flush { padding-inline: 0; }

.wrap { max-width: 1180px; margin: 0 auto; }
.wrap--wide { max-width: 1280px; }
.wrap--text { max-width: 1000px; }

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
}

.h2 {
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.1;
}
.h2--sm { font-size: clamp(30px, 3.8vw, 48px); line-height: 1.12; }

.lead {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--muted);
  text-wrap: pretty;
}

.note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--faint);
}

/* --- Boutons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  padding: 19px 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .35s, color .35s, border-color .35s,
              transform .35s, box-shadow .35s;
}
.btn--sm { font-size: 13px; letter-spacing: .12em; padding: 14px 22px; }

.btn.btn--primary { background: var(--accent); color: var(--cream); }
.btn.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px var(--accent-shadow);
}

.btn.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent-border); }
.btn.btn--outline:hover { background: var(--accent-tint); border-color: var(--accent); color: var(--accent-dark); }

.btn.btn--ghost {
  background: rgba(255, 255, 255, .07);
  color: #FBF7F2;
  border-color: rgba(255, 255, 255, .42);
  padding: 18px 34px;
}
.btn.btn--ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn.btn--light { background: var(--cream); color: var(--dark); }
.btn.btn--light:hover { background: var(--accent-light); color: var(--dark); transform: translateY(-2px); }

.link-underline {
  align-self: flex-start;
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 3px;
  transition: border-color .3s;
}
.link-underline:hover { border-color: var(--accent); }

/* --- Barre fixe : bandeau d'aperçu + en-tête ------------------------------ */

.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 200; }

.preview-bar {
  background: var(--dark);
  color: var(--on-dark);
  border-bottom: 1px solid var(--on-dark-line);
}
.preview-bar__in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px clamp(18px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.preview-bar__tag {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--accent-light);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}
.preview-bar a {
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, color .3s;
}
.preview-bar a:hover { color: #fff; border-bottom-color: currentColor; }

.site-header {
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-2);
  box-shadow: 0 1px 24px rgba(36, 29, 27, .06);
}
.site-header__in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 44px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Aucun logo n'est fourni par le prospect : le nom fait office de bloc-marque. */
.brand { display: flex; flex-direction: column; text-decoration: none; flex: 0 1 auto; min-width: 0; }
.brand__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(19px, 2.6vw, 27px);
  line-height: 1.05;
  color: var(--ink-title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__sub {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); }
.site-nav a {
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }
.site-nav .btn { padding: 13px 26px; font-size: 14px; letter-spacing: .12em; border-bottom: none; }
.site-nav .btn:hover { border-bottom: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  cursor: pointer;
  padding: 0 12px;
}
.burger span { display: block; height: 1.5px; background: var(--accent); border-radius: 2px; width: 100%; }
.burger span:nth-child(2) { width: 70%; }

.mobile-panel {
  display: none;
  background: var(--cream);
  border-bottom: 1px solid var(--border-2);
  box-shadow: 0 18px 40px rgba(36, 29, 27, .12);
}
.mobile-panel.is-open { display: block; }
.mobile-panel__in { display: flex; flex-direction: column; padding: 14px clamp(18px, 5vw, 32px) 26px; gap: 2px; }
.mobile-panel a {
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  padding: 15px 4px;
  border-bottom: 1px solid var(--border-2);
}
.mobile-panel .btn { margin-top: 16px; border-bottom: none; }

@media (max-width: 1039px) {
  .site-nav { display: none; }
  .burger { display: flex; }
}

/* --- Bannière ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--darker);
  isolation: isolate;
}
.hero__bg { position: absolute; left: 0; right: 0; top: -14%; height: 132%; z-index: 0; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(78% 62% at 50% 26%, var(--hero-veil-1) 0%, var(--hero-veil-2) 46%, var(--hero-veil-3) 78%),
    linear-gradient(180deg, var(--hero-fade-top) 0%, var(--hero-fade-mid) 34%, var(--hero-fade-low) 72%, var(--hero-fade-bottom) 100%);
}
.hero__in {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--topbar-h) + clamp(44px, 8vh, 88px)) clamp(20px, 5vw, 44px) clamp(100px, 16vh, 190px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
}
.hero__eyebrow { font-size: 13px; letter-spacing: .36em; text-transform: uppercase; color: var(--accent-light); }
.hero h1 {
  font-weight: 300;
  font-size: clamp(38px, 7vw, 88px);
  line-height: 1.04;
  color: #FBF7F2;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0, 0, 0, .45);
}
.hero h1 em { font-style: italic; color: var(--accent-light); }
.hero__lead {
  margin: 0;
  max-width: 580px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
  color: #DCCFC9;
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 6px; }

.hero__trust {
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: var(--hero-fade-low);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero__trust-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(24px, 4vw, 54px);
}
.hero__trust span { font-size: 13.5px; letter-spacing: .08em; color: #E3D5CE; }
.stars { color: var(--star); letter-spacing: 2px; font-size: 15px; }
/* La note Google entière en jaune, étoiles comprises : c'est la preuve sociale
   la plus forte de la page. Attention, `.hero__trust span` (0,1,1) écrase
   `.stars` (0,1,0) — d'où la règle plus spécifique ci-dessous, sans quoi les
   étoiles ressortent en crème pâle et se lisent comme des étoiles vides. */
.hero__trust span.is-rating { color: var(--star); font-size: 14.5px; font-weight: 400; }
.hero__trust .stars { color: var(--star); }
/* Étoiles non acquises : jaune atténué plutôt que blanc, pour qu'elles se lisent
   comme « pas tout à fait 5 » et non comme un avis négatif. */
.stars .off { color: var(--star); opacity: .45; }

/* --- Carrousels ---------------------------------------------------------- */

.rail {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Pas de `-webkit-overflow-scrolling: touch` : hérité d'iOS ancien, sans
     effet aujourd'hui, et son inertie entre en conflit avec l'écriture
     programmatique de scrollLeft. */
}
.rail::-webkit-scrollbar { display: none; }
/* Le défilement programmatique est annulé par scroll-snap et par
   scroll-behavior:smooth — le handoff insiste sur ce point. */
[data-carousel] { scroll-behavior: auto !important; }

.gallery {
  gap: clamp(14px, 1.8vw, 24px);
  padding: 4px clamp(20px, 4vw, 44px) 20px;
}
.gallery__item {
  flex: 0 0 clamp(232px, 26vw, 330px);
  aspect-ratio: 3 / 4;
  border-radius: 200px 20px 200px 20px;
  overflow: hidden;
  position: relative;
  background: var(--placeholder, var(--cream-alt));
}
.gallery__item:nth-child(even) { border-radius: 20px 200px 20px 200px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px) clamp(20px, 3vw, 30px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.gallery-head h2 { font-weight: 300; font-size: clamp(28px, 3.6vw, 46px); line-height: 1.12; }
.gallery-head .mono { font-size: 12px; letter-spacing: .06em; color: var(--faint); }

/* Plus de repli en grille statique : site.js duplique les vignettes et les
   cartes d'avis jusqu'à dépasser la largeur, pour que le défilement
   fonctionne sur tous les sites quel que soit le nombre d'éléments. */

/* --- La maison / à propos ------------------------------------------------ */

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.about__text { display: flex; flex-direction: column; gap: 22px; }
.about__text p { margin: 0; font-size: 16.5px; line-height: 1.9; color: var(--muted); text-wrap: pretty; }
.about__figures { display: flex; flex-wrap: wrap; gap: 12px 40px; margin-top: 6px; }
.figure-key { display: flex; flex-direction: column; gap: 2px; }
.figure-key strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
}
.figure-key span { font-size: 13.5px; color: var(--faint); }
.about__photo {
  position: relative;
  aspect-ratio: 4 / 4.6;
  min-height: 340px;
  border-radius: 220px 220px 24px 24px;
  overflow: hidden;
  background: var(--placeholder, var(--cream-alt));
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Substituts photo (dégradés du design) ------------------------------- */

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(112deg, rgba(255, 255, 255, .09) 0 2px, rgba(255, 255, 255, 0) 2px 15px);
  pointer-events: none;
}
.ph__caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .8);
}

/* --- Prestations --------------------------------------------------------- */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: clamp(20px, 2.6vw, 34px); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(58, 46, 42, .13); }
.card__visual { position: relative; aspect-ratio: 4 / 3; background: var(--placeholder, var(--cream-alt)); overflow: hidden; }
.card__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__body { display: flex; flex-direction: column; gap: 14px; padding: 26px 24px 28px; flex: 1; }
.card__body h3 { font-weight: 500; font-size: 27px; }
.card__body p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--muted); flex: 1; text-wrap: pretty; }
.card__meta {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 14px;
  font-size: 14px;
  color: var(--faint);
  border-top: 1px solid var(--border-3);
  padding-top: 14px;
}
.card__meta dt { letter-spacing: .06em; }
.card__meta dd { margin: 0; color: var(--ink); text-align: right; }
.card__meta dd.is-price { color: var(--card-accent, var(--accent)); }
.card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.card__actions .btn { flex: 1 1 auto; }

/* Décline la carte sur sa famille de couleur. */
.card--f1 { --card-accent: var(--f1); --card-accent-dark: var(--f1-dark); --card-tint: var(--f1-tint); --card-border: var(--f1-border); --placeholder: linear-gradient(150deg, var(--f1-g1) 0%, var(--f1-g2) 48%, var(--f1-g3) 100%); }
.card--f2 { --card-accent: var(--f2); --card-accent-dark: var(--f2-dark); --card-tint: var(--f2-tint); --card-border: var(--f2-border); --placeholder: linear-gradient(150deg, var(--f2-g1) 0%, var(--f2-g2) 48%, var(--f2-g3) 100%); }
.card--f3 { --card-accent: var(--f3); --card-accent-dark: var(--f3-dark); --card-tint: var(--f3-tint); --card-border: var(--f3-border); --placeholder: linear-gradient(150deg, var(--f3-g1) 0%, var(--f3-g2) 48%, var(--f3-g3) 100%); }
.card--f4 { --card-accent: var(--f4); --card-accent-dark: var(--f4-dark); --card-tint: var(--f4-tint); --card-border: var(--f4-border); --placeholder: linear-gradient(150deg, var(--f4-g1) 0%, var(--f4-g2) 48%, var(--f4-g3) 100%); }

.card .btn.btn--primary { background: var(--card-accent, var(--accent)); }
.card .btn.btn--primary:hover { background: var(--card-accent-dark, var(--accent-dark)); box-shadow: none; }
.card .btn.btn--outline { color: var(--card-accent, var(--accent)); border-color: var(--card-border, var(--accent-border)); }
.card .btn.btn--outline:hover { background: var(--card-tint, var(--accent-tint)); border-color: var(--card-accent, var(--accent)); }

/* --- Tarifs -------------------------------------------------------------- */

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.6vw, 32px); }
.price-block {
  background: var(--cream-alt);
  border-radius: 20px;
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section--alt .price-block { background: var(--cream); }
.price-block h3 { font-weight: 500; font-size: 25px; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price-row__name { font-size: 15px; color: var(--muted-2); }
.price-row__dots { flex: 1; border-bottom: 1px dashed var(--dash); transform: translateY(-4px); }
.price-row__value { font-size: 15px; color: var(--block-accent, var(--accent)); white-space: nowrap; }
.price-row__duration { display: block; font-size: 12.5px; color: var(--faint); letter-spacing: .04em; }

.price-block--f1 { --block-accent: var(--f1); }
.price-block--f2 { --block-accent: var(--f2); }
.price-block--f3 { --block-accent: var(--f3); }
.price-block--f4 { --block-accent: var(--f4); }

.price-block--dark,
.section--alt .price-block--dark { background: var(--dark); color: var(--on-dark); }
.price-block--dark h3 { color: #FBF7F2; }
.price-block--dark p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--on-dark-faint); }
.price-block--dark .price-row__name { color: var(--on-dark); }
.price-block--dark .price-row__dots { border-bottom-color: var(--on-dark-border); }
.price-block--dark .price-row__value { color: var(--accent-light); }
.price-block--dark .btn { align-self: flex-start; margin-top: 6px; background: var(--accent-light); color: var(--dark); }
.price-block--dark .btn:hover { background: #FBF7F2; color: var(--dark); }

/* Liste de prestations sans tarif : mêmes blocs, colonne de droite neutre
   (on n'invente jamais un prix qui n'a pas été publié par le commerce). */
.price-row--nofee .price-row__dots { border-bottom-style: dotted; opacity: .55; }
.price-row--nofee .price-row__value { color: var(--faint); font-size: 13px; letter-spacing: .04em; }

/* --- Section « lampe torche » (argumentaire Digitale Solution) ------------ */

.torch {
  position: relative;
  overflow: hidden;
  background: var(--darker);
  min-height: min(560px, 86svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  cursor: crosshair;
  scroll-margin-top: calc(var(--topbar-h) + 10px);
}
.torch__bg { position: absolute; inset: 0; z-index: 0; }
.torch__bg img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.1) contrast(1.12); }
.torch__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--torch-tint-1), var(--torch-tint-2) 60%, var(--torch-tint-3));
}
.torch__in {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) clamp(20px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  text-align: center;
}
.torch__in .eyebrow { color: var(--accent-light); }
.torch__in h2 { font-weight: 300; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.12; color: #FBF7F2; text-wrap: balance; }
.torch__lead { margin: 0; max-width: 660px; font-size: 16.5px; line-height: 1.85; color: #E3D5CE; text-wrap: pretty; }
.torch__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; width: 100%; margin-top: 4px; }
.torch__card {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: rgba(255, 255, 255, .05);
  text-align: left;
}
.torch__card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--accent-light);
  line-height: 1.15;
}
.torch__card span { font-size: 15px; line-height: 1.7; color: #E3D5CE; }
.torch__hint { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.torch__blur {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  -webkit-backdrop-filter: blur(3.5px) saturate(.7) brightness(.92);
  backdrop-filter: blur(3.5px) saturate(.7) brightness(.92);
}
.torch__veil { position: absolute; inset: 0; z-index: 6; pointer-events: none; background: rgba(10, 7, 7, .94); }
.torch__vignette {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background: radial-gradient(130% 100% at 50% 50%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, .55) 100%);
}

/* --- Avis ---------------------------------------------------------------- */

.reviews { gap: clamp(18px, 2.4vw, 28px); padding: 4px 2px 20px; }
.review {
  flex: 0 0 clamp(260px, 25vw, 330px);
  margin: 0;
  background: var(--cream);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .4s, box-shadow .4s;
}
.review:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(58, 46, 42, .1); }
.review__quote { font-family: "Cormorant Garamond", Georgia, serif; font-size: 52px; line-height: .5; color: var(--accent-border); }
.review blockquote { margin: 0; font-size: 15.5px; line-height: 1.85; color: var(--muted-2); text-wrap: pretty; }
.review figcaption { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--border-3); padding-top: 14px; margin-top: auto; }
.review figcaption .name { font-size: 15px; color: var(--ink-title); }
.review figcaption .meta { font-size: 13px; color: var(--faint); }


/* --- Contact + plan (3e bloc de la page) --------------------------------- */

.contact-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}
.contact-block__text { display: flex; flex-direction: column; gap: 18px; }
.contact-block__text strong { font-weight: 500; color: var(--ink); }
.contact-block__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.contact-block__actions .btn { padding: 16px 28px; font-size: 13px; letter-spacing: .12em; }
.contact-block .map-wrap iframe { height: clamp(280px, 42vh, 400px); }

@media (max-width: 720px) {
  .contact-block__actions .btn { width: 100%; }
}

/* --- Encart d'appel à l'action ------------------------------------------- */

.cta-panel {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(140deg, var(--cream-alt) 0%, var(--accent-tint) 100%);
  border-radius: 26px;
  padding: clamp(38px, 6vw, 68px) clamp(26px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-panel__text { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.cta-panel__text h2 { font-weight: 300; font-size: clamp(30px, 3.8vw, 46px); line-height: 1.12; }
.cta-panel__actions { display: flex; flex-direction: column; gap: 12px; }
.cta-panel__actions .btn { padding: 19px 40px; }
.cta-panel__actions .btn.btn--outline { padding: 15px 30px; letter-spacing: .1em; text-transform: none; font-size: 14px; }

/* --- Infos (accueil) ----------------------------------------------------- */

.infos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(28px, 4vw, 52px); }
.infos-col { display: flex; flex-direction: column; gap: 14px; }
.infos-col p { margin: 0; font-size: 16px; line-height: 2; color: var(--muted-2); }
.infos-col p.note { font-size: 14px; line-height: 1.9; color: var(--faint); }
.infos-col a:not(.btn):not(.link-underline) { font-size: 16px; color: var(--muted-2); text-decoration: none; transition: color .3s; }
.infos-col a:not(.btn):not(.link-underline):hover { color: var(--accent); }
.infos-photo {
  position: relative;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--placeholder, var(--cream));
}
.infos-photo img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }

/* --- Bloc SEO local ------------------------------------------------------ */

.local { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 48px); }
.local__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: start; }
.local__main { display: flex; flex-direction: column; gap: 18px; }
.local__main p { margin: 0; font-size: 16.5px; line-height: 1.9; color: var(--muted); text-wrap: pretty; }
.local__main strong { font-weight: 500; color: var(--ink); }
.local__side { display: flex; flex-direction: column; gap: 22px; }
.local__group { display: flex; flex-direction: column; gap: 12px; }
.local__group + .local__group { border-top: 1px solid var(--border-3); padding-top: 20px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-size: 14px; color: var(--muted-2); background: var(--cream-alt); border-radius: 999px; padding: 9px 16px; }
.section--alt .pill { background: var(--cream); }
.local__links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.local__links a { font-size: 15px; color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent-border); padding-bottom: 2px; }
.local__links a:hover { border-color: var(--accent); }
.local figure { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.local__wide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--placeholder, var(--cream-alt));
}
.local__wide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.local figcaption { font-size: 13.5px; line-height: 1.7; color: var(--faint); }

/* --- Pied de page -------------------------------------------------------- */

.site-footer { background: var(--dark); color: var(--on-dark); }
.site-footer__cols {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 84px) clamp(20px, 4vw, 44px) 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}
.site-footer h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 500;
  color: #FBF7F2;
  letter-spacing: .02em;
}
.site-footer__col { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.site-footer p { margin: 0; font-size: 15px; line-height: 1.8; color: var(--on-dark-faint); text-wrap: pretty; }
.site-footer a { font-size: 15px; color: var(--on-dark-faint); text-decoration: none; transition: color .3s, padding-left .3s; }
.site-footer a:hover { color: var(--accent-light); padding-left: 5px; }
.site-footer__brand { max-width: 340px; }
.site-footer__brand .brand__name { color: #FBF7F2; font-size: 28px; white-space: normal; }
.site-footer__brand .brand__sub { color: var(--accent-light); white-space: normal; }
.chips { display: flex; gap: 14px; flex-wrap: wrap; }
.chips a {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark);
  border: 1px solid var(--on-dark-border);
  border-radius: 999px;
  padding: 9px 16px;
  transition: border-color .3s, color .3s;
}
.chips a:hover { color: var(--accent-light); border-color: var(--accent); padding-left: 16px; }
.site-footer__hours { font-size: 14px !important; line-height: 1.8; }
.site-footer__offer .btn:hover { padding-left: 38px; color: var(--dark); }

.site-footer__bottom { border-top: 1px solid var(--on-dark-line); }
.site-footer__bottom-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 26px;
}
.site-footer__bottom span,
.site-footer__bottom a { font-size: 13px; color: #7A6B65; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer__disclaimer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px) 26px;
  font-size: 12.5px !important;
  line-height: 1.75;
  color: #7A6B65 !important;
}
.site-footer__disclaimer a { font-size: 12.5px; color: #9C8B84; text-decoration: underline; }
.site-footer__disclaimer a:hover { padding-left: 0; }

/* --- Page « Infos pratiques » -------------------------------------------- */

.page-banner {
  background: var(--cream-alt);
  padding: calc(var(--topbar-h) + clamp(30px, 5vh, 56px)) clamp(20px, 4vw, 44px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
}
.page-banner__in { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.page-banner h1 { font-weight: 300; font-size: clamp(34px, 5.4vw, 62px); line-height: 1.06; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
}
.breadcrumb a { color: var(--faint); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .is-current { color: var(--ink); }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: clamp(24px, 3vw, 36px); }
.info-card {
  background: var(--cream-alt);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-card p { margin: 0; font-size: 16px; line-height: 1.9; color: var(--ink-title); }
.info-card p.note { font-size: 14.5px; line-height: 1.95; color: var(--muted-2); }
.info-card__rows { display: flex; flex-direction: column; gap: 11px; }
.info-card__foot { border-top: 1px solid var(--border-2); padding-top: 14px; font-size: 14px !important; color: var(--faint) !important; }
.info-card--dark { background: var(--dark); }
.info-card--dark .eyebrow { color: var(--accent-light); }
.info-card--dark p { color: var(--on-dark); }
.info-card--dark p.note { color: var(--on-dark-faint); }
.info-card--dark .tel {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: #FBF7F2;
  text-decoration: none;
  transition: color .3s;
}
.info-card--dark .tel:hover { color: var(--accent-light); }
.info-card--dark a:not(.btn):not(.tel) { font-size: 16px; color: var(--on-dark); text-decoration: none; transition: color .3s; }
.info-card--dark a:not(.btn):not(.tel):hover { color: var(--accent-light); }
.info-card--dark .btn { margin-top: auto; background: var(--accent-light); color: var(--dark); }
.info-card--dark .btn:hover { background: #FBF7F2; color: var(--dark); }

.map-wrap { position: relative; border-radius: 22px; overflow: hidden; background: var(--cream-alt); }
/* Repli visible tant que l'iframe Google n'a pas chargé (ou si le visiteur la
   bloque) : sans lui, le filtre sombre affiche un grand rectangle noir. */
.map-wrap__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: var(--faint);
}
.map-wrap__fallback .eyebrow { color: var(--accent); }
/* Le repli n'est plus decoratif : il porte le bouton de chargement de la carte,
   donc il doit rester cliquable et occuper la hauteur qu'occupait l'iframe. */
.map-wrap { min-height: clamp(320px, 52vh, 520px); }
.map-wrap__fallback[hidden] { display: none; }
.map-wrap__load {
  margin-top: 6px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font: 600 15px/1 inherit;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.map-wrap__load:hover { background: var(--accent); color: var(--dark); }
.map-wrap__note { font-size: 13px !important; line-height: 1.6 !important; max-width: 34ch; opacity: .75; }
.map-wrap__fallback span:last-child { font-size: 16px; line-height: 1.8; color: var(--muted-2); }
.map-wrap iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: clamp(320px, 52vh, 520px);
  border: 0;
  background: transparent;
  filter: invert(.9) hue-rotate(178deg) saturate(.72) brightness(.94) contrast(1.06);
}
.map-wrap__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 22px 18px;
  font-size: 13.5px;
  color: #FBF7F2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .68));
  pointer-events: none;
}

/* --- Formulaires --------------------------------------------------------- */

.form-panel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream-alt);
  border-radius: 26px;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 52px);
}
.section--alt .form-panel { background: var(--cream); }
.form-panel__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(26px, 4vw, 38px); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.field input,
.field textarea,
.field select {
  font-family: Jost, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 15px 14px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--accent); }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; grid-column: 1 / -1; }
.field--check input { width: auto; margin-top: 3px; }
.field--check label { text-transform: none; letter-spacing: 0; font-size: 14px; line-height: 1.7; color: var(--muted); }
.form-actions { grid-column: 1 / -1; margin-top: 6px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-done {
  display: none;
  border: 1px solid var(--accent-border);
  border-left: 2px solid var(--accent);
  border-radius: 12px;
  padding: 26px 24px;
  background: var(--cream);
}
.section--alt .form-done { background: var(--cream-alt); }
.form-done h3 { font-size: 26px; font-weight: 500; margin-bottom: 10px; }
.form-done p { margin: 0; font-size: 15.5px; line-height: 1.8; color: var(--muted); }
.is-sent .form-done { display: block; }
.is-sent form { display: none; }

.form-legal { margin: 18px 0 0; font-size: 12.5px; line-height: 1.7; color: var(--faint); }

/* --- Apparition au scroll ------------------------------------------------ */
/* L'état masqué est posé par site.js, jamais par le CSS : sans JS, la page
   reste entièrement lisible. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* --- Ajustements mobiles ------------------------------------------------- */

@media (max-width: 720px) {
  .hero { min-height: 92svh; }
  .cta-panel__actions { width: 100%; }
  .cta-panel__actions .btn { width: 100%; }
  .gallery__item { flex-basis: 74vw; }
  .review { flex-basis: 80vw; }
  .preview-bar__in { font-size: 12.5px; }
  .torch__card { text-align: center; align-items: center; }
}
