/* Elle One, centre de beauté, Agdal, Rabat
   Design system. Colours come from the client's kit, exactly:
   Noir Élégant #000000, Taupe Chic #7D6A56, Beige Sable #DCC9B1,
   Ivoire Doux #F5EFE8, Or Raffiné #C9A96B.
   Playfair Display is the Didone of the EO monogram (titles and nav),
   Poppins is the face of their real price list (text and buttons),
   Qwigley is the closest web script to the logo's signature.
   The motif is the double arc that frames the monogram, drawn in three
   places only: the hero, the closing band and the booking modal.
   Square corners everywhere, black ink, gold only on hover and hairlines.
   Nothing on this site is hidden on load: no opacity:0, no scroll reveal. */

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* kit */
  --noir: #000000;
  --taupe: #7D6A56;
  --sable: #DCC9B1;
  --ivoire: #F5EFE8;
  --or: #C9A96B;
  /* derived, contrast measured */
  --ivoire-clair: #FBF8F4;
  --texte: #1E1A17;          /* body text on ivory, 15.6:1 */
  --meta: #5E4F40;           /* small text: 6.9:1 on ivory, 4.9:1 on sable */
  --script-ink: #7D6A56;     /* the kit taupe, scripts are always large */
  --filet: rgba(0, 0, 0, .14);
  --filet-fort: rgba(0, 0, 0, .7);
  --filet-or: rgba(201, 169, 107, .7);
  --filet-clair: rgba(245, 239, 232, .28);

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

  --wrap: 1220px;
  --gout: clamp(20px, 5vw, 56px);
  --section: clamp(76px, 9vw, 128px);
  --nav-h: 92px;
  --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(--ivoire);
  color: var(--texte);
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
[hidden] { display: none !important; }
.nw { white-space: nowrap; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gout); }
.section { padding: var(--section) 0; }
.section--sable { background: var(--sable); }
.section--clair { background: var(--ivoire-clair); }

/* ------------------------------------------------------------ typography -- */
.h1, .h2, .h3 { margin: 0; font-family: var(--display); font-weight: 400; color: var(--noir); letter-spacing: -.01em; }
.h1 { font-size: clamp(2.8rem, 6.6vw, 5.9rem); line-height: 1.02; }
.h2 { font-size: clamp(2.05rem, 3.7vw, 3.15rem); line-height: 1.1; }
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.25; }
.h1 em, .h2 em { font-style: italic; }

/* the logo's signature, set as an overline. Qwigley has a small x-height,
   so it never goes under 2.4rem and never carries a paragraph. */
.scr { display: block; margin: 0 0 2px; font-family: var(--script); font-weight: 400; font-size: clamp(2.5rem, 3.4vw, 3rem); line-height: 1; color: var(--script-ink); }
.section--sable .scr { color: var(--meta); }

.lead { margin: 20px 0 0; font-size: 1.04rem; line-height: 1.8; max-width: 54ch; }
.p { margin: 14px 0 0; max-width: 56ch; }

.tete-sec { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: clamp(42px, 5vw, 64px); }
.tete-sec .h2 { max-width: 22ch; }
.tete-sec .lead { margin-left: auto; margin-right: auto; }

/* the numbered parenthesis, a typographic echo of the arcs */
.num { font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--meta); white-space: nowrap; }

/* ---------------------------------------------------------------- boutons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; min-height: 52px;
  border: 1px solid transparent; border-radius: 0;
  background: transparent;
  font-family: var(--sans); font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  white-space: nowrap; cursor: pointer;
  transition: background-color var(--t), color var(--t), border-color var(--t);
}
.btn:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }
/* monochrome at rest, gold on hover only */
.btn--noir { background: var(--noir); border-color: var(--noir); color: var(--ivoire); }
.btn--noir:hover { background: var(--or); border-color: var(--or); color: var(--noir); }
.btn--ligne { border-color: var(--noir); color: var(--noir); }
.btn--ligne:hover { background: var(--noir); color: var(--ivoire); }
.btn--clair { background: var(--ivoire); border-color: var(--ivoire); color: var(--noir); }
.btn--clair:hover { background: var(--or); border-color: var(--or); }
.btn--ligne-clair { border-color: rgba(245, 239, 232, .8); color: var(--ivoire); }
.btn--ligne-clair:hover { background: var(--ivoire); color: var(--noir); }

.lienfleche {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 30px;
  color: var(--noir); font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  padding-bottom: 7px; border-bottom: 1px solid var(--noir);
  transition: border-color var(--t);
}
.lienfleche svg { display: block; width: 22px; height: 10px; transition: transform var(--t); }
.lienfleche:hover { border-color: var(--or); }
.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: 12px var(--gout);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .18) 65%, rgba(0, 0, 0, 0));
  transition: background-color var(--t), box-shadow var(--t), padding var(--t);
}
.nav.scrolled { background: var(--ivoire); box-shadow: 0 1px 0 var(--filet); padding-top: 8px; padding-bottom: 8px; }

.nav__brand { position: relative; z-index: 120; justify-self: start; display: block; line-height: 0; }
/* the seal is 520x427: height is set, the width follows, never both */
.nav__logo { width: auto; height: 72px; max-width: none; transition: height var(--t); }
.nav.scrolled .nav__logo { height: 58px; }
.nav__logo--noir { display: none; }
.nav__logo--clair { filter: drop-shadow(0 1px 6px rgba(0, 0, 0, .35)); }
.nav.scrolled .nav__logo--clair, .nav.menu-open .nav__logo--clair { display: none; }
.nav.scrolled .nav__logo--noir, .nav.menu-open .nav__logo--noir { display: block; }

.nav__links { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 40px); }
.nav__links a {
  font-family: var(--display); font-size: 1.02rem; color: var(--noir); 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(--or); }

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

.nav__burger {
  display: none; width: 46px; height: 46px; padding: 0; background: transparent;
  border: 1px solid rgba(245, 239, 232, .6); border-radius: 0; cursor: pointer;
}
.nav__burger span { display: block; width: 18px; height: 1.5px; margin: 4px auto; background: var(--ivoire); 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(--noir); }
.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(--ivoire); }
  .nav:not(.scrolled) .nav__cta--bar { background: var(--ivoire); border-color: var(--ivoire); color: var(--noir); }
  .nav:not(.scrolled) .nav__cta--bar:hover { background: var(--or); border-color: var(--or); }
}

/* ------------------------------------------------------------ the arcs ---- */
/* the two brackets of the logo: a tapered crescent and a hairline inside it.
   The right one is the left one mirrored with the independent `scale`
   property, so the affichette's transform guard leaves it alone. */
.arc { display: block; flex: none; width: auto; height: 100%; overflow: visible; }
.arc--d { scale: -1 1; }
.arc__plein { fill: currentColor; }
.arc__fin { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; }
/* the whole svg is revealed top to bottom; a clip-path on the inner path makes Chrome drop it */
.arcs-trace .arc { animation: arc-trace 1.8s .25s cubic-bezier(.6, .1, .2, 1) both; }
@keyframes arc-trace { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }

/* ------------------------------------------------------------------ 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: #3B3128 center / cover no-repeat;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img { 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 62% 58% at 50% 52%, rgba(20, 15, 10, .62), rgba(20, 15, 10, .3) 72%, rgba(20, 15, 10, .22)),
    linear-gradient(to top, rgba(20, 15, 10, .45), rgba(20, 15, 10, 0) 35%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: 1100px; margin: 0 auto;
  padding: calc(var(--nav-h) + 20px) var(--gout) 70px;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(8px, 3vw, 44px);
}
.hero__arc { height: clamp(260px, 38vw, 430px); color: var(--ivoire); }
.hero__texte { text-align: center; }
.hero__titre { color: var(--ivoire); text-shadow: 0 2px 30px rgba(20, 15, 10, .3); }
.hero__sub { margin: 22px auto 0; max-width: 40ch; color: rgba(245, 239, 232, .95); text-shadow: 0 1px 14px rgba(20, 15, 10, .45); font-size: 1.08rem; line-height: 1.7; }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }

/* 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; } }

/* ------------------------------------------------------------- tete de page -- */
.tete { position: relative; min-height: 56vh; min-height: 56svh; display: flex; align-items: flex-end; overflow: hidden; background: #3B3128; }
.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(20, 15, 10, .74) 0%, rgba(20, 15, 10, .42) 42%, rgba(20, 15, 10, .06) 76%),
    linear-gradient(to bottom, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0) 32%);
}
.tete__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 140px var(--gout) clamp(46px, 5vw, 72px); }
.tete .scr { color: var(--sable); }
.tete .h1 { color: var(--ivoire); font-size: clamp(2.6rem, 5.4vw, 4.4rem); max-width: 16ch; }
.tete__sub { margin: 16px 0 0; max-width: 50ch; color: rgba(245, 239, 232, .92); font-size: 1.04rem; }

/* ------------------------------------------------------------ bandeau faits -- */
.faits { background: var(--noir); color: var(--ivoire); }
.faits__row { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.fait { display: flex; align-items: flex-start; gap: 16px; padding: 30px clamp(18px, 2.4vw, 34px); }
.fait + .fait { border-left: 1px solid rgba(201, 169, 107, .35); }
.fait svg { display: block; flex: none; width: 22px; height: 22px; color: var(--or); margin-top: 3px; }
.fait__k { margin: 0 0 4px; color: rgba(245, 239, 232, .7); font-size: .64rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.fait__v { margin: 0; font-family: var(--display); font-size: 1.12rem; line-height: 1.45; }
.fait__v a { text-decoration: none; }
.fait__v a:hover { color: var(--or); }

/* ---------------------------------------------------------------- le centre -- */
.centre { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(44px, 6vw, 96px); align-items: center; }
.centre__media { position: relative; width: 100%; padding: 30px 0 0 30px; }
/* a block of the kit's sable behind their real salon photo, offset: the editorial gesture */
.centre__media::before { content: ""; position: absolute; left: 0; top: 0; width: 62%; height: 78%; background: var(--sable); }
.centre__grand { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 1360 / 907; object-fit: cover; }
.centre__marques { margin: 26px 0 0; padding: 18px 0 0; border-top: 1px solid var(--filet); display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; font-size: .95rem; }
.centre__marques dt { color: var(--meta); font-size: .64rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; padding-top: 5px; }
.centre__marques dd { margin: 0; font-family: var(--display); font-size: 1.08rem; }

/* -------------------------------------------------- index des prestations -- */
.index { border-top: 1px solid var(--filet-fort); }
.index__row {
  position: relative; display: grid; grid-template-columns: 58px 64px minmax(0, 1fr) auto; gap: clamp(14px, 2.6vw, 36px); align-items: center;
  padding: clamp(20px, 2.6vw, 30px) 0; border-bottom: 1px solid var(--filet); text-decoration: none; color: var(--noir);
  transition: padding-left .35s ease;
}
.index__row:hover { padding-left: 14px; }
.ico { display: flex; align-items: center; justify-content: center; flex: none; width: 64px; height: 64px; border-radius: 50%; background: var(--ivoire); }
.ico svg { display: block; width: 36px; height: 36px; color: var(--taupe); }
.section--sable .ico { background: var(--ivoire-clair); }
.index__nom { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(1.28rem, 2.2vw, 1.72rem); line-height: 1.2; }
.index__det { margin: 4px 0 0; color: var(--meta); font-size: .93rem; line-height: 1.55; max-width: 52ch; }
.index__prix { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.12rem; white-space: nowrap; }
.index__prix i { font-family: var(--sans); font-style: normal; font-size: .66rem; letter-spacing: .18em; 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: 190px; top: 50%; width: 176px; height: 230px; transform: translateY(-50%) scale(.94); opacity: 0;
  pointer-events: none; border: 6px solid var(--ivoire-clair); box-shadow: 0 18px 44px rgba(0, 0, 0, .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: 36px; text-align: center; }

/* -------------------------------------------------------------- galerie ---- */
.tuiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 18px); }
.tuile { position: relative; display: block; overflow: hidden; background: var(--sable); text-decoration: none; color: var(--ivoire); }
.tuile__m { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s ease; }
.tuile:hover .tuile__m { transform: scale(1.04); }
.tuile__badge { position: absolute; top: 12px; right: 12px; z-index: 2; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(245, 239, 232, .92); }
.tuile__badge svg { display: block; width: 11px; height: 11px; fill: var(--noir); margin-left: 2px; }
.tuile__leg {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 44px 16px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
  font-family: var(--display); font-size: 1.05rem; line-height: 1.3;
}
.tuile__leg small { display: block; margin-top: 3px; font-family: var(--sans); font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(245, 239, 232, .8); }
.tuile:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }
.tuiles__pied { margin-top: 38px; 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: .8rem; font-weight: 500; letter-spacing: .08em; text-decoration: none; }
.ig-compte svg { display: block; width: 19px; height: 19px; }
.ig-compte:hover { color: var(--taupe); }

/* the player: their reels, loaded only when opened */
.lect { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; padding: 24px;
  visibility: hidden; opacity: 0; transition: opacity .3s ease, visibility 0s linear .3s; }
.lect.is-open { visibility: visible; opacity: 1; transition: opacity .3s ease, visibility 0s; }
.lect__fond { position: fixed; inset: 0; background: rgba(10, 8, 6, .88); }
.lect__carte { position: relative; display: grid; grid-template-columns: auto minmax(0, 340px); grid-template-rows: minmax(0, 1fr);
  max-height: calc(100vh - 48px); max-height: calc(100dvh - 48px); background: var(--noir); border: 1px solid rgba(201, 169, 107, .35); }
.lect__media { position: relative; background: #000; height: min(calc(100vh - 50px), 760px); height: min(calc(100dvh - 50px), 760px); aspect-ratio: 9 / 16; min-height: 0; }
.lect__media video, .lect__media img { width: 100%; height: 100%; object-fit: contain; background: #000; }
.lect__info { min-height: 0; overflow-y: auto; padding: 56px 32px 30px; display: flex; flex-direction: column; color: var(--ivoire); }
.lect__k { font-size: .62rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--or); }
.lect__titre { margin: 12px 0 0; font-family: var(--display); font-size: 1.85rem; line-height: 1.15; }
.lect__lien { margin-top: 20px; align-self: flex-start; color: var(--ivoire); border-color: var(--filet-clair); }
.lect__lien:hover { border-color: var(--or); }
.lect__actions { margin-top: auto; padding-top: 30px; }
.lect__actions .btn { width: 100%; }
.lect__nav { display: flex; gap: 10px; margin-top: 12px; }
.lect__nav button { flex: 1; min-height: 44px; border: 1px solid var(--filet-clair); background: transparent; color: var(--ivoire); cursor: pointer;
  font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.lect__nav button:hover { border-color: var(--or); color: var(--or); }
.lect__x { position: absolute; top: 12px; right: 12px; z-index: 3; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--filet-clair);
  background: rgba(0, 0, 0, .55); color: var(--ivoire); cursor: pointer; }
.lect__x svg { display: block; width: 16px; height: 16px; }
.lect__x:hover { border-color: var(--or); color: var(--or); }
body.lect-open { overflow: hidden; }

/* ------------------------------------------------------------ CTA de fin --- */
.fin { background: var(--taupe); color: var(--ivoire); }
.fin__in { max-width: 1000px; margin: 0 auto; padding: clamp(70px, 8vw, 110px) var(--gout);
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: clamp(10px, 3vw, 40px); }
.fin__arc { height: clamp(200px, 24vw, 280px); color: var(--ivoire); }
.fin__texte { text-align: center; }
.fin .scr { color: var(--sable); }
.fin .h2 { color: var(--ivoire); }
.fin .lead { margin-left: auto; margin-right: auto; color: var(--ivoire); }  /* 4.52:1 on the taupe */
.fin .hero__cta { margin-top: 30px; }

/* ----------------------------------------------------------- prestations --- */
.sommaire { position: sticky; top: 72px; z-index: 40; background: var(--ivoire-clair); 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); font-family: var(--display); font-size: .98rem; text-decoration: none; white-space: nowrap; transition: background-color var(--t), border-color var(--t); }
.sommaire a:hover { background: var(--ivoire); border-color: var(--noir); }

.famille { scroll-margin-top: calc(var(--nav-h) + 40px); display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: clamp(30px, 5vw, 80px); align-items: start; padding: clamp(54px, 6vw, 84px) 0; border-top: 1px solid var(--filet-fort); }
.famille:first-child { border-top: 0; padding-top: 0; }
.famille__aside { position: sticky; top: 150px; }
.famille__aside .ico { margin-bottom: 20px; background: var(--sable); }
.famille__aside .num { display: block; margin-bottom: 6px; }
.famille__titre { margin: 0; font-family: var(--script); font-weight: 400; font-size: clamp(3rem, 4.4vw, 3.8rem); line-height: .95; color: var(--noir); }
.famille__aside p { margin: 14px 0 0; color: var(--meta); font-size: .95rem; line-height: 1.65; }
.famille__aside .btn { margin-top: 22px; }

.sous { margin: 34px 0 6px; font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--meta); }
.sous:first-child { margin-top: 0; }
.tarifs { list-style: none; margin: 0; padding: 0; }
.tarifs li { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--filet); font-size: .98rem; }
.tarifs__p { flex: none; font-family: var(--display); font-size: 1.1rem; white-space: nowrap; }
.tarifs__p i { font-size: .9rem; color: var(--meta); margin-right: 5px; }
.tarifs--2 { columns: 2; column-gap: clamp(30px, 4vw, 60px); }
.tarifs--2 li { break-inside: avoid; }
.colonnes { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(30px, 4vw, 60px); }
.note { margin: 44px 0 0; color: var(--meta); font-size: .9rem; text-align: center; }

/* ---------------------------------------------------------------- à propos -- */
.duo { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.duo .h2 { max-width: 13ch; }
.duo__texte .p:first-child { margin-top: 0; }
.duo__photo { margin-top: 34px; width: 100%; max-width: 420px; height: auto; aspect-ratio: 726 / 840; object-fit: cover; }

/* --------------------------------------------------------------- contact --- */
.contact { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(36px, 5vw, 72px); align-items: stretch; }
.contact__liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 24px; }
.contact__liste li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.contact__liste svg { display: block; flex: none; width: 21px; height: 21px; color: var(--taupe); margin-top: 4px; }
.contact__k { margin: 0 0 3px; color: var(--meta); font-size: .64rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.contact__v { margin: 0; font-size: 1rem; line-height: 1.6; }
.contact__v a { text-decoration: none; }
.contact__v a:hover { text-decoration: underline; }
.tel { white-space: nowrap; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.horaires { list-style: none; margin: 4px 0 0; padding: 0; max-width: 340px; }
.horaires li { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; border-bottom: 1px solid var(--filet); font-size: .95rem; }
.carte-map { position: relative; min-height: 460px; overflow: hidden; background: var(--sable); }
.carte-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------- footer ---- */
.pied { background: var(--noir); color: rgba(245, 239, 232, .8); }
.pied__haut { max-width: var(--wrap); margin: 0 auto; padding: clamp(62px, 7vw, 92px) var(--gout) clamp(40px, 4vw, 56px); display: grid; grid-template-columns: 1.1fr .8fr 1.1fr; gap: clamp(34px, 4vw, 64px); }
/* 640x591: height set, width follows */
.pied__logo { width: auto; height: 190px; max-width: none; }
.pied__h { margin: 0 0 18px; color: var(--ivoire); font-family: var(--display); font-size: 1.15rem; font-weight: 400; }
.pied ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.pied a { color: rgba(245, 239, 232, .8); text-decoration: none; font-size: .94rem; }
.pied a:hover { color: var(--or); }
.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(--or); margin-top: 4px; }
.pied__bas { border-top: 1px solid rgba(201, 169, 107, .28); }
.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(--or); }

/* ================================================== 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(10, 8, 6, .66); }
.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(--ivoire-clair); border-radius: 0; box-shadow: 0 30px 90px rgba(0, 0, 0, .35); }
.rsv__aside { min-height: 0; overflow-y: auto; position: relative; isolation: isolate; background: var(--noir); color: var(--ivoire); 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(0, 0, 0, .9), rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .3)); }
.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(--ivoire-clair); font-size: 1.7rem; line-height: 1; color: var(--noir); cursor: pointer; border-radius: 0; }
.rsv__close:hover { background: var(--sable); }
.rsv__mark { width: 96px; height: auto; margin: 0 0 auto; }
.rsv__titre { display: flex; align-items: center; gap: 12px; margin: 26px 0 12px; height: 70px; color: var(--or); }
.rsv__titre .arc { height: 70px; }
.rsv__titre .arc__fin { stroke-width: 3.4; }
.rsv__h { margin: 0; font-family: var(--script); font-size: 3.1rem; line-height: 1; color: var(--ivoire); white-space: nowrap; }
.rsv__aside p { margin: 0 0 16px; font-size: .92rem; line-height: 1.6; color: rgba(245, 239, 232, .92); }
.rsv__steps { display: flex; gap: 8px; }
.rsv__steps i { display: block; width: 36px; height: 2px; background: rgba(245, 239, 232, .3); transition: background var(--t); }
.rsv__steps i.on { background: var(--or); }

.rsv__lbl { display: block; margin: 0 0 12px; color: var(--meta); font-size: .66rem; font-weight: 500; 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(--noir); }
.rsv__grp-t { flex: 1 1 auto; font-family: var(--display); font-size: 1.12rem; line-height: 1.2; }
.rsv__grp-n { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 7px; background: var(--noir); color: var(--ivoire); font-family: var(--sans); font-size: .74rem; font-weight: 500; }
.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(--taupe); }
.rsv__pack { display: grid; grid-template-columns: 20px minmax(0, 1fr) auto; gap: 14px; align-items: center; width: 100%;
  padding: 11px 10px 11px 4px; background: transparent; border: 0; border-bottom: 1px solid var(--filet); text-align: left; cursor: pointer;
  font-family: var(--sans); color: var(--texte); transition: background-color var(--t); }
.rsv__pack:hover { background: var(--ivoire); }
.rsv__box { display: block; position: relative; width: 18px; height: 18px; border: 1px solid rgba(0, 0, 0, .42); transition: background-color var(--t), border-color var(--t); }
.rsv__pack[aria-pressed="true"] { background: var(--ivoire); }
.rsv__pack[aria-pressed="true"] .rsv__box { background: var(--noir); border-color: var(--noir); }
.rsv__pack[aria-pressed="true"] .rsv__box::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid var(--ivoire); 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: 500; 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-family: var(--sans); font-size: 16px; color: var(--noir);
  background: var(--ivoire); border: 1px solid var(--filet-fort); border-radius: 0; }
.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(--ivoire); border-radius: 0;
  font-family: var(--sans); font-size: .9rem; color: var(--noir); cursor: pointer; transition: background-color var(--t), color var(--t), border-color var(--t); }
.rsv__chip[aria-pressed="true"] { background: var(--noir); border-color: var(--noir); color: var(--ivoire); }

.rsv__recap { margin: 0 0 16px; padding: 14px 16px; background: var(--ivoire); border-left: 2px solid var(--or); 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: 500; letter-spacing: .18em; text-transform: uppercase; }
.rsv__total span:last-child { font-family: var(--display); font-size: 1.4rem; }
.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(--ivoire);
    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(--noir); }
  .nav.menu-open { background: var(--ivoire); box-shadow: none; }

  .centre, .contact, .duo { grid-template-columns: 1fr; }
  .index__vue { display: none; }
  .tuiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .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; }
  .lect { padding: 0; align-items: stretch; }
  .lect__carte { grid-template-columns: 1fr; grid-template-rows: auto auto; width: 100vw; max-height: none; min-height: 100vh; min-height: 100dvh; margin: 0; border: 0; overflow-y: auto; }
  .lect__media { height: auto; width: 100%; max-height: 72vh; max-height: 72dvh; aspect-ratio: 9 / 16; margin: 0 auto; }
  .lect__info { padding: 22px 22px 32px; overflow: visible; }
}

@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, .rsv__aside-img, .rsv__mark { display: none; }
  .rsv__titre { margin: 0; height: 46px; }
  .rsv__titre .arc { height: 46px; }
  .rsv__h { font-size: 2.4rem; }
  .rsv__steps { width: 100%; margin-top: 2px; }
  .rsv__body { padding: 24px 24px 26px; }
}

@media (max-width: 860px) {
  .colonnes { grid-template-columns: 1fr; }
  .tarifs--2 { columns: 1; }
  .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: 30px; height: 30px; }
  .index__prix { grid-column: 2; }
  .hero__inner { gap: 6px; }
  .fin__in { gap: 6px; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  :root { --nav-h: 78px; }
  .nav__logo, .nav.scrolled .nav__logo { height: 54px; }
  .hero__inner { padding-top: calc(var(--nav-h) + 30px); }
  .hero__arc { height: 250px; }
  .hero__arc .arc__fin { display: none; }
  .hero__titre { font-size: clamp(2.5rem, 11vw, 3.2rem); }
  .hero__sub { font-size: 1rem; }
  .fin__arc { height: 190px; }
  .fin__arc .arc__fin { display: none; }
  .faits__row { grid-template-columns: 1fr; }
  .fait { padding: 20px var(--gout); }
  .fait + .fait { border-left: 0; border-top: 1px solid rgba(201, 169, 107, .3); }
  .centre__media { padding: 18px 0 0 18px; }
  .pied__haut { grid-template-columns: 1fr; }
  .pied__logo { height: 160px; }
  .sommaire { top: 62px; }
  .carte-map { min-height: 360px; }

  .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; }
  .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) {
  .hero__cta .btn, .contact__cta .btn, .fin .btn { flex: 1 1 100%; }
  .nav__logo, .nav.scrolled .nav__logo { height: 50px; }
  .hero__arc { height: 210px; }
  .tuile__leg { padding: 34px 12px 10px; font-size: .95rem; }
}
