/* =================================================================
   INSTITUT ELEGANCIA — Design System "Maison"
   Luxe éditorial · fond blanc · Cormorant Garamond + Jost
   ================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Surfaces — fond blanc */
  --sand:        #FFFFFF;   /* page */
  --cream:       #FAFAFA;   /* surfaces / cartes */
  --mist:        #F4F4F4;   /* sections alternées */
  --stone:       #E6E6E6;   /* filets / bordures */
  --stone-deep:  #CFCFCF;

  /* Encres — noir & gris neutres */
  --ink:         #000000;   /* noir (couleur de marque) */
  --ink-soft:    #6B6B6B;   /* texte secondaire, gris neutre */
  --basalt:      #000000;   /* sections sombres / footer */

  /* Accent unique — orange */
  --terra:       #EFA23A;
  --terra-deep:  #D98A1B;
  --terra-soft:  #FBE7CC;

  /* Neutres (monochrome : remplacent l'ancien vert) */
  --sage:        #8A8A8A;
  --sage-deep:   #4D4D4D;
  --sage-soft:   #EFEFEF;

  /* Typo — Arial */
  --display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --body:    Arial, "Helvetica Neue", Helvetica, sans-serif;

  /* Rythme */
  --maxw: 1320px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --radius: 4px;
  --radius-lg: 14px;

  /* Ombres diffuses (teintées au fond) */
  --shadow-sm: 0 2px 18px -8px rgba(27, 26, 23, .12);
  --shadow-md: 0 22px 50px -28px rgba(27, 26, 23, .22);
  --shadow-lg: 0 40px 90px -45px rgba(27, 26, 23, .30);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--body);
  background: var(--sand);
  color: var(--ink);
  font-size: clamp(.97rem, .92rem + .2vw, 1.04rem);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--sand); }

/* Grain quasi imperceptible */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .022; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 3. Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
.display { font-size: clamp(2.8rem, 1.2rem + 6vw, 6.4rem); font-weight: 700; letter-spacing: -.03em; }
.h-xl { font-size: clamp(2.3rem, 1.4rem + 4vw, 4.4rem); font-weight: 700; }
.h-lg { font-size: clamp(2rem, 1.3rem + 2.8vw, 3.4rem); font-weight: 700; }
.h-md { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); font-weight: 600; }
em, .italic { font-style: italic; }
.serif { font-family: var(--display); }

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 1em;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--terra); display: inline-block; }
.eyebrow.center::before { display: none; }

.lede { font-size: clamp(1.05rem, .98rem + .45vw, 1.28rem); color: var(--ink-soft); line-height: 1.65; font-weight: 300; }
.muted { color: var(--ink-soft); }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(5rem, 3.5rem + 8vw, 11rem); }
.section--tight { padding-block: clamp(3.5rem, 2.5rem + 4vw, 6.5rem); }
.stack > * + * { margin-top: 1.3rem; }
.center { text-align: center; }
.divider { height: 1px; background: var(--stone); border: 0; }
.bg-mist { background: var(--mist); }

/* ---------- 5. Boutons (maison : capitales fines espacées) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .8em;
  padding: 1.15em 2em;
  border-radius: 100px;
  font-weight: 500; font-size: .72rem;
  letter-spacing: .16em; text-transform: uppercase;
  transition: transform .55s var(--ease), background .45s var(--ease), color .45s var(--ease), box-shadow .55s var(--ease), border-color .45s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform .5s var(--ease); font-size: 1.1em; }
.btn:hover .arrow { transform: translateX(6px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn--primary { background: var(--ink); color: var(--sand); }
.btn--primary:hover { background: var(--terra-deep); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--solid { background: var(--terra); color: #fff; }
.btn--solid:hover { background: var(--terra-deep); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { border: 1px solid var(--stone-deep); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--sand); border-color: var(--ink); transform: translateY(-3px); }
.btn--light { background: var(--sand); color: var(--ink); }
.btn--light:hover { background: var(--terra); color: #fff; transform: translateY(-3px); }
.btn--sm { padding: .85em 1.4em; font-size: .68rem; }

.link-underline {
  position: relative; font-weight: 500; color: var(--ink);
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--terra); transform: scaleX(0); transform-origin: right;
  transition: transform .55s var(--ease);
}
.link-underline:hover { color: var(--terra-deep); }
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- 6. Header / Nav ---------- */
.topbar {
  background: var(--sand); color: var(--ink-soft);
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  text-align: center; padding: .7rem 1rem; font-weight: 400;
  border-bottom: 1px solid var(--stone);
}
.topbar span { color: var(--terra-deep); }

.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
  padding-block: 1.5rem;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(16px) saturate(1.1); -webkit-backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 1px 0 var(--stone);
  padding-block: .9rem;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-size: 1.5rem; letter-spacing: -.01em; font-weight: 700; }
.brand__tag { font-size: .56rem; letter-spacing: .42em; text-transform: uppercase; color: var(--ink-soft); margin-top: .45rem; font-weight: 400; }

.nav__links { display: flex; align-items: center; gap: 2.4rem; }
.nav__links a {
  font-size: .76rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  position: relative; padding-block: .35rem; color: var(--ink-soft);
  transition: color .35s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--terra); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: flex; align-items: center; gap: 1.2rem; }

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.burger span { width: 24px; height: 1px; background: var(--ink); transition: .4s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--sand); color: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: .4rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform .6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--display); font-size: 2.4rem; font-weight: 300; }
.mobile-menu a:hover { color: var(--terra); font-style: italic; }

/* ---------- 7. Visuels tonals (placeholders raffinés) ---------- */
/* Remplaçables par de vraies photos via <img> à l'intérieur de .visual */
.visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, #F2F2F2, #E4E4E4 55%, #EDEDED);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
  isolation: isolate;
}
.visual::after {
  content: ""; position: absolute; inset: 0; z-index: 2; opacity: .25; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.visual--sage { background: linear-gradient(160deg, #E0E0E0, #C6C6C6); }
.visual--terra { background: linear-gradient(160deg, #F6BA62, #E08A1A); }
.visual--basalt { background: linear-gradient(160deg, #2A2A2A, #000); }
.visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.visual__label {
  position: absolute; left: 1.4rem; bottom: 1.3rem; z-index: 3;
  font-family: var(--display); font-style: italic; color: #fff; font-weight: 400;
  font-size: 1.4rem; text-shadow: 0 2px 22px rgba(0,0,0,.28);
}
.leaf { position: absolute; z-index: 3; opacity: .42; color: #fff; pointer-events: none; }

/* ---------- 8. HERO ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 4vw, 5rem); padding-bottom: clamp(3.5rem, 6vw, 7rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(1.5rem, 4vw, 5rem); align-items: center;
}
.hero__title { margin-block: 1.8rem 2rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; align-items: center; }
.hero__rating { display: flex; align-items: center; gap: .8rem; }
.hero__stars { color: var(--terra); letter-spacing: .15em; font-size: .85rem; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual { position: relative; aspect-ratio: 4 / 5; }
.hero__visual .visual { position: absolute; inset: 0; box-shadow: var(--shadow-lg); }
.hero__visual .visual--sm {
  position: absolute; width: 44%; aspect-ratio: 1; right: -9%; bottom: -9%;
  inset: auto; border: 10px solid var(--sand); z-index: 4; border-radius: var(--radius-lg);
}
.hero__chip {
  position: absolute; left: -7%; top: 11%; z-index: 5;
  background: var(--sand); border: 1px solid var(--stone); border-radius: 14px; padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .9rem;
  max-width: 240px;
}
.hero__chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px var(--sage-soft); flex: none; }
.hero__chip small { display: block; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.hero__chip strong { font-family: var(--display); font-weight: 500; font-size: 1.1rem; }

/* marquee */
.marquee { border-block: 1px solid var(--stone); padding-block: 1.4rem; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 3.5rem; animation: marquee 40s linear infinite; }
.marquee__track span { font-family: var(--display); font-style: italic; font-size: 1.7rem; color: var(--ink); font-weight: 400; display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee__track span::after { content: "✦"; color: var(--terra); font-style: normal; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 9. Grilles ---------- */
.grid { display: grid; gap: clamp(1.4rem, 2.5vw, 2.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 6rem); align-items: center; }
.section-head { max-width: 660px; margin-bottom: clamp(2.8rem, 4vw, 4.5rem); }
.section-head.center { margin-inline: auto; }

/* ---------- 10. Cartes lookbook (accueil) ---------- */
.feature {
  background: transparent; overflow: hidden;
  transition: transform .6s var(--ease);
  display: flex; flex-direction: column;
}
.feature__visual { aspect-ratio: 4/5; margin-bottom: 1.3rem; }
.feature__visual .visual, .feature .visual { transition: transform 1.2s var(--ease); }
.feature:hover .feature__visual { transform: translateY(-6px); }
.feature__body { display: flex; flex-direction: column; gap: .5rem; }
.feature__num { font-family: var(--display); font-style: italic; color: var(--terra); font-size: 1rem; }
.feature__body h3 { font-size: 1.6rem; }
.feature__foot { margin-top: .8rem; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--stone); }
.feature__price { font-family: var(--display); font-size: 1.3rem; font-style: italic; }

/* ---------- 11. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.stats > div { text-align: center; }
.stat__num { font-family: var(--display); font-weight: 400; font-size: clamp(3rem, 2rem + 3.5vw, 5rem); color: var(--terra); line-height: 1; display: inline-flex; align-items: baseline; }
.stat__suffix { font-size: .42em; font-weight: 400; margin-left: .05em; }
.stat__label { margin-top: .9rem; font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); }

/* ---------- 12. Section sombre ---------- */
.dark { background: var(--basalt); color: var(--sand); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--sand); }
.dark .muted { color: rgba(255,255,255,.55); }
.dark .eyebrow { color: rgba(255,255,255,.6); }
.dark .stat__num { color: var(--terra-soft); }
.dark .divider { background: rgba(255,255,255,.14); }

/* ---------- 13. Accordéon prestations ---------- */
.cat-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 3rem; }
.cat-nav button {
  padding: .7em 1.3em; border-radius: 100px; border: 1px solid var(--stone);
  font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); background: transparent; transition: .35s var(--ease);
}
.cat-nav button:hover { border-color: var(--ink); color: var(--ink); }
.cat-nav button.active { background: var(--ink); color: var(--sand); border-color: var(--ink); }

.accordion { border-top: 1px solid var(--stone); }
.acc-item { border-bottom: 1px solid var(--stone); }
.acc-head { width: 100%; display: flex; align-items: center; gap: 1.5rem; padding: 1.7rem .5rem; text-align: left; transition: padding .4s var(--ease); }
.acc-head:hover { padding-left: 1.3rem; }
.acc-head:hover .acc-title { color: var(--terra-deep); font-style: italic; }
.acc-title { font-family: var(--display); font-size: clamp(1.3rem, 1rem + 1.1vw, 2rem); font-weight: 400; flex: 1; transition: color .35s var(--ease); }
.acc-dur { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.acc-price { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--terra); white-space: nowrap; min-width: 5rem; text-align: right; }
.acc-toggle { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--stone); display: grid; place-items: center; flex: none; transition: .4s var(--ease); font-size: 1.1rem; font-weight: 300; }
.acc-item.open .acc-toggle { background: var(--ink); color: var(--sand); transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.acc-panel__inner { padding: 0 .5rem 2rem; max-width: 640px; }
.acc-panel__inner .muted { margin-bottom: 1.1rem; }
.acc-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; padding: .45em 1em; border-radius: 100px; background: var(--sage-soft); color: var(--sage-deep); font-weight: 500; }

/* ---------- 14. Témoignages ---------- */
.quote-card { background: var(--cream); border: 1px solid var(--stone); border-radius: var(--radius-lg); padding: 2.4rem; display: flex; flex-direction: column; gap: 1.4rem; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card .mark { font-family: var(--display); font-size: 3.5rem; line-height: .5; color: var(--terra); height: 1.4rem; }
.quote-card p { font-size: 1.1rem; font-family: var(--display); font-style: italic; line-height: 1.5; color: var(--ink); }
.quote-card .who { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(140deg, var(--terra-soft), var(--sage-soft)); flex: none; }
.quote-card .who small { color: var(--ink-soft); font-size: .76rem; letter-spacing: .06em; }
.quote-card .who strong { font-weight: 500; }

/* ---------- 15. CTA bande ---------- */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(3.5rem, 5vw, 7rem); text-align: center; }
.cta-band .leaf { opacity: .12; }

/* ---------- 16. Footer ---------- */
.footer { background: var(--basalt); color: var(--sand); padding-top: clamp(4.5rem, 5vw, 7rem); }
.footer a { color: rgba(255,255,255,.7); transition: color .3s var(--ease); }
.footer a:hover { color: var(--terra-soft); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 4.5rem; }
.footer h4 { font-family: var(--body); font-size: .66rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.4rem; font-weight: 500; }
.footer ul li { margin-bottom: .8rem; color: rgba(255,255,255,.7); font-size: .92rem; }
.footer__brand .brand__name { color: var(--sand); font-size: 2.2rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* ---------- 17. Page header ---------- */
.page-hero { padding-top: clamp(3rem, 4vw, 5rem); padding-bottom: clamp(2.5rem, 3vw, 4rem); }
.crumbs { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.8rem; }
.crumbs a:hover { color: var(--terra-deep); }

/* ---------- 18. Réservation ---------- */
.steps { display: flex; gap: .5rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: .7rem; padding: .65rem 1.1rem; border-radius: 100px; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); background: transparent; border: 1px solid var(--stone); }
.step b { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--ink); font-size: .72rem; font-weight: 500; }
.step.active { color: var(--ink); border-color: var(--ink); }
.step.active b { background: var(--terra); color: #fff; }
.step.done b { background: var(--sage); color: #fff; }

.booking { display: grid; grid-template-columns: 1.45fr .85fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.panel { background: var(--cream); border: 1px solid var(--stone); border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.5vw, 2.4rem); }

.svc-pick { display: grid; gap: .7rem; }
.svc-opt { display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.4rem; border: 1px solid var(--stone); border-radius: 12px; cursor: pointer; transition: .35s var(--ease); background: var(--sand); }
.svc-opt:hover { border-color: var(--ink); transform: translateX(5px); }
.svc-opt.sel { border-color: var(--terra); box-shadow: inset 0 0 0 1px var(--terra); }
.svc-opt .tick { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--stone-deep); flex: none; display: grid; place-items: center; transition: .3s var(--ease); color: transparent; font-size: .7rem; }
.svc-opt.sel .tick { background: var(--terra); border-color: var(--terra); color: #fff; }
.svc-opt .meta { flex: 1; }
.svc-opt h4 { font-family: var(--body); font-weight: 500; font-size: 1rem; }
.svc-opt small { color: var(--ink-soft); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.svc-opt .p { font-family: var(--display); font-style: italic; font-size: 1.35rem; color: var(--terra); }

/* calendrier */
.cal__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.cal__top h4 { font-size: 1.4rem; text-transform: capitalize; font-style: italic; }
.cal__nav { display: flex; gap: .5rem; }
.cal__nav button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--stone); display: grid; place-items: center; transition: .3s var(--ease); }
.cal__nav button:hover { background: var(--ink); color: var(--sand); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
.cal__dow { text-align: center; font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); padding-bottom: .7rem; }
.cal__day { aspect-ratio: 1; border-radius: 10px; display: grid; place-items: center; font-size: .92rem; font-weight: 400; transition: .25s var(--ease); border: 1px solid transparent; }
.cal__day.avail { cursor: pointer; color: var(--ink); }
.cal__day.avail:hover { background: var(--mist); border-color: var(--stone-deep); }
.cal__day.off { color: var(--stone-deep); cursor: not-allowed; }
.cal__day.sel { background: var(--terra); color: #fff; }
.cal__day.empty { visibility: hidden; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: .6rem; margin-top: 1.6rem; }
.slot { padding: .75rem; border: 1px solid var(--stone); border-radius: 8px; text-align: center; font-weight: 400; font-size: .88rem; transition: .25s var(--ease); background: var(--sand); }
.slot:hover { border-color: var(--ink); }
.slot.sel { background: var(--ink); color: var(--sand); border-color: var(--ink); }

/* récap */
.summary { position: sticky; top: 110px; }
.summary__visual { aspect-ratio: 16/10; margin-bottom: 1.5rem; border-radius: 12px; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid var(--stone); font-size: .9rem; }
.summary__row span:first-child { color: var(--ink-soft); letter-spacing: .04em; }
.summary__row b { font-weight: 500; text-align: right; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1.2rem; font-family: var(--display); font-size: 1.7rem; }
.summary__total .t { color: var(--terra); font-style: italic; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; color: var(--ink-soft); }
.field input, .field textarea, .field select { width: 100%; padding: .9rem 1rem; border: 1px solid var(--stone); border-radius: 8px; background: var(--sand); font: inherit; font-weight: 300; color: var(--ink); transition: .3s var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--terra); }

/* ---------- 19. Dashboard ---------- */
.dash { display: grid; grid-template-columns: 250px 1fr; min-height: 100dvh; }
.dash__side { background: var(--basalt); color: var(--sand); padding: 2.2rem 1.5rem; display: flex; flex-direction: column; gap: 2.2rem; }
.dash__side .brand__name { color: var(--sand); font-size: 1.5rem; }
.dash__menu { display: flex; flex-direction: column; gap: .25rem; }
.dash__menu a { padding: .85rem 1rem; border-radius: 9px; font-size: .8rem; letter-spacing: .06em; font-weight: 400; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .8rem; transition: .3s var(--ease); }
.dash__menu a:hover { background: rgba(255,255,255,.07); color: var(--sand); }
.dash__menu a.active { background: var(--terra); color: #fff; }
.dash__main { padding: clamp(1.5rem, 3vw, 3rem); background: var(--mist); }
.dash__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-bottom: 2rem; }
.kpi { background: var(--sand); border: 1px solid var(--stone); border-radius: 14px; padding: 1.5rem; box-shadow: var(--shadow-sm); }
.kpi__label { font-size: .66rem; color: var(--ink-soft); letter-spacing: .12em; text-transform: uppercase; }
.kpi__val { font-family: var(--display); font-size: 2.6rem; margin-top: .5rem; line-height: 1; }
.kpi__trend { font-size: .74rem; font-weight: 500; margin-top: .5rem; letter-spacing: .02em; }
.kpi__trend.up { color: var(--sage-deep); }
.kpi__trend.flat { color: var(--ink-soft); }

.dash__cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; }
.card { background: var(--sand); border: 1px solid var(--stone); border-radius: 14px; padding: 1.8rem; box-shadow: var(--shadow-sm); }
.card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.card__head h3 { font-size: 1.4rem; }

.appt { display: flex; align-items: center; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid var(--stone); }
.appt:last-child { border-bottom: 0; }
.appt__time { font-family: var(--display); font-style: italic; font-size: 1.15rem; min-width: 4rem; color: var(--terra); }
.appt__bar { width: 2px; align-self: stretch; border-radius: 2px; background: var(--sage); }
.appt__bar.b2 { background: var(--terra); }
.appt__bar.b3 { background: var(--sage-deep); }
.appt__info { flex: 1; }
.appt__info strong { font-weight: 500; }
.appt__info small { color: var(--ink-soft); display: block; font-size: .8rem; }
.appt__status { font-size: .62rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .4em .9em; border-radius: 100px; }
.st-conf { background: var(--sage-soft); color: var(--sage-deep); }
.st-wait { background: var(--terra-soft); color: var(--terra-deep); }

.mini-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; }
.mini-cal div { aspect-ratio: 1; display: grid; place-items: center; font-size: .78rem; border-radius: 7px; font-weight: 400; }
.mini-cal .dow { color: var(--ink-soft); font-size: .6rem; letter-spacing: .08em; }
.mini-cal .has { background: var(--sage-soft); color: var(--sage-deep); }
.mini-cal .today { background: var(--terra); color: #fff; }

.bar-chart { display: flex; align-items: flex-end; gap: .7rem; height: 160px; margin-top: 1rem; }
.bar-chart .bar { flex: 1; background: linear-gradient(var(--terra), var(--terra-soft)); border-radius: 5px 5px 0 0; position: relative; transition: height .8s var(--ease), background .4s var(--ease); min-height: 6px; }
.bar-chart .bar:hover { background: linear-gradient(var(--terra-deep), var(--terra)); }
.bar-chart .bar span { position: absolute; bottom: -1.7rem; left: 0; right: 0; text-align: center; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- 20. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 5rem); }
.info-row { display: flex; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--stone); }
.info-row .ic { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--stone-deep); color: var(--terra); display: grid; place-items: center; flex: none; font-size: 1.2rem; }
.info-row h4 { font-family: var(--body); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); margin-bottom: .3rem; }
.info-row p { color: var(--ink); font-size: 1rem; }
.map { aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(150deg, #EFEFEF, #DADADA); position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }

/* ---------- 21. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

/* ---------- 22. Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 16/11; max-width: 580px; margin-top: 1.5rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .booking { grid-template-columns: 1fr; }
  .summary { position: static; }
  .dash { grid-template-columns: 1fr; }
  .dash__side { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .dash__menu { flex-direction: row; flex-wrap: wrap; }
  .dash__cols { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .burger { display: flex; }
  .grid-2, .grid-3, .grid-4, .split, .stats, .contact-grid { grid-template-columns: 1fr; }
  .marquee__track span { font-size: 1.3rem; }
  .hero__chip { left: 0; }
  .hero__visual .visual--sm { right: 0; }
}

/* ================================================================
   24. HERO "collage" — cartes photos chevauchées (réf. IVY FACE)
   ================================================================ */
.hero2 {
  position: relative;
  min-height: clamp(580px, 80vh, 860px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding-block: clamp(2.5rem, 5vw, 5rem);
}
.hero2__eyebrow {
  position: relative; z-index: 1;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--terra-deep); margin-bottom: 1.4rem;
}
.hero2__title {
  position: relative; z-index: 1;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.4rem, .8rem + 5.5vw, 5.6rem); line-height: 1.02; letter-spacing: -.03em;
}
.hero2__title em { font-style: italic; color: var(--terra); }

.hero2__cluster {
  position: absolute; top: 51%; left: 50%; transform: translate(-50%, -50%);
  width: min(560px, 84vw); aspect-ratio: 1.32 / 1; z-index: 3; pointer-events: none;
}
.hcard {
  position: absolute; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.hcard .leaf { opacity: .45; }
.hcard--a { width: 37%; aspect-ratio: 4/5; left: 2%; top: 0; }
.hcard--b { width: 40%; aspect-ratio: 4/5; right: 0; top: 15%; z-index: 1; }
.hcard--c { width: 45%; aspect-ratio: 3/4; left: 29%; bottom: -3%; z-index: 2; border: 9px solid var(--sand); }

.hero2__promo {
  position: absolute; left: var(--gutter); bottom: 2rem; z-index: 4;
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}
.hero2__promo::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); }
.hero2__promo:hover { color: var(--terra-deep); }
.hero2__social {
  position: absolute; right: var(--gutter); bottom: 2rem; z-index: 4;
  background: var(--terra); color: #fff; border-radius: 16px; padding: 1rem 1.2rem;
  display: flex; flex-direction: column; gap: .7rem; box-shadow: var(--shadow-md); max-width: 220px;
}
.hero2__social small { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.hero2__social .ico-row { display: flex; gap: .7rem; }
.hero2__social .ico-row a {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.18);
  display: grid; place-items: center; transition: .3s var(--ease); font-size: .9rem;
}
.hero2__social .ico-row a:hover { background: rgba(255,255,255,.32); transform: translateY(-2px); }

@media (max-width: 860px) {
  .hero2 { min-height: 0; justify-content: flex-start; padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero2__cluster {
    position: static; transform: none; margin: 2.5rem auto 0;
    width: min(420px, 92vw); aspect-ratio: auto;
    display: flex; gap: .7rem; justify-content: center; pointer-events: auto;
  }
  .hcard { position: static; inset: auto; width: auto !important; flex: 1; aspect-ratio: 3/4 !important; border: none; }
  .hero2__promo, .hero2__social { position: static; margin-top: 2.2rem; }
  .hero2__social { margin-inline: auto; align-items: center; text-align: center; }
}

/* Hero immersif — image plein cadre en fond (réf. campagne) */
.hero4 {
  position: relative;
  margin-top: -86px; padding-top: 86px;
  min-height: clamp(620px, 90vh, 900px);
  display: flex; align-items: center;
  color: #fff;
  background: #111 url("../img/hero.png") center / cover no-repeat;
}
.hero4::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 34%, rgba(0,0,0,.15) 58%, rgba(0,0,0,.4) 100%);
}
.hero4__inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(3rem, 7vh, 6rem); }
.hero4__content { max-width: 600px; }
.hero4 .display { color: #fff; }
.hero4 .lede { color: rgba(255,255,255,.82); }
.hero4 .eyebrow { color: #fff; }
.hero4 .hero__rating { color: #fff; }
.hero4 .muted { color: rgba(255,255,255,.6); }
.hero4__meta { margin-top: 2.4rem; }

/* CTA contour clair (sur fond sombre) */
.btn--outline-light { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }

/* Bandeau & nav transparents au-dessus du hero (page d'accueil) */
.home .topbar { background: transparent; color: rgba(255,255,255,.75); border-bottom: none; position: relative; z-index: 2; }
.home .topbar span { color: var(--terra); }
.home .nav:not(.scrolled) { background: transparent; box-shadow: none; }
.home .nav:not(.scrolled) .brand__name { color: #fff; }
.home .nav:not(.scrolled) .brand__tag { color: rgba(255,255,255,.7); }
.home .nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,.82); }
.home .nav:not(.scrolled) .nav__links a:hover,
.home .nav:not(.scrolled) .nav__links a.active { color: #fff; }
.home .nav:not(.scrolled) .nav__links a::after { background: #fff; }
.home .nav:not(.scrolled) .burger span { background: #fff; }
.home .nav:not(.scrolled) .nav__cta .btn--primary { background: #fff; color: var(--ink); }
.home .nav:not(.scrolled) .nav__cta .btn--primary:hover { background: var(--terra); color: #fff; }
.burger.open span { background: var(--ink) !important; }

@media (max-width: 860px) {
  .hero4 { min-height: clamp(560px, 86vh, 780px); background-position: 62% center; }
  .hero4::before { background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.74)); }
  .hero4__content { max-width: none; }
}

/* ================================================================
   25. SECTION "directions" — bento de prestations (réf. IVY FACE)
   ================================================================ */
.directions__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: start; }
.directions__text { position: sticky; top: 120px; }
.directions__text .lede { margin: 1.6rem 0 2.2rem; max-width: 38ch; }
.directions__text .lede strong { color: var(--ink); font-weight: 500; }

.directions__bento { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 1.8vw, 1.5rem); }
.bento-col { display: flex; flex-direction: column; gap: clamp(1rem, 1.8vw, 1.5rem); }
.bento-col--down { margin-top: clamp(2.5rem, 6vw, 5rem); }

.svc-tile {
  position: relative; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  display: block; transition: transform .7s var(--ease);
}
.svc-tile::before {
  content: ""; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,.34), transparent 48%);
}
.svc-tile .leaf { opacity: .4; }
.svc-tile:hover { transform: translateY(-6px); }
.svc-tile__label {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); z-index: 4;
  background: rgba(255, 255, 255, .16); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  color: #fff; padding: .65em 1.4em; border-radius: 100px; white-space: nowrap;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  transition: background .4s var(--ease);
}
.svc-tile:hover .svc-tile__label { background: rgba(255,255,255,.28); }

@media (max-width: 960px) {
  .directions__grid { grid-template-columns: 1fr; }
  .directions__text { position: static; }
}
@media (max-width: 520px) {
  .directions__bento { grid-template-columns: 1fr; }
  .bento-col--down { margin-top: 0; }
}

/* ================================================================
   26. FOOTER — logotype géant pleine largeur (réf. EVER)
   ================================================================ */
.footer { overflow: hidden; }
.footer__mark-wrap { padding-block: clamp(2.5rem, 5vw, 5rem) 0; }
.footer__mark { width: 100%; display: block; }
.footer__mark text {
  fill: var(--sand); font-family: var(--display); font-weight: 700;
  letter-spacing: -.02em;
}
.footer__social { display: flex; gap: .6rem; margin-top: .2rem; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .3s var(--ease);
}
.footer__social a:hover { background: var(--terra); border-color: var(--terra); color: #fff; transform: translateY(-2px); }

/* ---------- 23. Accessibilité ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 1.5px solid var(--terra); outline-offset: 3px; border-radius: 2px; }
