/* Dermoskin, épilation laser et soins de la peau, Agdal, Rabat
   Design system. Colours come from the client's kit, exactly:
   Vert sauge #7E8F6A, Sauge clair #C9D3BE, Beige naturel #EDE8DF,
   Sable élégant #D6CBB6, Blanc #FFFFFF.
   One derived ink, --encre, a deep sage-olive for text, buttons and the dark
   band: the kit names sable as its text colour, which reads at 1.3:1 on beige.
   Playfair Display (kit, titles and nav), Manrope (text and buttons, the kit's
   Montserrat is kept off on purpose), Allura (the closest web script to the
   « Glow within » of their logo, for the script lines).
   Motifs: the logo's « Glow within » written on load in the hero, and a single
   line olive branch drawn in two places (closing band, booking modal).
   Nothing on this site is hidden on load: no opacity:0, no scroll reveal. */

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* kit */
  --sauge: #7E8F6A;
  --sauge-clair: #C9D3BE;
  --beige: #EDE8DF;
  --sable: #D6CBB6;
  --blanc: #FFFFFF;
  /* derived, contrast measured */
  --encre: #3B4432;          /* text on beige 8.4:1, on white 9.9:1 */
  --meta: #5A6650;           /* small text: 5.0:1 on beige, 6.1:1 on white */
  --sauge-texte: #6B7B58;    /* large script and labels: 3.7:1 on beige */
  --beige-clair: #F6F3EE;
  --filet: rgba(59, 68, 50, .14);
  --filet-fort: rgba(59, 68, 50, .55);
  --filet-clair: rgba(237, 232, 223, .26);

  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --script: "Allura", "Snell Roundhand", cursive;

  --wrap: 1220px;
  --gout: clamp(20px, 5vw, 56px);
  --section: clamp(76px, 9vw, 124px);
  --nav-h: 84px;
  --r: 2px;
  --t: .3s ease;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--beige);
  color: var(--encre);
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { display: block; }
[hidden] { display: none !important; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.12; }
ul { margin: 0; padding: 0; list-style: none; }
figure, blockquote { margin: 0; }
.tel { white-space: nowrap; }
:focus-visible { outline: 2px solid var(--sauge); outline-offset: 3px; }

.saut { position: absolute; left: -9999px; top: 8px; z-index: 200; padding: 10px 16px; background: var(--encre); color: var(--blanc); }
.saut:focus { left: 8px; }

/* ------------------------------------------------------------ typographie -- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gout); }
.section { padding: var(--section) 0; }
.section--blanc { background: var(--blanc); }
.section--sauge { background: var(--sauge-clair); }

.h1 { font-size: clamp(2.7rem, 6vw, 5rem); letter-spacing: -.005em; }
.h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -.005em; }
.scr { display: block; margin: 0 0 6px; font-family: var(--script); font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: 1.05; color: var(--sauge-texte); }
.lead { max-width: 56ch; color: var(--meta); font-size: 1.05rem; line-height: 1.7; }

.tete-section { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px 40px; margin-bottom: clamp(34px, 4vw, 52px); }
.tete-section .lead { margin: 14px 0 0; }

/* ------------------------------------------------------------------ boutons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 14px 28px;
  font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  border: 1px solid var(--encre); border-radius: var(--r);
  transition: background-color var(--t), border-color var(--t), color var(--t);
}
.btn--encre { background: var(--encre); color: var(--blanc); }
.btn--encre:hover { background: var(--sauge); border-color: var(--sauge); }
.btn--ligne { background: transparent; color: var(--encre); }
.btn--ligne:hover { background: var(--encre); color: var(--blanc); }
.btn--clair { background: var(--beige-clair); border-color: var(--beige-clair); color: var(--encre); }
.btn--clair:hover { background: var(--sauge-clair); border-color: var(--sauge-clair); }
.btn--ligne-clair { background: transparent; border-color: rgba(246, 243, 238, .75); color: var(--beige-clair); }
.btn--ligne-clair:hover { background: var(--beige-clair); color: var(--encre); }
.btn svg { display: block; flex: none; width: 17px; height: 17px; }

.lienfleche {
  display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--filet-fort); transition: border-color var(--t);
}
.lienfleche svg { display: block; width: 20px; height: 9px; transition: transform .3s ease; }
.lienfleche:hover { border-color: var(--sauge); }
.lienfleche:hover svg { transform: translateX(6px); }

/* ------------------------------------------------------------------- nav -- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
  padding: 14px var(--gout);
  background: linear-gradient(to bottom, rgba(24, 28, 20, .52), rgba(24, 28, 20, .18) 65%, rgba(24, 28, 20, 0));
  transition: background-color var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled { background: var(--beige-clair); box-shadow: 0 1px 0 var(--filet); padding-top: 9px; padding-bottom: 9px; }

.nav__brand { position: relative; z-index: 120; justify-self: start; display: block; line-height: 0; }
/* the lockup is 2069x598: the height is set, the width follows (40px = 138px wide) */
.nav__logo { width: auto; height: 40px; max-width: none; transition: height var(--t); }
.nav.scrolled .nav__logo { height: 34px; }
.nav__logo--sauge { display: none; }
.nav__logo--ivoire { filter: drop-shadow(0 1px 6px rgba(0, 0, 0, .35)); }
.nav.scrolled .nav__logo--ivoire, .nav.menu-open .nav__logo--ivoire { display: none; }
.nav.scrolled .nav__logo--sauge, .nav.menu-open .nav__logo--sauge { display: block; }

.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 36px); }
.nav__links a {
  font-family: var(--display); font-size: .9rem; color: var(--encre); text-decoration: none;
  padding: 4px 0; border-bottom: 1px solid transparent; transition: border-color var(--t), color var(--t);
}
.nav__links a:hover, .nav__links a.active { border-bottom-color: var(--sauge); }

.nav__end { position: relative; z-index: 120; justify-self: end; display: flex; align-items: center; gap: 14px; }
.nav__cta { min-height: 44px; padding: 11px 20px; font-size: .68rem; }
.nav__cta--menu { display: none; }

.nav__burger {
  display: none; width: 44px; height: 44px; padding: 0; background: transparent;
  border: 1px solid rgba(246, 243, 238, .65); border-radius: var(--r); cursor: pointer;
}
.nav__burger span { display: block; width: 18px; height: 1.5px; margin: 4px auto; background: var(--beige-clair); transition: transform var(--t), opacity var(--t); }
.nav.scrolled .nav__burger, .nav.menu-open .nav__burger { border-color: var(--filet-fort); }
.nav.scrolled .nav__burger span, .nav.menu-open .nav__burger span { background: var(--encre); }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (min-width: 1081px) {
  .nav:not(.scrolled) .nav__links a { color: var(--beige-clair); }
  .nav:not(.scrolled) .nav__links a:hover, .nav:not(.scrolled) .nav__links a.active { border-bottom-color: var(--sauge-clair); }
  .nav:not(.scrolled) .nav__cta--bar { background: var(--beige-clair); border-color: var(--beige-clair); color: var(--encre); }
  .nav:not(.scrolled) .nav__cta--bar:hover { background: var(--sauge-clair); border-color: var(--sauge-clair); }
}

/* ------------------------------------------------------------ the motifs -- */
/* « Glow within », the script of their logo, written left to right on load.
   The clip sits on the <img> itself; nothing observes it, so it cannot stall. */
.glow-trace { animation: glow-ecrit 2.2s .35s cubic-bezier(.55, .1, .25, 1) both; }
@keyframes glow-ecrit { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }

/* the olive branch: stroke only, drawn from its root to its tip.
   The clip animates the whole <svg>, never a path inside it (Chrome drops it). */
.branche { display: block; width: 100%; height: auto; overflow: visible; }
.branche path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.branche .branche__nervures { stroke-width: .9; }
.branche-trace .branche { animation: branche-pousse 2s .3s cubic-bezier(.6, .1, .2, 1) both; }
@keyframes branche-pousse { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(-4% -4% -4% -4%); } }

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
  min-height: 640px; min-height: clamp(640px, 100vh, 1000px); min-height: clamp(640px, 100svh, 1000px);
  background: #6B6E5E center / cover no-repeat;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 56% at 50% 54%, rgba(28, 32, 22, .6), rgba(28, 32, 22, .3) 70%, rgba(28, 32, 22, .2)),
    linear-gradient(to top, rgba(28, 32, 22, .42), rgba(28, 32, 22, 0) 34%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: 1040px; margin: 0 auto;
  padding: calc(var(--nav-h) + 24px) var(--gout) 72px; text-align: center;
}
.hero__titre { max-width: 15ch; margin: 0 auto; color: var(--beige-clair); text-shadow: 0 2px 30px rgba(20, 24, 16, .32); }
.hero__glow { width: clamp(220px, 30vw, 360px); height: auto; margin: 10px auto 0; filter: drop-shadow(0 1px 8px rgba(20, 24, 16, .35)); }
.hero__sub { margin: 14px auto 0; max-width: 40ch; color: rgba(246, 243, 238, .96); text-shadow: 0 1px 14px rgba(20, 24, 16, .5); font-size: 1.08rem; line-height: 1.7; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }

/* the text rises into place; it is never transparent at any point */
.monte { animation: monte .9s cubic-bezier(.2, .7, .2, 1) both; }
.monte--2 { animation-delay: .12s; }
.monte--3 { animation-delay: .24s; }
@keyframes monte { from { transform: translateY(16px); } to { transform: none; } }

/* --------------------------------------------------- tête de page, photo -- */
.tete { position: relative; min-height: 54vh; min-height: 54svh; display: flex; align-items: flex-end; overflow: hidden; background: #55604A; }
.tete__media { position: absolute; inset: 0; }
.tete__media img { width: 100%; height: 100%; object-fit: cover; }
.tete::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(33, 38, 27, .76) 0%, rgba(33, 38, 27, .45) 44%, rgba(33, 38, 27, .08) 78%),
    linear-gradient(to bottom, rgba(24, 28, 20, .45), rgba(24, 28, 20, 0) 34%);
}
.tete__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 150px var(--gout) clamp(46px, 5vw, 70px); }
.tete .scr { color: var(--sauge-clair); }
.tete .h1 { color: var(--beige-clair); font-size: clamp(2.6rem, 5.2vw, 4.3rem); max-width: 16ch; }
.tete__sub { margin: 16px 0 0; max-width: 48ch; color: rgba(246, 243, 238, .93); font-size: 1.04rem; }

/* ------------------------------------------------------------ bandeau faits -- */
.faits { background: var(--sauge-clair); }
.faits__row { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fait { display: flex; align-items: flex-start; gap: 16px; padding: 28px clamp(18px, 2.4vw, 34px); }
.fait + .fait { border-left: 1px solid rgba(59, 68, 50, .2); }
.fait svg { display: block; flex: none; width: 22px; height: 22px; color: var(--encre); margin-top: 3px; }
.fait__k { margin: 0 0 3px; color: var(--encre); font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.fait__v { margin: 0; font-family: var(--display); font-size: 1.1rem; line-height: 1.45; }

/* ------------------------------------------------------------- les icônes -- */
/* the kit draws its services as sage line icons in a pale sage disc */
.ico { display: flex; align-items: center; justify-content: center; flex: none; width: 62px; height: 62px; border-radius: 50%; background: var(--sauge-clair); }
.ico svg { display: block; width: 38px; height: 38px; color: var(--encre); }
.section--sauge .ico { background: var(--beige-clair); }
.section--sauge .scr { color: var(--meta); }   /* 3.9:1 on sauge clair, the script is large */

/* -------------------------------------------------------- index des soins -- */
.index { border-top: 1px solid var(--filet-fort); }
.index__row {
  position: relative; display: grid; grid-template-columns: 40px 62px minmax(0, 1fr) auto; gap: clamp(14px, 2.4vw, 34px); align-items: center;
  padding: clamp(20px, 2.4vw, 28px) 0; border-bottom: 1px solid var(--filet); text-decoration: none; color: var(--encre);
  transition: padding-left .35s ease;
}
.index__row:hover { padding-left: 14px; }
.num { font-family: var(--display); font-size: .95rem; color: var(--meta); }
.index__nom { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(1.28rem, 2.1vw, 1.66rem); line-height: 1.2; }
.index__det { margin: 4px 0 0; color: var(--meta); font-size: .93rem; line-height: 1.55; max-width: 54ch; }
.index__prix { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 1.1rem; white-space: nowrap; }
.index__prix i { font-family: var(--sans); font-style: normal; font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--meta); }
.index__prix svg { display: block; width: 20px; height: 9px; transition: transform .3s ease; }
.index__row:hover .index__prix svg { transform: translateX(6px); }
.index__vue {
  position: absolute; right: 180px; top: 50%; width: 168px; height: 210px; transform: translateY(-50%) scale(.94); opacity: 0;
  pointer-events: none; border: 6px solid var(--blanc); border-radius: var(--r); box-shadow: 0 18px 44px rgba(33, 38, 27, .2); overflow: hidden;
  transition: opacity .35s ease, transform .35s ease;
}
.index__vue img { width: 100%; height: 100%; object-fit: cover; }
.index__row:hover .index__vue { opacity: 1; transform: translateY(-50%) scale(1); }
@media (hover: none) { .index__vue { display: none; } }
.index__pied { margin-top: 34px; text-align: center; }

/* ----------------------------------------------------- tuiles vivantes ---- */
.tuiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 22px); }
.tuile { position: relative; display: block; overflow: hidden; border-radius: var(--r); background: var(--sable); text-decoration: none; color: var(--beige-clair); }
.tuile__m { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s ease; }
.tuile:hover .tuile__m { transform: scale(1.04); }
.tuile__ig { position: absolute; top: 12px; right: 12px; z-index: 2; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(246, 243, 238, .92); color: var(--encre); }
.tuile__ig svg { display: block; width: 16px; height: 16px; }
.tuile__leg {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 46px 16px 14px;
  background: linear-gradient(to top, rgba(28, 32, 22, .74), rgba(28, 32, 22, 0));
  font-family: var(--display); font-size: 1.04rem; line-height: 1.3;
}
.tuiles__pied { margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 36px; }
.ig-compte { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-decoration: none; }
.ig-compte svg { display: block; width: 19px; height: 19px; }
.ig-compte:hover { color: var(--sauge-texte); }

/* the offers: a live tile over a white card carrying the price */
.offre { display: flex; flex-direction: column; background: var(--blanc); border-radius: var(--r); overflow: hidden; }
.offre .tuile { border-radius: 0; }
.offre__corps { display: flex; flex-direction: column; flex: 1 1 auto; padding: 18px 18px 20px; }
.offre__nom { margin: 0; font-family: var(--display); font-size: 1.1rem; line-height: 1.3; }
.offre__det { margin: 4px 0 0; color: var(--meta); font-size: .86rem; line-height: 1.5; }
.offre__prix { margin: 12px 0 14px; font-family: var(--display); font-size: 1.55rem; line-height: 1; }
.offre__prix small { font-family: var(--sans); font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--meta); }
.offre__actions { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 14px; }
.offre__actions .btn { min-height: 42px; padding: 10px 16px; font-size: .66rem; }
.offre__lien { font-size: .8rem; color: var(--meta); text-decoration: underline; text-underline-offset: 3px; }
.offre__lien:hover { color: var(--encre); }
.note { margin: 26px 0 0; color: var(--meta); font-size: .86rem; text-align: center; }

/* ------------------------------------------------------ cartes conseils --- */
.cartes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.carte { display: flex; flex-direction: column; background: var(--blanc); border-radius: var(--r); text-decoration: none; color: var(--encre); overflow: hidden; }
.carte__img { display: block; overflow: hidden; }
.carte__img img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s ease; }
.carte:hover .carte__img img { transform: scale(1.04); }
.carte__corps { padding: 20px 22px 24px; }
.carte__corps .scr { font-size: 1.7rem; margin-bottom: 4px; }
.carte__t { margin: 0; font-family: var(--display); font-size: 1.24rem; line-height: 1.3; }

/* ------------------------------------------------------- bande de clôture -- */
.fin { position: relative; overflow: hidden; background: var(--encre); color: var(--beige-clair); text-align: center; }
.fin__in { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: clamp(80px, 9vw, 120px) var(--gout); }
.fin__branche { width: clamp(190px, 22vw, 260px); margin: 0 auto 20px; color: var(--sauge-clair); }
.fin .h2 { color: var(--beige-clair); }
.fin p { margin: 16px auto 0; max-width: 46ch; color: rgba(246, 243, 238, .86); }
.fin__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }

/* ------------------------------------------------------------------ footer -- */
.pied { background: #2F3628; color: rgba(246, 243, 238, .8); }
.pied__haut { max-width: var(--wrap); margin: 0 auto; padding: clamp(60px, 7vw, 88px) var(--gout) clamp(40px, 4vw, 56px); display: grid; grid-template-columns: 1.1fr .8fr 1.1fr; gap: clamp(34px, 4vw, 64px); }
.pied__logo { width: auto; height: 58px; max-width: none; }
.pied__slogan { margin: 18px 0 0; max-width: 30ch; font-size: .92rem; color: rgba(246, 243, 238, .72); }
.pied__h { margin: 0 0 18px; color: var(--beige-clair); font-family: var(--display); font-size: 1.12rem; font-weight: 400; }
.pied ul { display: grid; gap: 11px; }
.pied a { color: rgba(246, 243, 238, .82); text-decoration: none; font-size: .94rem; }
.pied a:hover { color: var(--sauge-clair); }
.pied__contact li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: .94rem; line-height: 1.55; }
.pied__contact svg { display: block; flex: none; width: 17px; height: 17px; color: var(--sauge-clair); margin-top: 4px; }
.pied__bas { border-top: 1px solid rgba(201, 211, 190, .22); }
.pied__bas-in { max-width: var(--wrap); margin: 0 auto; padding: 22px var(--gout); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .8rem; }
.pied__bas a { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; }
.pied__bas a:hover { text-decoration: none; color: var(--sauge-clair); }

/* ============================================================ page soins === */
.sommaire { position: sticky; top: 64px; z-index: 20; background: var(--beige); border-bottom: 1px solid var(--filet); }
.sommaire__in { max-width: var(--wrap); margin: 0 auto; padding: 12px var(--gout); display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.sommaire__in::-webkit-scrollbar { display: none; }
.sommaire a { flex: none; padding: 8px 16px; border: 1px solid var(--filet-fort); border-radius: 40px; font-size: .8rem; font-weight: 500; text-decoration: none; white-space: nowrap; }
.sommaire a:hover { background: var(--encre); border-color: var(--encre); color: var(--blanc); }

.famille { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(30px, 5vw, 80px); padding: clamp(56px, 6vw, 86px) 0; border-top: 1px solid var(--filet); scroll-margin-top: 120px; }
.famille:first-child { border-top: 0; }
.famille__aside { align-self: start; position: sticky; top: 140px; }
.famille__aside .ico { margin-bottom: 20px; }
.famille__aside .num { display: block; margin-bottom: 6px; }
.famille__titre { margin: 0; font-family: var(--script); font-weight: 400; font-size: clamp(2.6rem, 4.4vw, 3.5rem); line-height: 1; color: var(--sauge-texte); }
.famille__aside p { margin: 14px 0 22px; color: var(--meta); max-width: 36ch; }

.tarifs { border-top: 1px solid var(--filet-fort); }
.tarif {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 24px; align-items: baseline; width: 100%;
  padding: 18px 4px; background: transparent; border: 0; border-bottom: 1px solid var(--filet);
  text-align: left; color: var(--encre); cursor: pointer; transition: background-color var(--t), padding var(--t);
}
.tarif:hover { background: var(--beige-clair); padding-left: 12px; padding-right: 12px; }
.tarif__n { font-size: 1rem; font-weight: 500; line-height: 1.4; }
.tarif__n small { display: block; margin-top: 2px; font-size: .84rem; font-weight: 400; color: var(--meta); }
.tarif__p { font-family: var(--display); font-size: 1.14rem; white-space: nowrap; text-align: right; }
.tarif__p i { font-family: var(--sans); font-style: normal; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--meta); margin-right: 6px; }
.tarif__p--devis { font-family: var(--sans); font-size: .8rem; font-weight: 500; color: var(--meta); }
.tarifs__note { margin: 40px 0 0; padding: 18px 20px; background: var(--beige-clair); border-left: 2px solid var(--sauge); color: var(--meta); font-size: .92rem; }

/* ========================================================== page galerie === */
.grille { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 22px); }

/* ========================================================= page conseils === */
.theme { padding: clamp(56px, 6vw, 84px) 0; border-top: 1px solid var(--filet); }
.theme:first-child { border-top: 0; padding-top: 0; }
.theme__t { margin: 0 0 clamp(26px, 3vw, 38px); font-family: var(--script); font-weight: 400; font-size: clamp(2.6rem, 4.4vw, 3.4rem); line-height: 1; color: var(--sauge-texte); }
.fiches { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.2vw, 30px); align-items: start; }
/* their posts are designed carousels: shown whole, never cropped at the sides */
.fiche { display: flex; flex-direction: column; background: var(--blanc); border-radius: var(--r); overflow: hidden; scroll-margin-top: 110px; }
.fiche__img { position: relative; display: block; overflow: hidden; background: var(--sable); }
.fiche__img img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s ease; }
.fiche__img:hover img { transform: scale(1.04); }
.fiche__duree { position: absolute; left: 10px; bottom: 10px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; border-radius: 20px; background: rgba(33, 38, 27, .78); color: var(--beige-clair); font-size: .72rem; font-weight: 600; }
.fiche__duree svg { display: block; width: 9px; height: 9px; fill: currentColor; }
.fiche__corps { display: flex; flex-direction: column; padding: 24px 24px 22px; }
.fiche__n { font-family: var(--display); font-size: .9rem; color: var(--meta); }
.fiche__t { margin: 4px 0 10px; font-family: var(--display); font-size: 1.3rem; line-height: 1.28; }
.fiche__d { margin: 0 0 12px; color: var(--meta); font-size: .93rem; line-height: 1.6; }
.puces { display: grid; gap: 6px; margin: 0 0 18px; font-size: .92rem; line-height: 1.5; }
.puces li { position: relative; padding-left: 18px; }
.puces li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; border: 1.3px solid var(--sauge); }
.fiche__actions { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
.fiche__actions .btn { min-height: 42px; padding: 10px 16px; font-size: .66rem; }

/* ======================================================== page à propos === */
.apropos { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.apropos__texte p { font-size: 1.04rem; }
.apropos__texte .h2 { margin-bottom: 22px; }
.appareils { margin: 30px 0 0; display: grid; gap: 0; border-top: 1px solid var(--filet-fort); }
.appareils div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--filet); }
.appareils dt { font-family: var(--display); font-size: 1.1rem; }
.appareils dd { margin: 0; color: var(--meta); font-size: .9rem; text-align: right; }
.valeurs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 32px); }
.valeur { padding: 30px 28px 32px; background: var(--blanc); border-radius: var(--r); }
.valeur .ico { margin-bottom: 18px; }
.valeur h3 { font-size: 1.3rem; margin-bottom: 8px; }
.valeur p { margin: 0; color: var(--meta); font-size: .95rem; }
.apropos__photo { position: relative; padding: 0 0 26px 26px; }
.apropos__photo::before { content: ""; position: absolute; left: 0; bottom: 0; width: 64%; height: 70%; background: var(--sauge-clair); border-radius: var(--r); }
.apropos__photo img { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r); }

/* ========================================================== page contact === */
.contact { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 5vw, 80px); align-items: start; }
.infos { display: grid; gap: 0; border-top: 1px solid var(--filet-fort); }
.info { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--filet); }
.info svg { display: block; width: 20px; height: 20px; margin-top: 3px; color: var(--sauge-texte); }
.info__k { margin: 0 0 2px; color: var(--meta); font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.info__v { margin: 0; font-family: var(--display); font-size: 1.14rem; line-height: 1.45; }
.info__v a { text-decoration: none; }
.info__v a:hover { color: var(--sauge-texte); }
.info__v small { display: block; font-family: var(--sans); font-size: .88rem; color: var(--meta); }
.contact__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.carte-map { position: relative; min-height: 460px; height: 100%; border-radius: var(--r); overflow: hidden; background: var(--sable); }
.carte-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ================================================== modale de réservation ==
   Scroll architecture from .claude/rules/booking-modal.md §1, verbatim. Only the
   colours, radius and fonts belong to this site.                              */
.rsv { position: fixed; inset: 0; z-index: 140; display: flex; align-items: flex-start; justify-content: center;
  padding: 24px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  visibility: hidden; opacity: 0; transition: opacity .25s ease, visibility .25s ease; }
.rsv.is-open { visibility: visible; opacity: 1; }
.rsv__backdrop { position: fixed; inset: 0; background: rgba(24, 28, 20, .62); }
.rsv__card { position: relative; display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); grid-template-rows: minmax(0, 1fr);
  width: min(960px, calc(100vw - 40px)); margin: auto;
  max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px);
  overflow: hidden; background: var(--beige-clair); border-radius: var(--r); box-shadow: 0 30px 90px rgba(24, 28, 20, .35); }
.rsv__aside { min-height: 0; overflow-y: auto; position: relative; isolation: isolate; background: var(--encre); color: var(--beige-clair); padding: 40px 34px; display: flex; flex-direction: column; }
.rsv__aside-img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.rsv__aside::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(33, 38, 27, .94), rgba(33, 38, 27, .66) 58%, rgba(33, 38, 27, .4)); }
.rsv__body { display: flex; flex-direction: column; overflow-y: auto; min-height: 0; -webkit-overflow-scrolling: touch; padding: 38px 36px 30px; }
.rsv__body > * { flex-shrink: 0; }

.rsv__close { position: absolute; top: 10px; right: 10px; z-index: 3; width: 42px; height: 42px; border: 1px solid var(--filet); background: var(--blanc); font-size: 1.7rem; line-height: 1; color: var(--encre); cursor: pointer; border-radius: var(--r); }
.rsv__close:hover { background: var(--sauge-clair); }
.rsv__mark { width: 150px; height: auto; margin: 0 0 auto; }
.rsv__branche { width: 150px; margin: 30px 0 4px; color: var(--sauge-clair); }
.rsv__aside .rsv__h { margin: 0 0 14px; font-family: var(--script); font-size: 3rem; line-height: 1.05; color: var(--beige-clair); }
.rsv__aside p { margin: 0 0 14px; font-size: .92rem; line-height: 1.6; color: rgba(246, 243, 238, .92); }
.rsv__steps { display: flex; gap: 8px; margin-top: 6px; }
.rsv__steps i { display: block; width: 36px; height: 2px; background: rgba(246, 243, 238, .3); transition: background var(--t); }
.rsv__steps i.on { background: var(--sauge-clair); }

.rsv__lbl { display: block; margin: 0 0 12px; color: var(--meta); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.rsv__packs { display: block; border-top: 1px solid var(--filet-fort); max-height: 340px; overflow-y: auto; }
.rsv__grp { display: flex; align-items: center; gap: 12px; width: 100%; padding: 13px 6px 11px 2px; background: transparent; border: 0; border-bottom: 1px solid var(--filet); cursor: pointer; text-align: left; color: var(--encre); }
.rsv__grp-t { flex: 1 1 auto; font-family: var(--display); font-size: 1.1rem; line-height: 1.2; }
.rsv__grp-n { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 7px; border-radius: 12px; background: var(--encre); color: var(--blanc); font-family: var(--sans); font-size: .74rem; font-weight: 600; }
.rsv__grp-c { flex: none; width: 10px; height: 10px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-3px) rotate(45deg); transition: transform var(--t); }
.rsv__grp[aria-expanded="true"] .rsv__grp-c { transform: translateY(2px) rotate(-135deg); }
.rsv__grp:hover .rsv__grp-t { color: var(--sauge-texte); }
.rsv__pack { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; gap: 14px; align-items: center; width: 100%;
  padding: 12px 6px 12px 4px; background: transparent; border: 0; border-bottom: 1px solid var(--filet);
  text-align: left; color: var(--encre); cursor: pointer; transition: background-color var(--t); }
.rsv__pack:hover { background: var(--beige); }
.rsv__box { display: block; position: relative; width: 18px; height: 18px; border: 1px solid rgba(59, 68, 50, .5); border-radius: var(--r); transition: background-color var(--t), border-color var(--t); }
.rsv__pack[aria-pressed="true"] { background: var(--beige); }
.rsv__pack[aria-pressed="true"] .rsv__box { background: var(--encre); border-color: var(--encre); }
.rsv__pack[aria-pressed="true"] .rsv__box::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid var(--blanc); border-width: 0 1.6px 1.6px 0; transform: rotate(45deg); }
.rsv__pack-n { font-size: .95rem; line-height: 1.35; }
.rsv__pack-n small { display: block; margin-top: 2px; font-size: .78rem; color: var(--meta); }
.rsv__pack-p { font-family: var(--display); font-size: .98rem; white-space: nowrap; text-align: right; }
.rsv__compte { margin: 12px 0 22px; font-size: .86rem; color: var(--meta); }

.rsv__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 18px; margin-bottom: 20px; }
.rsv__field label { display: block; margin: 0 0 9px; color: var(--meta); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.rsv__field input[type="date"] { -webkit-appearance: none; appearance: none; width: 100%;
  min-height: 48px; line-height: 1.3; padding: 0 14px; font: inherit; font-size: 16px; color: var(--encre);
  background: var(--blanc); border: 1px solid var(--filet-fort); border-radius: var(--r); }
.rsv__field input[type="date"]::-webkit-date-and-time-value { text-align: left; margin: 0; }
.rsv__field input[type="date"]::-webkit-calendar-picker-indicator { opacity: .55; cursor: pointer; }
.rsv__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.rsv__chip { min-height: 48px; padding: 0 13px; border: 1px solid var(--filet-fort); background: var(--blanc); border-radius: var(--r);
  font-size: .86rem; color: var(--encre); cursor: pointer; transition: background-color var(--t), color var(--t), border-color var(--t); }
.rsv__chip[aria-pressed="true"] { background: var(--encre); border-color: var(--encre); color: var(--blanc); }

.rsv__recap { margin: 0 0 16px; padding: 14px 16px; background: var(--blanc); border-left: 2px solid var(--sauge); font-size: .92rem; line-height: 1.55; }
.rsv__recap b { font-family: var(--display); font-weight: 400; font-size: 1.04rem; }
.rsv__total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 0; border-top: 1px solid var(--filet-fort); border-bottom: 1px solid var(--filet); }
.rsv__total span:first-child { color: var(--meta); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.rsv__total span:last-child { font-family: var(--display); font-size: 1.4rem; text-align: right; }
.rsv__hint { margin: 12px 0 18px; min-height: 1.4em; font-size: .88rem; color: var(--meta); }
.rsv__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.rsv__actions .btn { flex: 1 1 200px; min-width: 0; }
.rsv__actions .btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }
.rsv__note { margin: 18px 0 0; font-size: .84rem; color: var(--meta); }
body.rsv-open { overflow: hidden; }

/* ------------------------------------------------------------ responsive --- */
@media (max-width: 1080px) {
  /* two tracks once the links leave the flow, or the burger lands mid-bar */
  .nav { grid-template-columns: 1fr auto; }
  .nav__cta--bar { display: none; }
  .nav__cta--menu { display: inline-flex; margin-top: 12px; }
  .nav__burger { display: block; }
  .nav__links {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center; gap: 24px;
    background: var(--beige-clair);
    transform: translateX(100%); visibility: hidden;
    transition: transform .35s ease, visibility .35s ease; z-index: 100;
  }
  .nav__links.nav-open { transform: translateX(0); visibility: visible; }
  .nav__links a { font-size: 1.6rem; color: var(--encre); }
  .nav.menu-open { background: var(--beige-clair); box-shadow: none; }

  .tuiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cartes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .index__vue { display: none; }
  .pied__haut { grid-template-columns: 1fr 1fr; }
  .famille { grid-template-columns: 1fr; }
  .famille__aside { position: static; display: grid; grid-template-columns: auto 1fr; gap: 0 22px; align-items: center; }
  .famille__aside .ico { grid-row: span 2; margin: 0; }
  .famille__aside .num { margin: 0; align-self: end; }
  .famille__aside .famille__titre { align-self: start; }
  .famille__aside p, .famille__aside .btn { grid-column: 1 / -1; }
  .famille__aside .btn { justify-self: start; }
  .fiches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .apropos, .contact { grid-template-columns: 1fr; }
  .apropos__photo { max-width: 520px; }
}

@media (max-width: 1020px) {
  .rsv__card { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); }
  .rsv__aside { padding: 16px 60px 14px 24px; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 6px 16px; overflow: visible; }
  .rsv__aside p:not(.rsv__h), .rsv__aside-img, .rsv__mark { display: none; }
  .rsv__branche { width: 70px; margin: 0; }
  .rsv__aside .rsv__h { margin: 0; font-size: 2.3rem; }
  .rsv__steps { width: 100%; margin-top: 2px; }
  .rsv__body { padding: 24px 24px 26px; }
}

@media (max-width: 860px) {
  .index__row { grid-template-columns: 52px minmax(0, 1fr); gap: 4px 16px; }
  .index__row .num { display: none; }
  .index__row .ico { grid-row: span 2; width: 52px; height: 52px; }
  .index__row .ico svg { width: 28px; height: 28px; }
  .index__prix { grid-column: 2; }
  .cartes { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .carte { display: grid; grid-template-columns: 38% minmax(0, 1fr); align-items: center; }
  .valeurs { grid-template-columns: 1fr; }
  .grille { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  :root { --nav-h: 72px; }
  .nav__logo, .nav.scrolled .nav__logo { height: 32px; }
  /* the phone hero takes the whole visible screen, the nav sits on top of it */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero__inner { padding-top: calc(var(--nav-h) + 20px); padding-bottom: 48px; }
  .hero__titre { font-size: clamp(2.2rem, 9.4vw, 2.75rem); }
  .hero__sub { font-size: 1rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .faits__row { grid-template-columns: 1fr; }
  .fait { padding: 18px var(--gout); }
  .fait + .fait { border-left: 0; border-top: 1px solid rgba(59, 68, 50, .2); }
  .tete { min-height: 62vh; min-height: 62svh; }
  .tete__inner { padding-top: 120px; }
  .pied__haut { grid-template-columns: 1fr; }
  .pied__logo { height: 50px; }
  .sommaire { top: 62px; }
  .fiches { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .carte-map { min-height: 360px; }
  .fin__cta .btn, .contact__cta .btn { flex: 1 1 100%; }
  .offre__actions .btn { flex: 1 1 100%; }

  .rsv { padding: 0; }
  .rsv__card { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); width: 100vw; margin: 0;
    height: 100vh; max-height: 100vh; height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .rsv__packs { max-height: none; }
  .rsv__grid { grid-template-columns: 1fr; }
  .rsv__actions { flex-direction: column; }
  .rsv__actions .btn { flex: 0 0 auto; width: 100%; }
  .rsv__body { padding: 20px 20px 28px; }
}

@media (max-width: 420px) {
  .nav__logo, .nav.scrolled .nav__logo { height: 30px; }
  .tuiles { gap: 10px; }
  .tuile__leg { padding: 34px 12px 10px; font-size: .95rem; }
}
