/* ═══════════════════════════════════════════════════════════════
   HAMMAM PARADIS — Design System v2
   Palette inchangee · contraste renforce · alignement strict
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Terre / argile */
  --clay:        #B85533;
  --clay-deep:   #9C4528;
  --clay-dark:   #7A3520;
  --clay-ink:    #2A140B;
  /* Noir chaud (sections sombres, contraste max) */
  --noir:        #160A05;
  --noir-2:      #1E0E07;
  /* Or / ocre */
  --ochre:       #C8952A;
  --ochre-deep:  #A67820;
  --gold:        #E8C77A;
  --gold-bright: #F4D98E;
  --gold-soft:   #F0D89A;
  /* Clairs */
  --cream:       #F7EEDC;
  --cream-2:     #FBF5E8;
  --cream-warm:  #EFE0C0;
  --beige:       #E8D5B0;
  /* Encre (texte sur clair) */
  --ink:         #23130B;
  --ink-soft:    #5A3A28;
  --ink-faint:   #8A6A52;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, "Helvetica Neue", sans-serif;

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 78px;
  --ease: cubic-bezier(.22,.7,.2,1);

  --shadow-lg: 0 30px 70px -28px rgba(20,8,3,.55);
  --shadow-md: 0 16px 40px -18px rgba(20,8,3,.45);

  /* Recolore le logo terracotta en crème sur les fonds sombres */
  --logo-on-dark: brightness(0) invert(1) sepia(.14) saturate(1.4) brightness(1.02);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }

body {
  background: var(--noir);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--noir); }

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

/* ── Layout primitives ── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.04;
  letter-spacing: -.01em; margin: 18px 0 18px;
}
.section-head .lede { font-size: 16px; line-height: 1.8; opacity: .82; }

/* ── Typographie utilitaire ── */
.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase; color: var(--ochre-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.005em; line-height: 1.08; }

.gold-rule { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold); margin: 4px 0 18px; }
.gold-rule::before, .gold-rule::after {
  content: ""; height: 1px; flex: 1; max-width: 90px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}
.gold-rule svg { flex-shrink: 0; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Boutons ── */
.btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 15px 30px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  border-radius: 2px; transition: all .3s var(--ease); white-space: nowrap;
}
.btn .arrow { width: 16px; height: 1px; background: currentColor; position: relative; transition: width .3s var(--ease); flex-shrink: 0; }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arrow { width: 24px; }
.btn-primary { background: var(--gold); color: var(--noir); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(232,199,122,.5); }
.btn-ghost { border: 1px solid currentColor; color: var(--cream); }
.btn-ghost:hover { background: rgba(247,238,220,.08); }
.btn-dark { background: var(--clay-dark); color: var(--cream); }
.btn-dark:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ═══════════════════════════════════════════════════════════════
   HEADER — transparent sur le hero, solide au scroll
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  transition: height .4s var(--ease);
}
/* Voile de lisibilite en haut (disparait au scroll) */
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 200%; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,7,3,.5) 0%, rgba(18,7,3,0) 100%);
  transition: opacity .4s var(--ease);
}
.site-header .bar {
  height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 32px;
}

/* Brand — wordmark editorial */
.brand { display: inline-flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-word { font-family: var(--serif); font-weight: 300; font-size: 24px; letter-spacing: .04em; color: var(--cream); line-height: 1; white-space: nowrap; transition: color .35s; }
.brand-word em { font-style: italic; font-weight: 400; color: var(--gold-bright); margin-left: .34em; transition: color .35s; }
.brand-city { padding-left: 13px; border-left: 1px solid rgba(232,199,122,.4); font-size: 8.5px; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); opacity: .9; line-height: 1; transition: color .35s, border-color .35s; }
/* Logo image (remplace le wordmark) */
.brand .logo { height: 40px; width: auto; max-width: 230px; display: block; transition: height .35s var(--ease); }
.brand .logo-light { filter: var(--logo-on-dark); }   /* sur le hero sombre */
.brand .logo-dark { display: none; }                   /* terracotta naturel, sur crème */
.site-header.scrolled .brand .logo { height: 32px; }
.site-header.scrolled .brand .logo-light { display: none; }
.site-header.scrolled .brand .logo-dark { display: block; }
.drawer .brand .logo { filter: var(--logo-on-dark); }  /* menu mobile sombre */

/* Nav */
.nav { display: flex; align-items: center; gap: 24px; margin: 0 auto; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream); opacity: .85; position: relative; padding: 8px 0; transition: opacity .25s, color .25s;
}
.nav-link svg { opacity: .85; flex-shrink: 0; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }
/* Menu deroulant (Rituels) */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-caret { display: inline-flex; transition: transform .25s var(--ease); }
.nav-caret svg { opacity: .7; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-dd { position: absolute; top: 100%; left: 50%; min-width: 234px; transform: translateX(-50%) translateY(8px);
  background: var(--cream-2); border: 1px solid rgba(42,20,11,.12); border-radius: 5px; box-shadow: var(--shadow-md);
  padding: 8px; opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 50; }
.nav-dd::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item:hover .nav-dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(3px); }
.nav-dd a { display: block; padding: 9px 13px; font-family: var(--serif); font-size: 15px; color: var(--ink); border-radius: 3px; white-space: nowrap; transition: background .2s, color .2s; }
.nav-dd a:hover { background: var(--clay-dark); color: var(--cream); }
.nav-dd a.nav-dd-all { margin-top: 6px; padding-top: 12px; border-top: 1px solid rgba(42,20,11,.12); font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--clay-deep); }
.nav-dd a.nav-dd-all:hover { background: var(--clay-dark); color: var(--cream); }

/* Actions droite */
.head-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.head-specials { display: flex; align-items: center; gap: 7px; }
.head-ic { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--gold-bright); border: 1px solid rgba(232,199,122,.45); transition: all .3s var(--ease); }
.head-ic:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); transform: translateY(-1px); }
.site-header.scrolled .head-ic { color: var(--clay-deep); border-color: rgba(122,53,32,.4); }
.site-header.scrolled .head-ic:hover { background: var(--clay-dark); color: var(--cream); border-color: var(--clay-dark); }
.lang-switch { display: inline-flex; align-items: center; }
.lang-switch a { position: relative; padding: 0 10px; font-size: 11px; font-weight: 500; letter-spacing: .14em; color: var(--cream); opacity: .5; transition: opacity .25s, color .25s; }
.lang-switch a + a::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 11px; background: rgba(247,238,220,.3); }
.lang-switch a.active { opacity: 1; color: var(--gold-bright); }
.lang-switch a:not(.active):hover { opacity: .85; }
.head-book {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 24px;
  border: 1px solid rgba(232,199,122,.6); color: var(--cream);
  font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  border-radius: 1px; transition: all .3s var(--ease);
}
.head-book:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--cream); }

/* Etat solide (scrolled) */
.site-header.scrolled { height: 64px; background: rgba(247,238,220,.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(42,20,11,.08), 0 12px 30px -24px rgba(20,8,3,.6); }
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled .brand-word { color: var(--clay-dark); }
.site-header.scrolled .brand-word em { color: var(--clay-deep); }
.site-header.scrolled .brand-city { color: var(--clay-deep); border-color: rgba(122,53,32,.3); }
.site-header.scrolled .nav-link { color: var(--ink); opacity: .72; }
.site-header.scrolled .nav-link:hover { opacity: 1; color: var(--clay-dark); }
.site-header.scrolled .lang-switch a { color: var(--ink); }
.site-header.scrolled .lang-switch a + a::before { background: rgba(42,20,11,.22); }
.site-header.scrolled .lang-switch a.active { color: var(--clay-dark); }
.site-header.scrolled .head-book { border-color: rgba(122,53,32,.5); color: var(--clay-dark); }
.site-header.scrolled .head-book:hover { background: var(--clay-dark); color: var(--cream); border-color: var(--clay-dark); }
.site-header.scrolled .burger { color: var(--ink); }

/* Drawer mobile */
.drawer { position: fixed; inset: 0; z-index: 200; background: var(--noir); display: flex; flex-direction: column; padding: 28px var(--gutter) 40px; transform: translateX(100%); transition: transform .5s var(--ease); visibility: hidden; }
.drawer.open { transform: none; visibility: visible; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-top .x { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--cream); border: 1px solid rgba(247,238,220,.2); border-radius: 50%; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; margin-top: 36px; }
.drawer nav a { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--cream); padding: 11px 0; border-bottom: 1px solid rgba(247,238,220,.1); display: flex; align-items: center; gap: 16px; }
.drawer nav a .di { display: inline-flex; align-items: center; justify-content: center; width: 26px; color: var(--gold); flex-shrink: 0; }
.drawer .dr-special .di { color: var(--gold-bright); }
.drawer-foot { margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.drawer-foot .lang-switch { align-self: flex-start; }
.drawer-foot .row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(247,238,220,.7); }
.drawer-foot .row svg { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 12px) 0 16px;
  background:
    radial-gradient(ellipse 65% 55% at 80% 26%, rgba(244,217,142,.16), transparent 60%),
    linear-gradient(135deg, #9C5031 0%, #7E3D24 52%, #67311D 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .12; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-overlay { display: none; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(36,16,8,.6) 0%, rgba(36,16,8,.4) 45%, rgba(28,12,6,.82) 100%); }

/* Cercles flottants minimalistes (Nos rituels / Visite 3D)
   Conteneur borne a la colonne de gauche (jamais sous le formulaire) */
.hero-orbits { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.orbit { position: absolute; pointer-events: auto; width: 82px; height: 82px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center; color: var(--cream);
  background: radial-gradient(circle at 38% 30%, rgba(58,28,15,.5), rgba(26,12,7,.42));
  border: 1px solid rgba(232,199,122,.5);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 14px 26px -12px rgba(20,8,3,.6), inset 0 1px 2px rgba(255,255,255,.14);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.orbit-in { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 6px; }
.orbit-in svg { color: var(--gold-bright); }
.orbit-in b { font-size: 8.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; line-height: 1.1; color: var(--cream); max-width: 72px; }
.orbit:hover { transform: scale(1.09); animation-play-state: paused; border-color: var(--gold-bright);
  box-shadow: 0 18px 32px -12px rgba(20,8,3,.66), inset 0 1px 2px rgba(255,255,255,.18); }
.orbit-1 { right: 7%; top: -2%; animation: floatA 9s ease-in-out infinite; }
.orbit-2 { right: 27%; top: 16%; animation: floatB 11s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translate(0,0); } 25% { transform: translate(7px,-9px); } 50% { transform: translate(1px,-15px); } 75% { transform: translate(-7px,-7px); } }
@keyframes floatB { 0%,100% { transform: translate(0,0); } 25% { transform: translate(-9px,-7px); } 50% { transform: translate(-2px,-15px); } 75% { transform: translate(8px,-6px); } }
/* Grille 2x2 : rangee 1 = [carousel | formulaire] (memes hauteurs/bas alignes),
   rangee 2 = [texte | avis TripAdvisor] */
.hero-inner { position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 430px; grid-template-rows: auto auto;
  column-gap: clamp(20px,3vw,44px); row-gap: clamp(13px,1.8vw,20px); align-items: stretch; }
.hero-carousel { grid-column: 1; grid-row: 1; position: relative; min-height: 300px; border-radius: 5px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-form { grid-column: 2; grid-row: 1; }
.hero-text { grid-column: 1; grid-row: 2; position: relative; min-width: 0; }
.hero-ta { grid-column: 2; grid-row: 2; align-self: start; }
.hc-track { display: flex; height: 100%; transition: transform .9s var(--ease); }
.hc-slide { position: relative; flex: 0 0 100%; height: 100%;
  background-image: var(--img), linear-gradient(155deg, var(--clay) 0%, var(--clay-dark) 60%, var(--clay-ink) 100%);
  background-size: cover; background-position: center; }
.hc-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(26,11,5,.5)); }
.hc-dots { position: absolute; bottom: 14px; left: 0; right: 0; z-index: 2; display: flex; gap: 8px; justify-content: center; }
.hc-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(247,238,220,.5); transition: all .3s var(--ease); }
.hc-dots button.active { background: var(--gold); width: 24px; border-radius: 4px; }

.hero-text .eyebrow { color: var(--gold-bright); }
.hero-text h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(30px,3.6vw,50px); line-height: 1; letter-spacing: .01em; color: var(--cream); margin: 9px 0 9px; }
.hero-text h1 em { font-style: italic; color: var(--gold-bright); }
.hero-text .tag { font-family: var(--serif); font-style: italic; font-size: clamp(14px,1.4vw,18px); line-height: 1.45; color: var(--gold-soft); max-width: 440px; }
.hero-text .city { margin-top: 10px; font-size: 9.5px; letter-spacing: .4em; text-transform: uppercase; color: rgba(247,238,220,.82); display: inline-flex; align-items: center; gap: 12px; }
.hero-text .city::before { content: ""; width: 28px; height: 1px; background: var(--gold); }

/* ── Formulaire ── */
.hero-form { background: var(--cream-2); color: var(--ink); border-radius: 5px; box-shadow: var(--shadow-lg); padding: clamp(15px,1.5vw,20px); }
.hf-head { margin-bottom: 9px; }
.hf-logo { height: 26px; width: auto; display: block; margin-bottom: 6px; }
.hf-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(18px,2vw,22px); color: var(--ink); line-height: 1.1; }
.hf-head p { font-size: 11px; color: var(--clay-deep); margin-top: 4px; display: flex; align-items: center; gap: 7px; }
.hf-field { margin-bottom: 7px; }
.hf-label { display: flex; align-items: baseline; gap: 8px; font-size: 9.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 5px; }
.hf-hint { font-weight: 500; letter-spacing: .02em; text-transform: none; color: var(--ink-faint); font-size: 10px; }
.hf-field input[type=text], .hf-field input[type=tel], .hf-field input[type=date], .hf-field input[type=email], .hf-field select {
  width: 100%; padding: 9px 12px; font-family: var(--sans); font-size: 13.5px; color: var(--ink);
  background: #fff; border: 1px solid rgba(42,20,11,.18); border-radius: 3px; transition: border-color .2s, box-shadow .2s; }
.hf-field input:focus, .hf-field select:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(184,85,51,.12); }
.hf-row { display: grid; gap: 9px; }
.hf-row-3 { grid-template-columns: 1.1fr 1fr .9fr; }
.hf-row-contact { grid-template-columns: 1fr 1fr; }
/* Indicatif integre dans la case du numero (un seul cadre) */
.hf-phone-inner { display: flex; align-items: stretch; background: #fff; border: 1px solid rgba(42,20,11,.18); border-radius: 3px; transition: border-color .2s, box-shadow .2s; }
.hf-phone-inner:focus-within { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(184,85,51,.12); }
.hf-phone-inner select { flex: 0 0 auto; width: auto; border: 0; border-radius: 0; background: transparent; box-shadow: none; padding: 9px 4px 9px 11px; color: var(--ink-soft); font-weight: 500; }
.hf-phone-inner input { flex: 1 1 auto; min-width: 0; border: 0; border-left: 1px solid rgba(42,20,11,.12); border-radius: 0; background: transparent; box-shadow: none; padding-left: 10px; }
.hf-phone-inner select:focus, .hf-phone-inner input:focus { box-shadow: none; border-color: transparent; }
.hf-phone-inner input:focus { border-left-color: rgba(42,20,11,.12); }
.hf-field-svc { position: relative; }
.hf-chips { display: flex; flex-wrap: nowrap; gap: 6px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.hf-chips::-webkit-scrollbar { display: none; }
.hf-chip { flex: 0 0 auto; scroll-snap-align: start; }
.hf-chip input { position: absolute; opacity: 0; pointer-events: none; }
.hf-chip span { display: inline-block; white-space: nowrap; padding: 6px 13px; font-size: 12px; border: 1px solid rgba(42,20,11,.2); border-radius: 999px; color: var(--ink-soft); cursor: pointer; transition: all .2s var(--ease); user-select: none; }
.hf-chip span:hover { border-color: var(--clay); color: var(--ink); }
.hf-chip input:checked + span { background: var(--clay-dark); border-color: var(--clay-dark); color: var(--cream); }
.hf-chip input:focus-visible + span { outline: 2px solid var(--clay); outline-offset: 2px; }

/* Carte de previsualisation du soin */
.svc-preview { width: 230px; max-width: 100%; background: #fff; border: 1px solid rgba(42,20,11,.16); border-radius: 5px; box-shadow: var(--shadow-md); overflow: hidden; }
.svc-preview[hidden] { display: none; }
.svc-pv-media { aspect-ratio: 16 / 9; background-image: var(--pv, linear-gradient(155deg, var(--clay), var(--clay-ink))); background-size: cover; background-position: center; }
.svc-pv-body { padding: 9px 12px 11px; }
.svc-pv-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.svc-pv-name { font-family: var(--serif); font-size: 15px; color: var(--ink); line-height: 1.1; }
.svc-pv-price { font-family: var(--serif); font-size: 15px; color: var(--clay-dark); white-space: nowrap; }
.svc-pv-price::after { content: " MAD"; font-family: var(--sans); font-size: 8.5px; letter-spacing: .08em; color: var(--ink-faint); }
.svc-pv-desc { font-size: 11px; line-height: 1.45; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
/* Desktop : popover flottant au survol */
@media (hover: hover) {
  .svc-preview { position: absolute; z-index: 40; top: 100%; left: 0; margin-top: 6px; }
}
/* Tactile : carte inline sous les chips (au tap) */
@media (hover: none) {
  .svc-preview { margin-top: 9px; }
}
.hf-rgpd { display: flex; gap: 9px; align-items: flex-start; margin: 9px 0; cursor: pointer; }
.hf-rgpd input { margin-top: 2px; width: 15px; height: 15px; accent-color: var(--clay-dark); flex-shrink: 0; }
.hf-rgpd span { font-size: 11px; line-height: 1.45; color: var(--ink-soft); }
.hf-rgpd a { color: var(--clay-deep); text-decoration: underline; }
.hf-actions { display: flex; gap: 9px; align-items: stretch; }
.hf-submit { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 18px; background: var(--clay-dark); color: var(--cream); font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; border-radius: 3px; transition: all .3s var(--ease); }
.hf-submit:hover { background: var(--clay-deep); }
.hf-submit .arrow { width: 14px; height: 1px; background: currentColor; position: relative; }
.hf-submit .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.hf-wa { display: inline-flex; align-items: center; gap: 8px; padding: 0 15px; border-radius: 3px; background: rgba(37,211,102,.12); color: #1FA855; border: 1px solid rgba(37,211,102,.4); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; transition: all .25s; }
.hf-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.hf-msg { margin-top: 10px; font-size: 12px; padding: 9px 11px; border-radius: 3px; }
.hf-msg.err { background: rgba(184,85,51,.1); color: var(--clay-dark); }
.hf-msg.ok { background: rgba(37,211,102,.14); color: #1B7A42; }

/* ── Avis TripAdvisor (scroller) ── */
.hero-ta { background: rgba(255,255,255,.07); border: 1px solid rgba(247,238,220,.18); border-radius: 5px; padding: 9px 0; overflow: hidden; backdrop-filter: blur(6px); }
.hta-head { display: flex; align-items: center; gap: 10px; padding: 0 14px 8px; }
.ta-logo { display: inline-flex; align-items: center; gap: 8px; }
.ta-logo b { font-weight: 800; font-size: 15px; letter-spacing: -.01em; color: var(--cream); }
.hta-bubbles { color: #00E08A; letter-spacing: 1.5px; font-size: 10px; }
.hta-rating { margin-left: auto; display: flex; align-items: center; gap: 9px; }
.hta-score { font-family: var(--serif); font-weight: 400; font-size: 23px; line-height: 1; color: var(--gold-bright); }
.hta-score i { font-style: normal; font-size: 11px; color: rgba(247,238,220,.55); margin-left: 1px; }
.hta-rcol { display: flex; flex-direction: column; gap: 2px; }
.hta-count { font-size: 8.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(247,238,220,.6); }
.hta-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.hta-track { display: flex; gap: 10px; width: max-content; padding: 0 12px; animation: htaScroll 40s linear infinite; }
.hero-ta:hover .hta-track { animation-play-state: paused; }
.hta-card { flex: 0 0 208px; display: flex; flex-direction: column; gap: 5px; background: rgba(36,16,8,.4); border: 1px solid rgba(247,238,220,.12); border-radius: 4px; padding: 10px 13px; }
.hta-card .hta-bubbles { font-size: 9px; }
.hta-title { font-family: var(--serif); font-size: 14px; color: var(--cream); line-height: 1.1; }
.hta-text { font-size: 11px; line-height: 1.45; color: rgba(247,238,220,.72); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hta-src { display: flex; align-items: center; gap: 6px; font-size: 8.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(247,238,220,.5); margin-top: 1px; }
@keyframes htaScroll { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════
   AVIS GOOGLE — bande de preuve sociale (apres le hero)
   ═══════════════════════════════════════════════════════════════ */
.greviews { background: var(--cream-2); color: var(--ink); padding: clamp(64px,8vw,104px) 0; border-bottom: 1px solid rgba(42,20,11,.08); }
.gr-grid { display: grid; grid-template-columns: .92fr 1.6fr; gap: clamp(40px,5vw,72px); align-items: center; }

.gr-aggregate .eyebrow { color: var(--clay-deep); }
.gr-title { font-family: var(--serif); font-weight: 300; font-size: clamp(30px,3.6vw,46px); line-height: 1.05; color: var(--ink); margin: 16px 0 24px; }
.gr-score { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.gr-num { font-family: var(--serif); font-weight: 300; font-size: 76px; line-height: .9; color: var(--clay-dark); }
.gr-score-meta { line-height: 1.3; }
.gr-stars { color: var(--gold); font-size: 19px; letter-spacing: .12em; }
.gr-count { font-size: 12px; font-weight: 500; letter-spacing: .08em; color: var(--ink-soft); margin-top: 4px; }
.gr-cta { display: inline-flex; align-items: center; gap: 11px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); padding: 13px 22px; border: 1px solid rgba(42,20,11,.2); border-radius: 1px; transition: all .3s var(--ease); }
.gr-cta:hover { border-color: var(--clay-dark); background: var(--clay-dark); color: var(--cream); }
.gr-cta .arrow { width: 14px; height: 1px; background: currentColor; position: relative; transition: width .3s var(--ease); }
.gr-cta .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.gr-cta:hover .arrow { width: 22px; }

.gr-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gr-cards .gr-card:nth-child(even) { margin-top: 26px; }
.gr-card { background: #fff; border: 1px solid rgba(42,20,11,.1); border-radius: 2px; padding: 22px 22px 24px; box-shadow: 0 10px 30px -22px rgba(20,8,3,.5); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.gr-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -24px rgba(20,8,3,.55); }
.gr-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.gr-av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 16px; font-family: var(--serif); }
.gr-id { flex: 1; min-width: 0; line-height: 1.3; }
.gr-name { display: block; font-weight: 600; font-size: 14px; color: var(--ink); }
.gr-when { display: block; font-size: 11.5px; color: var(--ink-faint); margin-top: 2px; }
.gr-g { flex-shrink: 0; opacity: .9; }
.gr-rate { color: var(--gold); font-size: 14px; letter-spacing: .1em; margin-bottom: 10px; }
.gr-text { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); }

/* ═══════════════════════════════════════════════════════════════
   RITUALS — section claire, grille alignee
   ═══════════════════════════════════════════════════════════════ */
.rituals { background: var(--cream); color: var(--ink); padding: clamp(80px,10vw,140px) 0; }
.rituals .eyebrow { color: var(--clay-deep); }
.rituals .section-head .lede { color: var(--ink-soft); }

.ritual-list { margin-top: clamp(48px, 6vw, 80px); display: flex; flex-direction: column; gap: 28px; }
.ritual {
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch;
  border: 1px solid rgba(42,20,11,.14); background: var(--cream-2); overflow: hidden;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease), border-color .4s;
}
.ritual:hover { box-shadow: var(--shadow-md); border-color: rgba(122,53,32,.3); transform: translateY(-3px); }
.ritual.featured { border-color: rgba(168,120,32,.5); }
.ritual:nth-child(even) { grid-template-columns: 1fr 1.05fr; }
.ritual:nth-child(even) .r-media { order: 2; }

/* Media (placeholder elegant si pas de photo) */
.r-media {
  position: relative; min-height: 340px;
  background:
    linear-gradient(135deg, rgba(42,20,11,.18), rgba(122,53,32,.32)),
    linear-gradient(160deg, var(--clay) 0%, var(--clay-dark) 60%, var(--clay-ink) 100%);
  background-size: cover; background-position: center; overflow: hidden;
}
.r-media[data-img] { background-image: var(--img), linear-gradient(160deg, var(--clay), var(--clay-ink)); }
.r-media .watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(247,238,220,.16); }
.r-media .watermark svg { width: 46%; height: auto; max-width: 200px; }
.r-media .tier { position: absolute; top: 18px; left: 18px; font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--noir); background: var(--gold); padding: 6px 12px; }
.r-media .num { position: absolute; bottom: 14px; right: 20px; font-family: var(--serif); font-style: italic; font-size: 72px; line-height: 1; color: rgba(247,238,220,.22); }

/* Corps */
.r-body { padding: clamp(28px, 3.4vw, 46px); display: flex; flex-direction: column; }
.r-duration { font-size: 9.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.r-duration .badge { background: var(--clay-dark); color: var(--cream); padding: 3px 9px; letter-spacing: .2em; }
.r-body h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.2vw, 42px); color: var(--ink); line-height: 1.04; margin-bottom: 14px; }
.r-desc { font-size: 14.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 22px; }
.r-steps { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.r-steps li { font-size: 13px; color: var(--ink-soft); padding: 9px 0; border-top: 1px solid rgba(42,20,11,.1); display: flex; align-items: center; gap: 12px; }
.r-steps li:last-child { border-bottom: 1px solid rgba(42,20,11,.1); }
.r-steps li::before { content: ""; width: 5px; height: 5px; border: 1px solid var(--clay-deep); transform: rotate(45deg); flex-shrink: 0; }
.r-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-top: 8px; flex-wrap: wrap; }
.r-price { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 4vw, 50px); color: var(--clay-dark); line-height: 1; }
.r-price small { display: block; font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-faint); margin-top: 5px; }
.r-cta { display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px; background: var(--clay-dark); color: var(--cream); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; transition: all .3s var(--ease); }
.r-cta:hover { background: var(--clay-deep); gap: 16px; }
.r-cta .arrow { width: 14px; height: 1px; background: currentColor; position: relative; }
.r-cta .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }

/* ═══════════════════════════════════════════════════════════════
   DUO — split sombre/photo
   ═══════════════════════════════════════════════════════════════ */
.duo { background: var(--clay-ink); color: var(--cream); }
.duo-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 660px; max-width: 1320px; margin: 0 auto; }
.duo-photo {
  position: relative;
  background:
    linear-gradient(120deg, rgba(42,20,11,.15), rgba(42,20,11,.55)),
    linear-gradient(160deg, var(--clay) 0%, var(--clay-dark) 70%);
  background-size: cover; background-position: center 20%;
}
.duo-photo[data-img] { background-image: var(--img), linear-gradient(160deg, var(--clay), var(--clay-dark)); }
.duo-photo .wm { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(247,238,220,.12); }
.duo-photo .wm svg { width: 38%; max-width: 200px; }
.duo-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 6vw, 86px) clamp(28px, 5vw, 70px); position: relative; }
.duo-body .eyebrow { color: var(--gold); margin-bottom: 16px; }
.duo-body h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 4.6vw, 64px); line-height: 1.02; margin-bottom: 22px; }
.duo-body h2 em { font-style: italic; color: var(--gold-bright); }
.duo-quote { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.6; color: var(--gold-soft); padding-left: 18px; border-left: 2px solid var(--gold); margin-bottom: 22px; }
.duo-body .desc { font-size: 14.5px; line-height: 1.8; color: rgba(247,238,220,.78); margin-bottom: 26px; max-width: 460px; }
.duo-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; margin-bottom: 30px; }
.duo-features li { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(247,238,220,.82); padding: 9px 0; border-bottom: 1px solid rgba(247,238,220,.12); }
.duo-features li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.duo-price { display: flex; align-items: baseline; gap: 14px; padding: 20px 0; margin-bottom: 26px; border-top: 1px solid rgba(247,238,220,.16); border-bottom: 1px solid rgba(247,238,220,.16); }
.duo-price .p { font-family: var(--serif); font-weight: 300; font-size: 50px; color: var(--gold-bright); line-height: 1; }
.duo-price .c { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(247,238,220,.6); }
.duo-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   AWARDS — bandeau sombre
   ═══════════════════════════════════════════════════════════════ */
.awards { background: var(--noir); color: var(--cream); overflow: hidden; padding: 30px 0; border-top: 1px solid rgba(232,199,122,.16); border-bottom: 1px solid rgba(232,199,122,.16); }
.marquee { display: flex; gap: 72px; width: max-content; animation: marquee 40s linear infinite; }
.awards:hover .marquee { animation-play-state: paused; }
.aw-item { display: inline-flex; align-items: center; gap: 16px; flex-shrink: 0; }
.aw-item .badge { width: 46px; height: 46px; color: var(--gold); flex-shrink: 0; }
.aw-item .top { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold-bright); }
.aw-item .bot { font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: rgba(247,238,220,.6); margin-top: 2px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS — cinematique sombre
   ═══════════════════════════════════════════════════════════════ */
.testimonials { background: var(--noir-2); color: var(--cream); padding: clamp(80px,10vw,130px) 0 0; position: relative; overflow: hidden; }
.testimonials::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(184,85,51,.22), transparent 60%); }
.testimonials .container { position: relative; z-index: 1; }
.testimonials .eyebrow { color: var(--gold); }
.t-wrap { display: grid; grid-template-columns: 250px 1fr; gap: 64px; align-items: center; margin-top: clamp(40px,5vw,64px); }
.t-score { text-align: center; border: 1px solid rgba(232,199,122,.24); padding: 36px 24px; position: relative; background: rgba(255,255,255,.02); }
.t-score::before, .t-score::after { content: ""; position: absolute; width: 16px; height: 16px; border: 1px solid var(--gold); }
.t-score::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.t-score::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.t-score .num { font-family: var(--serif); font-weight: 300; font-size: 80px; line-height: 1; color: var(--gold-bright); }
.t-score .stars { font-size: 17px; color: var(--gold); letter-spacing: .14em; margin-top: 4px; }
.t-score .meta { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,238,220,.55); margin-top: 12px; line-height: 1.6; }
.t-score .src { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(232,199,122,.16); }
.t-score .src svg { color: var(--gold); }
.t-score .src span { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,238,220,.55); }
.t-stage { position: relative; min-height: 240px; }
.t-quote { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity .7s var(--ease), transform .7s var(--ease); display: flex; flex-direction: column; gap: 16px; }
.t-quote.active { opacity: 1; transform: none; }
.t-quote .mark { font-family: var(--serif); font-size: 80px; line-height: .5; color: var(--gold); opacity: .45; }
.t-quote .body { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(19px, 2vw, 26px); line-height: 1.55; color: var(--cream); max-width: 640px; }
.t-quote .who { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.t-quote .who span { color: rgba(247,238,220,.5); margin-left: 10px; }
.t-controls { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.t-controls .arrows { display: flex; gap: 8px; }
.t-controls .arrows button { width: 38px; height: 38px; border: 1px solid rgba(232,199,122,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); transition: all .3s; }
.t-controls .arrows button:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.t-controls .dots { display: flex; gap: 8px; }
.t-controls .dots button { width: 26px; height: 2px; background: rgba(232,199,122,.22); transition: all .3s; }
.t-controls .dots button.active { background: var(--gold); width: 42px; }
.t-controls .count { margin-left: auto; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }

/* Bandeau TripAdvisor */
.ta-band { margin-top: clamp(56px,7vw,84px); background: rgba(0,0,0,.22); border-top: 1px solid rgba(232,199,122,.2); padding: 30px 0; }
.ta-inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.ta-medal { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ta-medal svg { width: 52px; height: 52px; color: var(--gold-bright); }
.ta-medal span { font-size: 7.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.ta-div { width: 1px; height: 50px; background: rgba(232,199,122,.25); }
.ta-body { text-align: center; }
.ta-body .t { font-family: var(--serif); font-weight: 300; font-size: clamp(19px, 2vw, 26px); color: var(--cream); }
.ta-body .t em { font-style: italic; color: var(--gold-bright); }
.ta-body .s { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(247,238,220,.55); margin-top: 6px; }
.ta-body .stars { color: var(--gold); font-size: 15px; letter-spacing: .1em; margin-top: 6px; }
.ta-score { font-family: var(--serif); font-weight: 300; font-size: 46px; color: var(--gold-bright); line-height: 1; text-align: center; }
.ta-score small { display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,238,220,.5); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════
   FAQ — section claire
   ═══════════════════════════════════════════════════════════════ */
.faq { background: var(--cream); color: var(--ink); padding: clamp(80px,10vw,130px) 0; }
.faq .eyebrow { color: var(--clay-deep); }
.faq .section-head .lede { color: var(--ink-soft); }
.faq-layout { display: grid; grid-template-columns: 300px 1fr; gap: 56px; margin-top: clamp(44px,5vw,72px); }
.faq-side { position: sticky; top: 100px; align-self: start; }
.faq-side .label { font-size: 10px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 14px; }
.faq-side h3 { font-family: var(--serif); font-weight: 400; font-size: 28px; color: var(--ink); margin-bottom: 16px; }
.faq-side p { font-size: 14px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 24px; }
.faq-card { border: 1px solid rgba(42,20,11,.18); background: var(--cream-2); padding: 22px; }
.faq-card .row { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid rgba(42,20,11,.1); font-size: 13px; color: var(--ink-soft); }
.faq-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.faq-card .row svg { color: var(--clay-deep); flex-shrink: 0; margin-top: 2px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(42,20,11,.2); position: relative; }
.faq-item:last-child { border-bottom: 1px solid rgba(42,20,11,.2); }
.faq-item .n { position: absolute; left: 0; top: 27px; font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--clay-deep); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0 24px 48px; font-family: var(--serif); font-weight: 400; font-size: clamp(19px, 1.9vw, 24px); color: var(--ink); transition: color .25s; }
.faq-q:hover { color: var(--clay-deep); }
.faq-q .plus { width: 28px; height: 28px; flex-shrink: 0; position: relative; border: 1px solid rgba(42,20,11,.3); border-radius: 50%; transition: all .3s; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--clay-deep); }
.faq-q .plus::before { width: 10px; height: 1px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1px; height: 10px; transform: translate(-50%,-50%); transition: transform .3s, opacity .3s; }
.faq-item.open .faq-q .plus { background: var(--clay-deep); border-color: var(--clay-deep); }
.faq-item.open .faq-q .plus::before { background: var(--cream); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; padding-left: 48px; font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); transition: max-height .45s var(--ease), padding .4s var(--ease), opacity .4s; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 28px; opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   BOOKING — sombre
   ═══════════════════════════════════════════════════════════════ */
.booking { background: radial-gradient(ellipse 55% 60% at 50% 0%, rgba(184,85,51,.3), transparent 70%), linear-gradient(180deg, var(--clay-dark), var(--noir)); padding: clamp(80px,10vw,120px) 0; text-align: center; }
.booking .eyebrow { color: var(--gold); }
.booking .section-head .lede { color: rgba(247,238,220,.72); }
.booking-bar { max-width: 1060px; margin: clamp(40px,5vw,56px) auto 0; padding: 0 var(--gutter); }
.bb-phase { animation: phaseIn .5s var(--ease); }
@keyframes phaseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.bb-bar { background: var(--cream); display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr auto; border: 1px solid rgba(232,199,122,.3); box-shadow: var(--shadow-lg); position: relative; text-align: left; }
.bb-bar::before, .bb-bar::after { content: ""; position: absolute; width: 20px; height: 20px; border: 1px solid var(--gold); }
.bb-bar::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.bb-bar::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.bb-field { padding: 16px 20px; border-right: 1px solid rgba(42,20,11,.1); display: flex; flex-direction: column; gap: 5px; cursor: pointer; position: relative; transition: background .2s; }
.bb-field:hover { background: var(--cream-warm); }
.bb-field .lbl { font-size: 9px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--clay-deep); display: flex; align-items: center; gap: 7px; }
.bb-field .val { font-family: var(--serif); font-size: 17px; color: var(--ink); }
.bb-field .val.ph { color: rgba(74,46,31,.5); font-style: italic; }
.bb-field input { border: 0; outline: 0; background: transparent; font-family: var(--serif); font-size: 17px; color: var(--ink); width: 100%; padding: 0; cursor: pointer; }
.bb-field input::placeholder { color: rgba(74,46,31,.4); font-style: italic; }
.bb-locked { background: rgba(184,85,51,.07); cursor: default; }
.bb-action { background: var(--clay-dark); color: var(--cream); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 30px; transition: background .3s, gap .3s; }
.bb-action:hover:not(:disabled) { background: var(--clay-deep); gap: 18px; }
.bb-action:disabled { opacity: .5; cursor: not-allowed; }
.bb-action .arrow { width: 13px; height: 1px; background: currentColor; position: relative; }
.bb-action .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.bb-drop { position: absolute; top: calc(100% + 4px); left: 0; min-width: 100%; background: var(--cream); border: 1px solid rgba(232,199,122,.4); box-shadow: var(--shadow-md); z-index: 30; padding: 6px 0; display: none; }
.bb-field.up .bb-drop { top: auto; bottom: calc(100% + 4px); }
.bb-field.open .bb-drop { display: block; }
.bb-opt { padding: 11px 20px; font-family: var(--serif); font-size: 15px; color: var(--ink); display: flex; justify-content: space-between; gap: 12px; transition: background .15s; }
.bb-opt:hover { background: var(--cream-warm); }
.bb-opt small { font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--ochre-deep); }
.bb-aux { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; gap: 16px; flex-wrap: wrap; }
.bb-aux .grp { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bb-info { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,238,220,.55); display: inline-flex; align-items: center; gap: 8px; }
.bb-info svg { color: var(--gold); }
.bb-wa { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: rgba(37,211,102,.1); color: #25D366; border: 1px solid rgba(37,211,102,.4); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; transition: all .3s; }
.bb-wa:hover { background: #25D366; color: #06140C; }
/* Confirmation */
.bb-done { padding: 36px; text-align: center; }
.bb-done .ic { width: 52px; height: 52px; margin: 0 auto 20px; color: var(--gold); }
.bb-done h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(26px,3vw,38px); color: var(--cream); margin-bottom: 14px; }
.bb-done p { color: rgba(247,238,220,.72); font-size: 15px; line-height: 1.75; max-width: 460px; margin: 0 auto 28px; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact { background: var(--noir); color: var(--cream); padding: clamp(80px,10vw,120px) 0; }
.contact .eyebrow { color: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,56px); align-items: center; margin-top: clamp(40px,5vw,64px); }
.contact-info { display: flex; flex-direction: column; gap: 4px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(247,238,220,.12); }
.ci-row:first-child { border-top: 1px solid rgba(247,238,220,.12); }
.ci-row .ic { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(232,199,122,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.ci-row .t { font-size: 9.5px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: rgba(247,238,220,.5); margin-bottom: 4px; }
.ci-row .v { font-family: var(--serif); font-size: 19px; color: var(--cream); }
.ci-row a.v:hover { color: var(--gold-bright); }
.contact-map { position: relative; min-height: 360px; border: 1px solid rgba(232,199,122,.22); overflow: hidden; }
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) sepia(.2) brightness(.92); }

/* ═══════════════════════════════════════════════════════════════
   PAGES RITUELS (listing /rituels + detail /rituels/{slug})
   ═══════════════════════════════════════════════════════════════ */
.page-band { position: relative; color: var(--cream); overflow: hidden;
  padding: calc(var(--header-h) + 52px) 0 52px;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(244,217,142,.14), transparent 60%), linear-gradient(135deg, #9C5031 0%, #7E3D24 52%, #67311D 100%); }
.crumb { display: flex; align-items: center; gap: 9px; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,238,220,.6); margin-bottom: 20px; flex-wrap: wrap; }
.crumb a { color: rgba(247,238,220,.72); transition: color .2s; }
.crumb a:hover { color: var(--gold-bright); }
.crumb .sep { opacity: .4; }
.crumb [aria-current] { color: var(--gold-bright); }
.page-band .eyebrow { color: var(--gold); }
.page-band h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(34px,5vw,58px); line-height: 1.04; color: var(--cream); margin: 12px 0 14px; }
.page-band .lede { font-size: 16px; line-height: 1.75; color: rgba(247,238,220,.82); max-width: 620px; }

.rdetail-head { display: flex; align-items: center; gap: 20px; }
.rdetail-ic { width: 70px; height: 70px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(232,199,122,.4); color: var(--gold-bright); }
.rdetail-dur { font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.rdetail-head h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px,4.6vw,56px); line-height: 1; color: var(--cream); }
.rdetail-desc { font-size: 16px; line-height: 1.8; color: rgba(247,238,220,.84); max-width: 640px; margin: 26px 0; }
.rdetail-foot { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.rdetail-price { font-family: var(--serif); font-weight: 300; font-size: 52px; color: var(--gold-bright); line-height: 1; }
.rdetail-price small { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .2em; color: rgba(247,238,220,.6); margin-left: 6px; }
.rdetail-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.rdetail-incl { background: var(--cream); color: var(--ink); padding: clamp(60px,8vw,100px) 0; }
.rdetail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,56px); align-items: center; }
.rdetail-media { position: relative; min-height: 360px; border-radius: 5px; overflow: hidden; box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, var(--clay), var(--clay-ink)); background-size: cover; background-position: center; }
.rdetail-media[data-img] { background-image: var(--img), linear-gradient(160deg, var(--clay), var(--clay-ink)); }
.rdetail-media .watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(247,238,220,.16); }
.rdetail-list .eyebrow { color: var(--clay-deep); }
.rdetail-list ul { list-style: none; margin: 18px 0 26px; }
.rdetail-list li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(42,20,11,.1); font-size: 15px; color: var(--ink-soft); }
.rdetail-list li svg { color: var(--clay-deep); flex-shrink: 0; margin-top: 2px; }

.rdetail-other { background: var(--cream-2); color: var(--ink); padding: clamp(48px,6vw,76px) 0; border-top: 1px solid rgba(42,20,11,.08); }
.ro-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.ro-head .eyebrow { color: var(--clay-deep); }
.ro-all { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--clay-dark); }
.ro-all .arrow { width: 16px; height: 1px; background: currentColor; position: relative; }
.ro-all .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.ro-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ro-card { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; background: #fff; border: 1px solid rgba(42,20,11,.1); border-radius: 4px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ro-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ro-ic { color: var(--clay-deep); }
.ro-name { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.ro-dur { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-faint); }
.ro-price { font-family: var(--serif); font-size: 18px; color: var(--clay-dark); margin-top: 2px; }
.ritual h3 a { color: inherit; }
@media (max-width: 860px) {
  .rdetail-grid { grid-template-columns: 1fr; }
  .ro-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGES INTRO (enfants / promotions / cadeaux)
   ═══════════════════════════════════════════════════════════════ */
.intro-page { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; color: var(--cream);
  padding: calc(var(--header-h) + 70px) 0 90px;
  background: radial-gradient(ellipse 60% 55% at 75% 20%, rgba(244,217,142,.14), transparent 60%), linear-gradient(135deg, #9C5031 0%, #7E3D24 52%, #67311D 100%); }
.intro-wrap { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.intro-ic { width: 64px; height: 64px; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(232,199,122,.4); color: var(--gold-bright); }
.intro-page .eyebrow { color: var(--gold); justify-content: center; }
.intro-page h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(38px,6vw,66px); color: var(--cream); margin: 14px 0 18px; line-height: 1.02; }
.intro-page h1 em { font-style: italic; color: var(--gold-bright); }
.intro-lead { font-size: 16px; line-height: 1.8; color: rgba(247,238,220,.84); max-width: 560px; margin: 0 auto 28px; }
.intro-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border: 1px solid rgba(232,199,122,.4); border-radius: 999px; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 28px; }
.intro-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.intro-actions .btn-wa { display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px; border-radius: 2px; background: #25D366; color: #06140C; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; transition: all .3s var(--ease); }
.intro-actions .btn-wa:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   PAGES LEGALES
   ═══════════════════════════════════════════════════════════════ */
.legal-page { background: var(--cream); color: var(--ink); padding: calc(var(--header-h) + 56px) 0 90px; }
.legal-wrap { max-width: 760px; }
.legal-page .eyebrow { color: var(--clay-deep); }
.legal-page h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(34px,5vw,52px); color: var(--ink); margin: 14px 0 18px; }
.legal-lead { font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 34px; }
.legal-page h2 { font-family: var(--serif); font-weight: 400; font-size: 22px; color: var(--clay-dark); margin: 30px 0 10px; }
.legal-page p { font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 12px; }
.legal-page a { color: var(--clay-deep); text-decoration: underline; }
.legal-back { margin-top: 40px; }
.legal-back a { font-weight: 600; letter-spacing: .04em; text-decoration: none; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--noir); color: var(--cream); border-top: 1px solid rgba(232,199,122,.14); padding: clamp(56px,7vw,84px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(32px,4vw,64px); padding-bottom: 56px; }
.f-brand .f-logo { height: 46px; width: auto; max-width: 240px; margin-bottom: 18px; filter: var(--logo-on-dark); }
.f-brand p { font-size: 14px; line-height: 1.7; color: rgba(247,238,220,.66); margin: 18px 0; max-width: 320px; }
.f-brand .hrs { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; color: rgba(247,238,220,.7); }
.f-brand .hrs svg { color: var(--gold); }
.f-col h4 { font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.f-col .row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(247,238,220,.7); padding: 7px 0; }
.f-col .row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.f-col ul { list-style: none; }
.f-col li a { display: inline-block; font-size: 13px; color: rgba(247,238,220,.7); padding: 7px 0; transition: color .25s, padding-left .25s; }
.f-col li a:hover { color: var(--gold-bright); padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(247,238,220,.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 11.5px; color: rgba(247,238,220,.5); }
.footer-bottom .crafted { color: rgba(247,238,220,.5); }
.footer-bottom .crafted a { color: var(--gold); }
.footer-bottom .crafted a:hover { color: var(--gold-bright); }

/* ═══════════════════════════════════════════════════════════════
   FLOTTANTS
   ═══════════════════════════════════════════════════════════════ */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(37,211,102,.4), 0 4px 10px rgba(0,0,0,.2); animation: waPulse 2.6s ease-in-out infinite; transition: transform .3s; }
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse { 0%,100% { box-shadow: 0 10px 28px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); } }
.to-top { position: fixed; bottom: 26px; left: 26px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; background: rgba(42,20,11,.6); backdrop-filter: blur(8px); border: 1px solid rgba(232,199,122,.3); color: var(--gold); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .35s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--clay-dark); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .head-book { display: none; }
  .head-specials { display: none; }
  .hero-orbits { display: none; }
  .burger { display: flex; }
  .head-actions .lang-switch { display: none; }
}
@media (max-width: 980px) {
  /* HERO : empile, le carousel passe en fond plein cadre */
  .hero { padding: calc(var(--header-h) + 22px) 0 40px; }
  .hero-orbits { display: none; }
  .hero-inner { display: flex; flex-direction: column; gap: 18px; position: static; }
  .hero-carousel { position: absolute; inset: 0; z-index: 0; min-height: 0; border-radius: 0; box-shadow: none; }
  .hero-carousel .hc-dots { bottom: auto; top: calc(var(--header-h) + 10px); }
  .hero-overlay { display: block; }
  .hero-text, .hero-form, .hero-ta { position: relative; z-index: 2; }
  .hero-text { max-width: 560px; }
  .gr-grid { grid-template-columns: 1fr; gap: 36px; }
  .gr-cards .gr-card:nth-child(even) { margin-top: 0; }
  .ritual, .ritual:nth-child(even) { grid-template-columns: 1fr; }
  .ritual .r-media, .ritual:nth-child(even) .r-media { order: 0; min-height: 240px; }
  .duo-split { grid-template-columns: 1fr; }
  .duo-photo { min-height: 360px; }
  .t-wrap { grid-template-columns: 1fr; gap: 36px; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-bar .bb-bar { grid-template-columns: 1fr 1fr; }
  .bb-action { grid-column: span 2; padding: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .f-brand { grid-column: span 2; }
  .ta-div { display: none; }
}
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .brand .logo { height: 34px; }
  .hf-row-3 { grid-template-columns: 1fr 1fr; }
  .hf-row-contact { grid-template-columns: 1fr; }
  .hf-actions { flex-direction: column; }
  .hf-wa { padding: 12px 16px; }
  .gr-cards { grid-template-columns: 1fr; }
  .gr-num { font-size: 64px; }
  .duo-features { grid-template-columns: 1fr; }
  .booking-bar .bb-bar { grid-template-columns: 1fr; }
  .bb-field { border-right: 0; border-bottom: 1px solid rgba(42,20,11,.1); }
  .bb-action { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .f-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .r-media .num { font-size: 54px; }
  .drawer nav a { font-size: 26px; }
}
