/* =====================================================================
   MOOREA RITUALS — Head Spa & Massages · Le Pradet
   Premium one-page · palette rose poudré / blanc cassé / doré
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --rose-050: #fdf6f5;
  --rose-100: #fbeeef;
  --rose-200: #f7dee0;
  --rose-300: #f0c8cc;
  --cream-050: #faf6f0;
  --cream-100: #f4ece1;
  --cream-200: #ece0d2;

  --gold: #c2a15c;
  --gold-strong: #a2843f;
  --gold-soft: #d8c290;

  --ink: #3b322c;
  --ink-soft: #6e625a;
  --ink-faint: #9a8d83;
  --white: #ffffff;

  --shadow-sm: 0 6px 24px -12px rgba(90, 70, 50, .28);
  --shadow-md: 0 22px 60px -28px rgba(90, 70, 50, .40);
  --shadow-lg: 0 40px 90px -40px rgba(80, 55, 40, .5);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Pinyon Script", cursive;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-050);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typographic helpers ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: .01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-strong);
  display: inline-block;
}
.script { font-family: var(--script); color: var(--gold-strong); font-weight: 400; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.4rem; }
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--ink);
  margin: .5rem 0 1rem;
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* decorative gold divider */
.divider { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: .3rem; }
.divider::before, .divider::after {
  content: ""; height: 1px; width: 46px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.divider::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.divider span { color: var(--gold); font-size: .85rem; letter-spacing: .1em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 400; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: 100px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s, color .4s;
  will-change: transform;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #fff; box-shadow: 0 14px 34px -14px rgba(162, 132, 63, .8);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(162, 132, 63, .9); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold-strong); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn-ghost { color: var(--ink); padding-left: 0; padding-right: 0; }
.btn svg { width: 16px; height: 16px; }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding: .85rem 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 240, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(194, 161, 92, .18), var(--shadow-sm);
  padding: .5rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { height: 60px; width: auto; transition: height .5s var(--ease), filter .5s var(--ease); }
.site-header.scrolled .brand-logo { height: 48px; }
/* On the hero the logo is gold on a dark photo — add a soft glow for legibility */
.site-header:not(.scrolled) .brand-logo { filter: drop-shadow(0 2px 10px rgba(0,0,0,.45)); }
.brand-mark {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  line-height: 1;
}
.brand-mark small {
  display: block; font-family: var(--script); font-size: 1.05rem;
  letter-spacing: 0; text-transform: none; color: var(--gold-strong); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap;
  color: var(--ink-soft); font-weight: 400; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-cta .btn { padding: .8rem 1.5rem; font-size: .74rem; }

/* Light nav over the hero (before scroll) */
.site-header:not(.scrolled) .brand-mark { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.site-header:not(.scrolled) .brand-mark small { color: var(--gold-soft); }
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.site-header:not(.scrolled) .nav-links a:hover { color: #fff; }
.site-header:not(.scrolled) .burger span { background: #fff; }
@media (max-width: 1024px) {
  .site-header:not(.scrolled) .nav-links a { color: var(--ink-soft); text-shadow: none; }
}

/* burger */
.burger { display: none; width: 34px; height: 26px; position: relative; z-index: 120; }
.burger span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .4s var(--ease), opacity .3s, top .4s var(--ease);
}
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 12px; }
.burger span:nth-child(3) { top: 20px; }
.burger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }
/* When the menu overlay is open the background is cream — force a dark X */
.site-header .burger.open span,
.site-header:not(.scrolled) .burger.open span { background: var(--ink); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 92px;
  color: #fff; text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(45,37,31,.58) 0%, rgba(45,37,31,.44) 42%, rgba(45,37,31,.74) 100%),
    radial-gradient(80% 58% at 50% 50%, rgba(28,22,18,.5), transparent 72%);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.h-fade { animation: heroFade 1.1s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes heroFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.9rem, 8vw, 6rem); font-weight: 500; color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.28); margin-bottom: .4rem;
}
.hero h1 .script { display: block; color: var(--gold-soft); font-size: clamp(2rem, 6vw, 3.6rem); margin-top: -.2rem; }
.hero-tag {
  font-size: clamp(1rem, 2.2vw, 1.28rem); font-weight: 400; letter-spacing: .04em;
  color: #fff; max-width: 560px; margin: 1.4rem auto 2.4rem;
  text-shadow: 0 2px 22px rgba(0,0,0,.55);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.8); font-size: .68rem; letter-spacing: .3em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* =====================================================================
   MARQUEE / trust strip
   ===================================================================== */
.strip { background: var(--ink); color: var(--cream-100); padding: 1.1rem 0; overflow: hidden; }
.strip-track { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.strip-track span { font-family: var(--serif); font-style: italic; font-size: 1.25rem; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 3.5rem; color: var(--cream-100); }
.strip-track span::before { content: "✦"; color: var(--gold-soft); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================================
   INTRO / EXPERIENCE
   ===================================================================== */
.intro { background: var(--cream-050); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.intro-media { position: relative; }
.intro-media img { border-radius: 6px 6px 120px 6px; box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.intro-media .frame {
  position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold-soft);
  border-radius: 6px 6px 120px 6px; z-index: -1;
}
.intro-media .badge {
  position: absolute; bottom: -26px; right: -14px; background: var(--white);
  padding: 1.2rem 1.5rem; border-radius: 4px; box-shadow: var(--shadow-md); text-align: center;
}
.intro-media .badge b { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-strong); display: block; line-height: 1; }
.intro-media .badge small { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.intro-copy .eyebrow { margin-bottom: 1rem; }
.intro-copy h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 1.4rem; color: var(--ink); }
.intro-copy p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 1.05rem; }
.intro-copy .signature { font-family: var(--script); font-size: 2rem; color: var(--gold-strong); margin-top: .5rem; }
.pillars { display: flex; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.pillar { flex: 1; min-width: 140px; }
.pillar .ic { width: 42px; height: 42px; color: var(--gold-strong); margin-bottom: .6rem; }
.pillar h4 { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: .2rem; }
.pillar p { font-size: .92rem; margin: 0; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { background: linear-gradient(180deg, var(--rose-050), var(--cream-050)); }
.svc-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.svc-card {
  background: var(--white); border-radius: 8px; padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(194,161,92,.14);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .ic { width: 52px; height: 52px; color: var(--gold-strong); margin-bottom: 1.1rem; }
.svc-card h3 { font-size: 1.9rem; color: var(--ink); margin-bottom: .3rem; }
.svc-card .sub { font-family: var(--script); font-size: 1.35rem; color: var(--gold-strong); margin-bottom: 1rem; }
.svc-card p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.5rem; }
.svc-card ul li {
  display: flex; align-items: center; gap: .7rem; padding: .5rem 0;
  border-top: 1px dashed rgba(194,161,92,.28); font-size: .95rem; color: var(--ink);
}
.svc-card ul li:first-child { border-top: none; }
.svc-card ul li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* =====================================================================
   TARIFS
   ===================================================================== */
.tarifs { background: var(--ink); color: var(--cream-100); }
.tarifs .section-head h2 { color: #fff; }
.tarifs .section-head p { color: rgba(244,236,225,.7); }
.tarifs .eyebrow { color: var(--gold-soft); }
.tarifs .divider span { color: var(--gold-soft); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); max-width: 1000px; margin: 0 auto; }
.menu-block h3 {
  font-size: 1.7rem; color: #fff; margin-bottom: .3rem;
  display: flex; align-items: center; gap: .7rem;
}
.menu-block h3 svg { width: 26px; height: 26px; color: var(--gold-soft); }
.menu-block > span.hint { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); display: block; margin-bottom: 1.8rem; }
.price-row { display: flex; align-items: baseline; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-row .pr-main { flex: 1; }
.price-row .pr-name { font-family: var(--serif); font-size: 1.4rem; color: #fff; line-height: 1.2; }
.price-row .pr-desc { font-size: .84rem; color: rgba(244,236,225,.6); }
.price-row .pr-dur { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); white-space: nowrap; }
.price-row .pr-price { font-family: var(--serif); font-size: 1.55rem; color: var(--gold-soft); white-space: nowrap; }
.tarifs-note { text-align: center; margin-top: 3rem; color: rgba(244,236,225,.65); font-size: .9rem; }
.tarifs-note a { color: var(--gold-soft); border-bottom: 1px solid var(--gold-soft); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { background: var(--rose-100); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 200px 200px 8px 8px; box-shadow: var(--shadow-md); aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.about-media .ring { position: absolute; inset: -16px -16px 30px -16px; border: 1px solid var(--gold-soft); border-radius: 200px 200px 8px 8px; z-index: -1; }
.about-copy .eyebrow { margin-bottom: 1rem; }
.about-copy h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--ink); margin-bottom: .4rem; }
.about-copy .role { font-family: var(--script); font-size: 1.7rem; color: var(--gold-strong); margin-bottom: 1.4rem; }
.about-copy p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }
.certs { margin-top: 2rem; }
.certs h4 { font-family: var(--sans); font-size: .75rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-strong); margin-bottom: 1rem; }
.cert-list { display: flex; flex-wrap: wrap; gap: .8rem; }
.cert-badge {
  display: inline-flex; align-items: center; gap: .6rem; background: var(--white);
  padding: .7rem 1.2rem; border-radius: 100px; box-shadow: var(--shadow-sm);
  font-size: .88rem; color: var(--ink); border: 1px solid rgba(194,161,92,.2);
}
.cert-badge svg { width: 18px; height: 18px; color: var(--gold-strong); }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { background: var(--cream-050); }
/* Masonry (Pinterest-style) — keeps each photo's aspect ratio, no cropping */
.gallery-grid { column-count: 3; column-gap: 1rem; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 1rem; overflow: hidden; border-radius: 6px; position: relative; box-shadow: var(--shadow-sm); }
.gallery-grid img { width: 100%; height: auto; display: block; transition: transform 1s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(59,50,44,.35));
  opacity: 0; transition: opacity .5s;
}
.gallery-grid figure:hover::after { opacity: 1; }
@media (max-width: 860px) { .gallery-grid { column-count: 2; } }
@media (max-width: 520px) { .gallery-grid { column-count: 1; } }

/* =====================================================================
   RESERVATION
   ===================================================================== */
.reserve { background: linear-gradient(135deg, var(--rose-200), var(--rose-100)); }
.reserve-card {
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1.2fr .8fr; overflow: hidden; max-width: 1000px; margin: 0 auto;
}
.reserve-info { padding: clamp(2.2rem, 5vw, 3.6rem); }
.reserve-info .eyebrow { margin-bottom: 1rem; }
.reserve-info h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--ink); margin-bottom: 1rem; }
.reserve-info p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.reserve-steps { margin-bottom: 2rem; }
.reserve-steps li { display: flex; gap: 1rem; padding: .7rem 0; align-items: flex-start; }
.reserve-steps .num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--rose-200);
  color: var(--gold-strong); font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  display: grid; place-items: center; flex-shrink: 0;
}
.reserve-steps b { color: var(--ink); font-weight: 500; }
.reserve-steps p { margin: 0; font-size: .92rem; }
.reserve-qr {
  background: linear-gradient(160deg, var(--ink), #2c251f); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(2rem, 5vw, 3rem); text-align: center; gap: 1rem;
}
.reserve-qr .qr-frame { background: #fff; padding: 14px; border-radius: 12px; box-shadow: var(--shadow-md); }
.reserve-qr .qr-frame img { width: 190px; height: 190px; object-fit: contain; }
.reserve-qr p { font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-soft); }
.reserve-qr .booksy { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,.85); text-transform: none; letter-spacing: 0; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact { background: var(--cream-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: stretch; }
.contact-info h2 { font-size: clamp(2rem, 4.4vw, 3rem); color: var(--ink); margin-bottom: .5rem; }
.contact-info .role { font-family: var(--script); font-size: 1.6rem; color: var(--gold-strong); margin-bottom: 1.6rem; }
.info-list { margin: 1.5rem 0; }
.info-item { display: flex; gap: 1.1rem; padding: 1rem 0; border-bottom: 1px solid rgba(194,161,92,.2); align-items: flex-start; }
.info-item .ic { width: 38px; height: 38px; border-radius: 50%; background: var(--white); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.info-item .ic svg { width: 18px; height: 18px; color: var(--gold-strong); }
.info-item .txt small { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: .1rem; }
.info-item .txt a, .info-item .txt span { color: var(--ink); font-size: 1.02rem; }
.info-item .txt a:hover { color: var(--gold-strong); }
.socials { display: flex; gap: .8rem; margin-top: 1.6rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), background .4s;
}
.socials a svg { width: 20px; height: 20px; color: var(--gold-strong); transition: color .4s; }
.socials a:hover { transform: translateY(-4px); background: var(--gold); }
.socials a:hover svg { color: #fff; }
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.2) sepia(.08); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--ink); color: rgba(244,236,225,.7); padding: 4rem 0 2rem; text-align: center; }
.footer-logo { height: 84px; width: auto; margin: 0 auto; }
.footer-nav { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin: 1.8rem 0; }
.footer-nav a { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,236,225,.7); transition: color .3s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-line { height: 1px; background: rgba(255,255,255,.1); max-width: 300px; margin: 1.6rem auto; }
.footer-meta { font-size: .78rem; color: rgba(244,236,225,.45); line-height: 2; }
.footer-meta a { color: rgba(244,236,225,.6); }

/* =====================================================================
   DIPLÔMES
   ===================================================================== */
.diplomes { background: linear-gradient(180deg, var(--cream-050), var(--rose-050)); }
.dip-carousel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; max-width: 1000px; margin: 0 auto;
  background: var(--white); border-radius: 16px; padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md); border: 1px solid rgba(194,161,92,.16);
}
/* Image stage — certificates shown contained, cross-fade */
.dip-stage { position: relative; aspect-ratio: 3/2; border-radius: 10px; overflow: hidden; background: var(--cream-100); }
.dip-slide { position: absolute; inset: 0; padding: 10px; box-sizing: border-box; opacity: 0; transform: scale(1.03); transition: opacity .7s var(--ease), transform .9s var(--ease); }
.dip-slide.is-active { opacity: 1; transform: none; }
.dip-slide img { width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }

/* Text panel */
.dip-panel { position: relative; padding: .5rem .5rem .5rem 0; }
.dip-seal {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  display: grid; place-items: center; box-shadow: 0 10px 22px -10px rgba(162,132,63,.8);
  margin-bottom: 1.1rem;
}
.dip-seal svg { width: 23px; height: 23px; color: #fff; }
.dip-kicker { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-strong); }
.dip-panel h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); margin: .35rem 0 .7rem; }
.dip-panel > p { color: var(--ink-soft); font-size: 1rem; margin-bottom: .9rem; min-height: 3.4em; }
.dip-meta { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); display: block; }

.dip-controls { display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem; }
.dip-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold-soft);
  color: var(--gold-strong); display: grid; place-items: center;
  transition: background .4s, color .4s, transform .4s var(--ease);
}
.dip-arrow svg { width: 20px; height: 20px; }
.dip-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.dip-count { font-family: var(--serif); font-size: 1.05rem; color: var(--ink-soft); letter-spacing: .1em; }
.dip-count b { color: var(--gold-strong); font-size: 1.3rem; }
.dip-dots { display: flex; gap: .5rem; margin-left: auto; }
.dip-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--cream-200); transition: background .4s, width .4s var(--ease); }
.dip-dots button.is-active { background: var(--gold); width: 24px; border-radius: 10px; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].in, [data-reveal="right"].in { transform: none; }
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .intro-grid, .about-grid, .contact-grid, .reserve-card { grid-template-columns: 1fr; }
  .svc-cats, .menu-grid { grid-template-columns: 1fr; }
  .dip-carousel { grid-template-columns: 1fr; max-width: 480px; gap: 1.6rem; }
  .dip-panel { padding: 0; text-align: center; }
  .dip-seal { margin-left: auto; margin-right: auto; }
  .dip-panel > p { min-height: 0; }
  .dip-controls { justify-content: center; }
  .dip-dots { margin-left: 0; }
  .reserve-card { max-width: 520px; }
  .about-media { max-width: 400px; margin: 0 auto; }
  .intro-media { max-width: 440px; margin: 0 auto; }
  .contact-map { min-height: 340px; }
}
@media (max-width: 1024px) {
  /* keep the logo and burger above the full-screen menu */
  .brand { position: relative; z-index: 120; }
  .nav-links {
    position: fixed; inset: 0; width: 100%; height: 100vh; height: 100dvh;
    background: var(--cream-050);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1.7rem; padding: 6rem 1.5rem 2.5rem; margin: 0;
    transform: translateX(100%); transition: transform .45s var(--ease);
    z-index: 105; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; letter-spacing: .16em; }
  .nav-links a::after { bottom: -4px; }
  .burger { display: block; }
  .nav-cta .btn:not(.burger) { display: none; }
}
@media (max-width: 760px) {
  .pillars { flex-direction: column; gap: 1.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .scroll-cue { display: none; }
  .intro-media .badge { right: 0; }
}
@media (max-width: 460px) {
  .price-row { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   BIENFAITS
   ===================================================================== */
.bienfaits { background: var(--cream-050); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.benefit {
  background: var(--white); border-radius: 10px; padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(194,161,92,.14);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit .ic { width: 44px; height: 44px; color: var(--gold-strong); margin-bottom: .9rem; }
.benefit h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: .35rem; }
.benefit p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* =====================================================================
   RITUEL / DÉROULÉ (steps)
   ===================================================================== */
.ritual { background: linear-gradient(180deg, var(--rose-050), var(--cream-050)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.step { text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: calc(50% + 42px); right: calc(-50% + 42px);
  height: 1px; background: linear-gradient(90deg, var(--gold-soft), transparent);
}
.step .n {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center;
  background: var(--white); box-shadow: var(--shadow-sm); font-family: var(--serif); font-size: 1.7rem;
  color: var(--gold-strong); border: 1px solid rgba(194,161,92,.28); position: relative; z-index: 1;
}
.step h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: .35rem; }
.step p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* =====================================================================
   CARTE CADEAU
   ===================================================================== */
.giftcard { background: linear-gradient(135deg, var(--ink), #2c251f); color: var(--cream-100); }
.gift-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.gift-text { flex: 1; min-width: 280px; }
.gift-text .eyebrow { color: var(--gold-soft); margin-bottom: .8rem; }
.gift-text h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: .6rem; }
.gift-text p { color: rgba(244,236,225,.78); max-width: 540px; margin: 0; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--cream-050); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(194,161,92,.25); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.45rem 0; font-family: var(--serif); font-size: clamp(1.15rem,2.4vw,1.4rem); color: var(--ink);
}
.faq-q .plus { color: var(--gold-strong); font-size: 1.7rem; line-height: 1; transition: transform .4s var(--ease); flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { color: var(--ink-soft); padding: 0 0 1.45rem; margin: 0; font-size: 1rem; line-height: 1.8; }

/* =====================================================================
   MAP BAND (pleine largeur)
   ===================================================================== */
.map-band { position: relative; line-height: 0; }
.map-band iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(.15) sepia(.06); }

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.2rem; }
  .step:not(:last-child)::after { display: none; }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gift-inner { flex-direction: column; text-align: center; }
  .map-band iframe { height: 360px; }
}
@media (max-width: 480px) {
  .brand-logo, .site-header.scrolled .brand-logo { height: 42px; }
}

/* =====================================================================
   AGENCY BAR (axeo'com)
   ===================================================================== */
.agency-bar { background: #000; color: rgba(255,255,255,.72); padding: 1rem 0; font-size: .82rem; }
.agency-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
.agency-credit { margin: 0; }
.agency-credit a { color: #fff; font-weight: 600; }
.agency-credit a:hover { color: var(--gold-soft); }
.agency-logo { display: block; }
.agency-logo img { height: 40px; width: auto; display: block; }
.agency-links { display: flex; align-items: center; gap: .8rem; white-space: nowrap; }
.agency-links a { color: rgba(255,255,255,.8); transition: color .3s; }
.agency-links a:hover { color: var(--gold-soft); }
.agency-links span { color: rgba(255,255,255,.28); }
@media (max-width: 780px) {
  .agency-inner { flex-direction: column; text-align: center; gap: 1rem; }
}

/* =====================================================================
   LEGAL PAGES (mentions légales / politique de confidentialité)
   ===================================================================== */
.legal-body { background: var(--cream-050); }
.legal-top { background: var(--ink); padding: 1rem 0; }
.legal-top-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.legal-top .brand-logo { height: 46px; width: auto; display: block; }
.legal-back { color: var(--cream-100); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; transition: color .3s; }
.legal-back:hover { color: var(--gold-soft); }
.legal-main { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap .eyebrow { margin-bottom: .8rem; }
.legal-wrap h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); color: var(--ink); margin-bottom: .6rem; }
.legal-updated { color: var(--ink-faint); font-size: .85rem; margin-bottom: 2.5rem; display: block; }
.legal-wrap h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--ink); margin: 2.6rem 0 .9rem;
  padding-top: 1.6rem; border-top: 1px solid rgba(194,161,92,.25);
}
.legal-wrap h2:first-of-type { border-top: none; padding-top: 0; }
.legal-wrap h3 { font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--ink); margin: 1.4rem 0 .4rem; }
.legal-wrap p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1rem; line-height: 1.85; }
.legal-wrap ul { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.legal-wrap li { color: var(--ink-soft); position: relative; padding-left: 1.4rem; margin-bottom: .55rem; line-height: 1.7; }
.legal-wrap li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .7rem; top: .35rem; }
.legal-wrap a { color: var(--gold-strong); border-bottom: 1px solid rgba(194,161,92,.4); }
.legal-wrap a:hover { border-bottom-color: var(--gold-strong); }
.legal-card {
  background: var(--white); border: 1px solid rgba(194,161,92,.2); border-radius: 12px;
  padding: 1.8rem 2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
}
.legal-card p { margin-bottom: .5rem; }
.legal-card strong { color: var(--ink); font-weight: 500; }
