/* Aahd Spa, centre esthétique, Agdal, Rabat
   Colours are the client's kit, exactly:
   Brun Élégant #3E2E22 (principal), Taupe Chic #8C6F56 (secondaire),
   Beige Sable Doux #D9C7B0, Ivoire Lumineux #F7F3EC, Or Raffiné #C9A47B (détail).
   Noto Serif Display is the closest web face to the tall "Aahd SPA" wordmark
   (titles and nav), Arizonia is the script of their wall sign ("Welcome to"),
   Figtree carries the text and the buttons.
   The motif is the logo's five-leaf fan with its two side lines, drawn on load
   in three places only: the hero, the closing band and the booking modal.
   Gold is a detail: the motif, hairlines and hover. Never text, never a button at rest.
   Nothing on this site is hidden on load: no opacity:0, no scroll reveal. */

/* ---------------------------------------------------------------- tokens -- */
:root {
  /* kit */
  --brun: #3E2E22;
  --taupe: #8C6F56;
  --sable: #D9C7B0;
  --ivoire: #F7F3EC;
  --or: #C9A47B;
  /* derived, contrast measured */
  --ivoire-clair: #FBF8F3;
  --sable-voile: #EADFD0;       /* the kit's icon discs: sable over ivory */
  --meta: #6E5641;              /* small text on ivory, 6.2:1 */
  --meta-sable: #5E4836;        /* small text on sable, 5.2:1 */
  --filet: rgba(62, 46, 34, .14);
  --filet-fort: rgba(62, 46, 34, .62);
  --filet-or: rgba(201, 164, 123, .55);
  --filet-clair: rgba(247, 243, 236, .26);

  --display: "Noto Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --script: "Arizonia", "Snell Roundhand", cursive;

  --wrap: 1200px;
  --gout: clamp(20px, 5vw, 56px);
  --section: clamp(76px, 9vw, 124px);
  --nav-h: 78px;
  --rayon: 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(--ivoire);
  color: var(--brun);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
figure, blockquote { margin: 0; }
[hidden] { display: none !important; }
.nw, .tel { white-space: nowrap; }

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

/* ------------------------------------------------------------ typography -- */
.h1, .h2, .h3 { margin: 0; font-family: var(--display); font-weight: 400; color: var(--brun); letter-spacing: -.005em; }
.h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1.04; }
.h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.12; }
.h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.25; }

/* the script of their wall sign, as an overline. Always large, never a paragraph. */
.scr { display: block; margin: 0 0 4px; font-family: var(--script); font-weight: 400; font-size: clamp(1.9rem, 2.7vw, 2.4rem); line-height: 1.15; color: var(--taupe); }
.section--sable .scr { color: var(--meta-sable); }

.lead { margin: 20px 0 0; font-size: 1.07rem; line-height: 1.75; 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(40px, 5vw, 62px); }
.tete-sec .h2 { max-width: 22ch; }
.tete-sec .lead { margin-left: auto; margin-right: auto; }

.num { font-family: var(--display); font-size: .95rem; color: var(--meta); letter-spacing: .04em; white-space: nowrap; }

/* ---------------------------------------------------------------- boutons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; min-height: 50px;
  border: 1px solid transparent; border-radius: var(--rayon);
  background: transparent;
  font-family: var(--sans); font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  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; }
/* brown or ivory at rest, gold on hover only */
.btn--brun { background: var(--brun); border-color: var(--brun); color: var(--ivoire); }
.btn--brun:hover { background: var(--or); border-color: var(--or); color: var(--brun); }
.btn--ligne { border-color: var(--brun); color: var(--brun); }
.btn--ligne:hover { background: var(--brun); color: var(--ivoire); }
.btn--ivoire { background: var(--ivoire); border-color: var(--ivoire); color: var(--brun); }
.btn--ivoire:hover { background: var(--or); border-color: var(--or); }
.btn--ligne-ivoire { border-color: rgba(247, 243, 236, .75); color: var(--ivoire); }
.btn--ligne-ivoire:hover { background: var(--ivoire); color: var(--brun); }

.lienfleche {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 28px;
  color: var(--brun); font-size: .95rem; font-weight: 500; text-decoration: none;
  padding-bottom: 6px; border-bottom: 1px solid var(--brun);
  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: 40px;
  min-height: var(--nav-h); padding: 14px var(--gout);
  background: linear-gradient(to bottom, rgba(40, 29, 21, .55), rgba(40, 29, 21, .2) 62%, rgba(40, 29, 21, 0));
  transition: background-color var(--t), box-shadow var(--t), min-height var(--t);
}
.nav.scrolled { background: var(--ivoire); box-shadow: 0 1px 0 var(--filet); min-height: 66px; }

.nav__brand { position: relative; z-index: 120; justify-self: start; display: block; line-height: 0; }
/* logo-h is 2077x293: the height is set, the width follows (about 7.1x, so 22px = 156px), never both */
.nav__logo { width: auto; height: 22px; max-width: none; transition: height var(--t); }
.nav.scrolled .nav__logo { height: 20px; }
.nav__logo--brun { display: none; }
.nav__logo--ivoire { filter: drop-shadow(0 1px 8px rgba(30, 20, 12, .45)); }
.nav.scrolled .nav__logo--ivoire, .nav.menu-open .nav__logo--ivoire { display: none; }
.nav.scrolled .nav__logo--brun, .nav.menu-open .nav__logo--brun { display: block; }

.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.2vw, 34px); }
.nav__links a {
  font-family: var(--display); font-size: .84rem; letter-spacing: .02em; color: var(--brun); text-decoration: none;
  padding: 3px 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: 9px 18px; min-height: 40px; font-size: .8rem; }
.nav__links .nav__cta--menu { display: none; }

.nav__burger {
  display: none; width: 46px; height: 46px; padding: 0; background: transparent;
  border: 1px solid rgba(247, 243, 236, .6); border-radius: var(--rayon); 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(--brun); }
.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(--brun); }
  .nav:not(.scrolled) .nav__cta--bar:hover { background: var(--or); border-color: var(--or); }
}

/* ------------------------------------------------------------ the motif --- */
/* the fan of the logo with its two side lines. The fan rises from its base,
   the lines run outward from it. The clip sits on the whole <svg>: on an
   inner path Chrome drops the path. */
.motif { --mh: 60px; display: flex; align-items: flex-end; justify-content: center; gap: clamp(10px, 1.6vw, 18px); height: var(--mh); color: var(--or); }
.motif__fan { display: block; flex: none; width: auto; height: 100%; fill: currentColor; overflow: visible; }
/* in the logo the side lines sit at 85% of the fan's height, near its base */
.motif__ligne { display: block; flex: none; height: 1.5px; margin-bottom: calc(var(--mh) * .145); background: currentColor; }
.trace .motif__fan { animation: fan-leve 1.7s .2s cubic-bezier(.55, .1, .2, 1) both; }
.trace .motif__ligne:first-child { transform-origin: 100% 50%; animation: ligne-sort 1.3s .75s cubic-bezier(.5, .1, .2, 1) both; }
.trace .motif__ligne:last-child { transform-origin: 0 50%; animation: ligne-sort 1.3s .75s cubic-bezier(.5, .1, .2, 1) both; }
@keyframes fan-leve { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes ligne-sort { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ------------------------------------------------------------------ hero -- */
.hero {
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
  min-height: 640px; min-height: max(640px, 100vh); min-height: max(600px, 100svh);
  background: #4A382B 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 58% 60% at 50% 52%, rgba(40, 28, 20, .66), rgba(40, 28, 20, .34) 70%, rgba(40, 28, 20, .26)),
    linear-gradient(to top, rgba(40, 28, 20, .5), rgba(40, 28, 20, 0) 36%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1000px; margin: 0 auto; padding: calc(var(--nav-h) + 24px) var(--gout) 72px; text-align: center; }
.hero__motif { --mh: clamp(46px, 5.2vw, 64px); }
.hero__motif .motif__ligne { width: clamp(60px, 13vw, 190px); }
.hero__titre { margin: clamp(10px, 1.4vw, 18px) 0 0; font-weight: 400; color: var(--ivoire); text-shadow: 0 2px 28px rgba(30, 20, 12, .35); }
.hero__scr { display: block; font-family: var(--script); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.05; }
.hero__nom { display: block; margin-top: -.04em; font-family: var(--display); font-size: clamp(3rem, 7vw, 6rem); line-height: 1; letter-spacing: -.005em; }
.hero__sub { margin: 20px auto 0; max-width: 40ch; color: rgba(247, 243, 236, .95); text-shadow: 0 1px 14px rgba(30, 20, 12, .5); font-size: 1.1rem; }
.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 -- */
.tete { position: relative; min-height: 56vh; min-height: 56svh; display: flex; align-items: flex-end; overflow: hidden; background: #4A382B; }
.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(40, 28, 20, .78) 0%, rgba(40, 28, 20, .46) 44%, rgba(40, 28, 20, .08) 78%),
    linear-gradient(to bottom, rgba(40, 28, 20, .45), rgba(40, 28, 20, 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, 70px); }
.tete .scr { color: var(--sable); }
.tete .h1 { color: var(--ivoire); font-size: clamp(2.6rem, 5.2vw, 4.3rem); max-width: 16ch; }
.tete__sub { margin: 14px 0 0; max-width: 50ch; color: rgba(247, 243, 236, .94); font-size: 1.06rem; }

/* ------------------------------------------------------------ bandeau faits -- */
.faits { background: var(--brun); 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, 164, 123, .32); }
.fait svg { display: block; flex: none; width: 22px; height: 22px; color: var(--or); margin-top: 4px; }
.fait__k { margin: 0 0 3px; color: rgba(247, 243, 236, .72); font-size: .68rem; font-weight: 600; letter-spacing: .2em; 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 lieu -- */
.lieu { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(44px, 7vw, 110px); align-items: center; }
.lieu__media { position: relative; justify-self: center; width: 100%; max-width: 440px; padding: 0 28px 28px 0; }
/* a block of the kit's sable behind their real reception, offset down and right */
.lieu__media::before { content: ""; position: absolute; right: 0; bottom: 0; width: 72%; height: 70%; background: var(--sable); }
.lieu__photo { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.lieu__legende { position: relative; z-index: 1; margin: 12px 0 0; font-size: .82rem; color: var(--meta); }

/* ---------------------------------------------------------- la propriétaire -- */
.proprio { background: var(--brun); color: var(--ivoire); }
.proprio__in { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(44px, 7vw, 110px); align-items: center; }
.proprio__media { position: relative; justify-self: center; width: 100%; max-width: 380px; }
/* a gold hairline frame, offset: the passe-partout of a portrait */
.proprio__media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--filet-or); }
.proprio__photo { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.proprio .scr { color: var(--sable); }
.proprio .h2 { color: var(--ivoire); font-size: clamp(2.6rem, 5vw, 4.2rem); }
.proprio .lead { color: rgba(247, 243, 236, .92); }
.citation { margin: 28px 0 0; padding: 0 0 0 22px; border-left: 1px solid var(--or); max-width: 46ch; }
.citation p { margin: 0; font-family: var(--display); font-style: italic; font-size: 1.22rem; line-height: 1.55; }
.citation cite { display: block; margin-top: 10px; font-style: normal; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(247, 243, 236, .7); }
.proprio .lienfleche { color: var(--ivoire); border-color: rgba(247, 243, 236, .6); }
.proprio .lienfleche:hover { border-color: var(--or); }
.proprio__liens { display: flex; flex-wrap: wrap; gap: 0 34px; }

/* -------------------------------------------------- index des prestations -- */
.index { border-top: 1px solid var(--filet-fort); }
.index__row {
  position: relative; display: grid; grid-template-columns: 44px 64px minmax(0, 1fr) auto; gap: clamp(14px, 2.6vw, 34px); align-items: center;
  padding: clamp(18px, 2.4vw, 28px) 0; border-bottom: 1px solid var(--filet); text-decoration: none; color: var(--brun);
  transition: padding-left .35s ease;
}
.index__row:hover { padding-left: 14px; }
/* the kit's icon: a fine brown line on a sable disc */
.ico { display: flex; align-items: center; justify-content: center; flex: none; width: 64px; height: 64px; border-radius: 50%; background: var(--sable-voile); color: var(--meta); }
.ico svg { display: block; width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.index__nom { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(1.26rem, 2.1vw, 1.66rem); line-height: 1.2; }
.index__det { margin: 4px 0 0; color: var(--meta); font-size: .95rem; line-height: 1.55; max-width: 54ch; }
.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: .82rem; 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: 200px; top: 50%; width: 170px; height: 212px; transform: translateY(-50%) scale(.94); opacity: 0;
  pointer-events: none; border: 5px solid var(--ivoire-clair); border-radius: var(--rayon); box-shadow: 0 18px 44px rgba(62, 46, 34, .22); 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; }

/* -------------------------------------------------------------- galerie ---- */
.tuiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1.4vw, 18px); }
.tuiles--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 900px; margin: 0 auto; }
.tuile { position: relative; display: block; overflow: hidden; border-radius: var(--rayon); 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(247, 243, 236, .92); }
.tuile__badge svg { display: block; width: 11px; height: 11px; fill: var(--brun); margin-left: 2px; }
.tuile__leg {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 46px 16px 14px;
  background: linear-gradient(to top, rgba(40, 28, 20, .78), rgba(40, 28, 20, 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: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(247, 243, 236, .82); }
.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: .95rem; font-weight: 500; text-decoration: none; }
.ig-compte svg { display: block; width: 19px; height: 19px; }
.ig-compte:hover { color: var(--taupe); }
.bande-titre { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 0 0 22px; padding-bottom: 12px; border-bottom: 1px solid var(--filet); }
.bande-titre .h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
.bande-titre span { color: var(--meta); font-size: .92rem; }
.bande + .bande { margin-top: clamp(56px, 7vw, 90px); }

/* 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(30, 21, 15, .9); }
.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(--brun); border: 1px solid rgba(201, 164, 123, .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: .66rem; font-weight: 600; letter-spacing: .2em; 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); border-radius: var(--rayon); background: transparent; color: var(--ivoire); cursor: pointer; font-size: .88rem; font-weight: 500; }
.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); border-radius: var(--rayon);
  background: rgba(30, 21, 15, .6); 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; }

/* ----------------------------------------------------------------- avis ---- */
.avis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3.4vw, 48px) clamp(24px, 3.4vw, 52px); }
.avis__item { padding-top: 22px; border-top: 1px solid var(--filet-fort); }
.avis__item svg { display: block; width: 26px; height: 20px; color: var(--or); margin-bottom: 14px; }
.avis__item p { margin: 0; font-family: var(--display); font-size: 1.1rem; line-height: 1.6; }
.avis__item cite { display: block; margin-top: 14px; font-style: normal; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--meta); }

/* ------------------------------------------------------------ CTA de fin --- */
.fin { background: var(--sable); }
.fin__in { max-width: 820px; margin: 0 auto; padding: clamp(72px, 8vw, 112px) var(--gout); text-align: center; }
.fin__motif { --mh: clamp(46px, 5vw, 62px); color: var(--brun); }
.fin__motif .motif__ligne { width: clamp(60px, 12vw, 170px); }
.fin .scr { margin-top: 18px; color: var(--meta-sable); }
.fin .lead { margin-left: auto; margin-right: auto; color: var(--brun); }
.fin .hero__cta { margin-top: 30px; }

/* ----------------------------------------------------------- prestations --- */
.sommaire { position: sticky; top: 70px; 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: 7px 16px; border: 1px solid var(--filet); border-radius: 999px; font-family: var(--display); font-size: .96rem; text-decoration: none; white-space: nowrap; transition: background-color var(--t), border-color var(--t); }
.sommaire a:hover { background: var(--sable-voile); border-color: var(--brun); }

.famille { scroll-margin-top: calc(var(--nav-h) + 60px); display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: clamp(30px, 5vw, 80px); align-items: start; padding: clamp(54px, 6vw, 82px) 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: 18px; }
.famille__aside .num { display: block; margin-bottom: 2px; }
.famille__titre { margin: 0; font-family: var(--script); font-weight: 400; font-size: clamp(2.3rem, 3.4vw, 2.9rem); line-height: 1.12; color: var(--brun); }
.famille__aside p { margin: 12px 0 0; color: var(--meta); font-size: .97rem; line-height: 1.65; }
.famille__aside .btn { margin-top: 22px; }

.sous { margin: 34px 0 4px; font-family: var(--display); font-style: italic; font-size: 1.15rem; color: var(--meta); }
.sous:first-child { margin-top: 0; }
.sous small { font-family: var(--sans); font-style: normal; font-size: .85rem; }
.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: 1rem; }
.tarifs__p { flex: none; font-family: var(--display); font-size: 1.1rem; white-space: nowrap; }
.tarifs__p i { font-family: var(--sans); font-style: normal; font-size: .86rem; color: var(--meta); margin-right: 5px; }
.colonnes { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(30px, 4vw, 60px); }
.note { margin: 46px 0 0; color: var(--meta); font-size: .92rem; text-align: center; }

/* ---------------------------------------------------------------- à propos -- */
.duo { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.duo--inverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.duo--inverse .duo__media { order: 2; }
.duo__media { position: relative; justify-self: center; width: 100%; max-width: 420px; }
.duo__media--cadre::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--or); }
.duo__photo { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.duo__photo--enseigne { aspect-ratio: 574 / 718; }
.duo .citation { border-color: var(--or); }
.duo .citation cite { color: var(--meta); }
.appareils { list-style: none; margin: 26px 0 0; padding: 0; border-top: 1px solid var(--filet-fort); max-width: 520px; }
.appareils li { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--filet); }
.appareils b { font-family: var(--display); font-weight: 400; font-size: 1.12rem; }
.appareils span { color: var(--meta); font-size: .94rem; text-align: right; }

/* --------------------------------------------------------------- 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: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.contact__v { margin: 0; font-size: 1.02rem; line-height: 1.6; }
.contact__v a { text-decoration: none; }
.contact__v a:hover { text-decoration: underline; }
.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: .97rem; }
.carte-map { position: relative; min-height: 460px; overflow: hidden; border-radius: var(--rayon); background: var(--sable); }
.carte-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------- footer ---- */
.pied { background: var(--brun); color: rgba(247, 243, 236, .82); }
.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); }
/* logo-stack is 1539x703: the height is set, the width follows */
.pied__logo { width: auto; height: 104px; 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(247, 243, 236, .82); text-decoration: none; font-size: .96rem; }
.pied a:hover { color: var(--or); }
.pied__contact li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-size: .96rem; 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, 164, 123, .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: .84rem; }
.pied__bas a { font-size: .72rem; 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(30, 21, 15, .64); }
.rsv__card { position: relative; display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); 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: var(--rayon); box-shadow: 0 30px 90px rgba(30, 21, 15, .35); }
.rsv__aside { min-height: 0; overflow-y: auto; position: relative; background: var(--brun); color: var(--ivoire); padding: 44px 34px 36px; display: flex; flex-direction: column; }
.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); border-radius: var(--rayon); background: var(--ivoire-clair); font-size: 1.7rem; line-height: 1; color: var(--brun); cursor: pointer; }
.rsv__close:hover { background: var(--sable); }
.rsv__motif { --mh: 44px; justify-content: flex-start; }
.rsv__motif .motif__ligne { width: 46px; }
.rsv__h { margin: 18px 0 14px; font-family: var(--script); font-weight: 400; font-size: 2.6rem; line-height: 1.1; color: var(--ivoire); }
.rsv__aside p { margin: 0 0 14px; font-size: .95rem; line-height: 1.6; color: rgba(247, 243, 236, .9); }
.rsv__aside-bas { margin-top: auto; padding-top: 18px; }
.rsv__steps { display: flex; gap: 8px; }
.rsv__steps i { display: block; width: 36px; height: 2px; background: rgba(247, 243, 236, .28); transition: background var(--t); }
.rsv__steps i.on { background: var(--or); }

.rsv__lbl { display: block; margin: 0 0 12px; color: var(--meta); font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.rsv__packs { display: block; border-top: 1px solid var(--filet-fort); max-height: 330px; 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(--brun); }
.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: 999px; background: var(--brun); color: var(--ivoire); font-family: var(--sans); font-size: .76rem; 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(--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(--brun); transition: background-color var(--t); }
.rsv__pack:hover { background: var(--sable-voile); }
.rsv__box { display: block; position: relative; width: 18px; height: 18px; border: 1px solid rgba(62, 46, 34, .45); border-radius: 50%; transition: background-color var(--t), border-color var(--t); }
.rsv__pack[aria-pressed="true"] { background: var(--sable-voile); }
.rsv__pack[aria-pressed="true"] .rsv__box { background: var(--brun); border-color: var(--brun); }
.rsv__pack[aria-pressed="true"] .rsv__box::after { content: ""; position: absolute; left: 5.5px; top: 2.5px; width: 4.5px; height: 8.5px; border: solid var(--ivoire); border-width: 0 1.6px 1.6px 0; transform: rotate(45deg); }
.rsv__pack-n { font-size: .97rem; line-height: 1.35; }
.rsv__pack-n small { display: block; margin-top: 2px; font-size: .8rem; color: var(--meta); }
.rsv__pack-p { font-family: var(--display); font-size: 1rem; white-space: nowrap; text-align: right; }
.rsv__compte { margin: 12px 0 22px; font-size: .88rem; color: var(--meta); }

.rsv__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 18px; margin-bottom: 18px; }
.rsv__field label { display: block; margin: 0 0 9px; color: var(--meta); font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.rsv__field input { -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(--brun);
  background: var(--ivoire); border: 1px solid var(--filet-fort); border-radius: var(--rayon); }
.rsv__field input:focus-visible { outline: 2px solid var(--or); outline-offset: 1px; }
.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__prenom { margin-bottom: 20px; }
.rsv__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.rsv__chip { min-height: 48px; padding: 0 14px; border: 1px solid var(--filet-fort); background: var(--ivoire); border-radius: 999px;
  font-family: var(--sans); font-size: .93rem; color: var(--brun); cursor: pointer; transition: background-color var(--t), color var(--t), border-color var(--t); }
.rsv__chip[aria-pressed="true"] { background: var(--brun); border-color: var(--brun); color: var(--ivoire); }

.rsv__recap { margin: 0 0 16px; padding: 14px 16px; background: var(--sable-voile); border-left: 2px solid var(--or); font-size: .94rem; 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: .7rem; font-weight: 600; 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: .9rem; 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: .86rem; 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__links .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(--brun); }
  .nav.menu-open { background: var(--ivoire); box-shadow: none; }

  .lieu, .contact, .duo, .duo--inverse, .proprio__in { grid-template-columns: 1fr; }
  .duo--inverse .duo__media { order: 0; }
  .index__vue { display: none; }
  .tuiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .avis { 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-bas p { display: none; }
  .rsv__motif { --mh: 30px; }
  .rsv__motif .motif__ligne { width: 26px; }
  .rsv__h { margin: 0; font-size: 2rem; }
  .rsv__aside-bas { width: 100%; margin: 0; padding: 0; }
  .rsv__body { padding: 24px 24px 26px; }
}

@media (max-width: 860px) {
  .colonnes { grid-template-columns: 1fr; }
  .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: 32px; height: 32px; }
  .index__prix { grid-column: 2; }
  .tuiles--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { font-size: 15.5px; }
  :root { --nav-h: 72px; }
  .nav { gap: 16px; }
  .nav__logo, .nav.scrolled .nav__logo { height: 19px; }
  .hero__inner { padding-top: calc(var(--nav-h) + 30px); }
  .hero__sub { font-size: 1.02rem; }
  .faits__row { grid-template-columns: 1fr; }
  .fait { padding: 20px var(--gout); }
  .fait + .fait { border-left: 0; border-top: 1px solid rgba(201, 164, 123, .3); }
  .lieu__media { padding: 0 18px 18px 0; }
  .proprio__media { max-width: 320px; }
  .proprio__media::before { inset: 12px -12px -12px 12px; }
  .duo__media--cadre::before { inset: 12px -12px -12px 12px; }
  .avis { grid-template-columns: 1fr; }
  .tuiles--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pied__haut { grid-template-columns: 1fr; }
  .pied__logo { height: 90px; }
  .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; border-radius: 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: 18px; }
  .hero__nom { font-size: clamp(2.8rem, 13vw, 3.4rem); }
  .tuile__leg { padding: 34px 12px 10px; font-size: .95rem; }
}
