/* ============================================================
   Khire·Li — kh.css
   Refined luxury minimalism · Bordeaux wellness atelier
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --teal:       #4a9693;
  --gold:       #d2b272;
  --deep-green: #284a3e;
  --gold-dark:  #b68a34;
  --mint:       #c8e9d1;
  --white:      #ffffff;
  --cream:      #f1f0ea;
  --text-main:  #1a1a1a;
  --text-light: #6b6b6b;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: 120px;
  --section-py-mobile: 70px;
  --gap-inner: 56px;

  --transition-btn: 0.25s ease;
  --transition-img: 0.5s ease;
  --radius-img: 4px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
ol, ul { list-style: none; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px)  { .container { padding-inline: 40px; } }
@media (min-width: 1024px) { .container { padding-inline: 56px; } }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }

h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 500; color: var(--deep-green); }

/* ---- Eyebrow Labels ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.eyebrow-white { color: rgba(255,255,255,0.7); }

/* ---- Decorative Line ---- */
.line-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 24px;
}
.line-accent--above {
  width: 60px;
  margin-top: 0;
  margin-bottom: 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 11px 26px;
  border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--transition-btn), color var(--transition-btn), border-color var(--transition-btn);
  white-space: nowrap;
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--deep-green);
  border-color: var(--deep-green);
}

.btn-gold {
  background: var(--gold-dark);
  color: var(--white);
  border-color: var(--gold-dark);
}
.btn-gold:hover {
  background: #9a7228;
  border-color: #9a7228;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}

.btn-planity {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  font-size: 0.85rem;
  padding: 10px 22px;
}
.btn-planity:hover {
  background: var(--gold);
  color: var(--deep-green);
}

/* ---- Text Links ---- */
.link-teal {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-btn);
}
.link-teal:hover { color: var(--deep-green); }

/* ---- Image Zoom on Hover ---- */
.img-zoom-wrap {
  overflow: hidden;
  border-radius: var(--radius-img);
}
.img-zoom-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-img);
}
.img-zoom-wrap:hover img { transform: scale(1.02); }

/* ---- Fade-up Animation ---- */
.fade-up {
  opacity: 1;
  transform: translateY(14px);
  transition: transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--mint);
  transition: box-shadow 0.3s ease;
  padding-top: env(safe-area-inset-top);
}
#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1340px;
  margin-inline: auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-logo { flex-shrink: 0; }
.header-logo img { width: 150px; aspect-ratio: 2048 / 592; height: auto; }

.header-nav {
  display: none;
  gap: 32px;
  margin-inline: auto;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--deep-green);
  transition: color var(--transition-btn);
}
.header-nav a:hover { color: var(--teal); }

.header-cta {
  display: none;
  margin-left: auto;
}

/* ---- Hamburger ---- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: rgba(40, 74, 62, 0.06); }
.hamburger:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--deep-green);
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease, background 0.25s ease;
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 17px; }

/* Animated X state (bars stay visible on the white fixed header) */
.nav-open .hamburger span { width: 24px; }
.nav-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Mobile Nav Overlay ---- */
.mobile-nav-overlay {
  position: fixed;
  inset: calc(72px + env(safe-area-inset-top)) 0 0 0;
  background: var(--deep-green);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 env(safe-area-inset-bottom);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  width: 100%;
  padding: 28px 24px 40px;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--white);
  transition: color var(--transition-btn);
}
.mobile-nav a:hover,
.mobile-nav a.nav-active { color: var(--gold); }
.mobile-cta {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 0.9rem !important;
  margin-top: 8px;
}
body.nav-open { overflow: hidden; }

/* Desktop: show nav, hide hamburger (raised to 980px for the 8-item menu) */
@media (min-width: 980px) {
  /* Equal optical spacing: logo · nav · CTA share leftover space evenly */
  .header-inner {
    padding: 0 48px;
    justify-content: space-between;
    gap: 24px;
  }
  .header-nav {
    display: flex;
    margin-inline: 0;
  }
  .header-cta { display: inline-block; margin-left: 0; }
  .hamburger { display: none; }
  .mobile-nav-overlay { display: none !important; }
}

/* Tighten nav spacing on mid-size screens so 8 items never crowd the edges */
@media (min-width: 980px) and (max-width: 1280px) {
  .header-inner { padding: 0 24px; gap: 14px; }
  .header-nav { gap: 15px; }
  .header-nav a { font-size: 0.7rem; letter-spacing: 0.05em; }
  .header-logo img { width: 120px; }
  .nav-badge { font-size: 0.48rem; padding: 1px 5px; }
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-picture {
  display: none;
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .hero-video {
    background: url("images/salon-hero.jpg") center / cover no-repeat;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 9, 8, 0.00)  0%,
      rgba(10, 9, 8, 0.08) 30%,
      rgba(10, 9, 8, 0.45) 60%,
      rgba(10, 9, 8, 0.72) 85%,
      rgba(10, 9, 8, 0.78) 100%
    ),
    radial-gradient(
      ellipse 140% 100% at 50% 50%,
      transparent 55%,
      rgba(10, 9, 8, 0.28) 100%
    );
  pointer-events: none;
}

/* Grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px 90px;
  text-align: center;
}

.hero-h1 {
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1s 1.5s both;
  transition: opacity 0.4s ease;
}
.hero-scroll-indicator.hidden { opacity: 0; pointer-events: none; }

.scroll-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(8px); opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
  .hero-content { padding-bottom: 100px; }
}

/* ============================================================
   SECTION 2 — À PROPOS
   ============================================================ */
.section-apropos {
  background: var(--cream);
  padding-block: var(--section-py-mobile);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.apropos-image { position: relative; }
.apropos-image .img-zoom-wrap img {
  max-height: 500px;
  width: 100%;
}

.apropos-text h2 { margin-bottom: 24px; }
.apropos-text p   { color: var(--text-main); margin-bottom: 16px; font-size: 0.975rem; }
.apropos-text p:last-of-type { margin-bottom: 0; }

.apropos-mark {
  margin-top: 32px;
  opacity: 0.15;
}
.apropos-mark img { width: 32px; }

@media (min-width: 768px) {
  .section-apropos { padding-block: var(--section-py); }
  .apropos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .apropos-image .img-zoom-wrap { max-height: 600px; }
  .apropos-image .img-zoom-wrap img { max-height: 600px; }
}

/* ============================================================
   SECTION 3 — LES SOINS
   ============================================================ */
.section-soins {
  background: var(--white);
  padding-block: var(--section-py-mobile);
}

.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading h2 { margin-bottom: 16px; }
.section-intro {
  font-size: 0.975rem;
  color: var(--text-light);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.soins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.soin-card {
  background: var(--cream);
  padding: 36px 32px;
}

.card-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--deep-green);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.6;
}
.soin-card .line-accent { margin-top: 20px; }

.soins-accent-img {
  margin-bottom: 48px;
  max-height: 280px;
  overflow: hidden;
  border-radius: var(--radius-img);
}
.soins-accent-img .img-zoom-wrap { height: 280px; }
.soins-accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.soins-cta {
  text-align: center;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .soins-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .section-soins { padding-block: var(--section-py); }
  .soins-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SECTION 4 — DIVIDER QUOTE
   ============================================================ */
.section-quote {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-media {
  position: absolute;
  inset: 0;
}
.quote-media img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,74,62,0.35);
}

.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: 24px;
  max-width: 700px;
}

.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}

.quote-content blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote-content blockquote footer {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   SECTION 5 — VOTRE SÉANCE
   ============================================================ */
.section-seance {
  background: var(--cream);
  padding-block: var(--section-py-mobile);
}

.seance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.seance-text h2 { margin-bottom: 40px; }

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--teal);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
  padding-top: 2px;
}
.step-title {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--deep-green);
  font-size: 1rem;
  margin-bottom: 4px;
}
.step-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.65;
}

.seance-img-wrap {
  height: 420px;
}
.seance-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .section-seance { padding-block: var(--section-py); }
  .seance-grid {
    grid-template-columns: 55fr 45fr;
    gap: 72px;
  }
  .seance-img-wrap { height: 560px; }
}

/* ============================================================
   FOOTER / CONTACT
   ============================================================ */
.site-footer {
  background: var(--deep-green);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  text-align: center;
}

/* Brand column */
.footer-brand { }
.footer-brand img { margin-inline: auto; margin-bottom: 14px; aspect-ratio: 1177 / 364; height: auto; }
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}

/* Contact column */
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-address {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-phone {
  color: var(--gold);
  font-weight: 500;
  font-size: 1rem;
  transition: opacity var(--transition-btn);
}
.footer-phone:hover { opacity: 0.75; }
.footer-email {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color var(--transition-btn);
}
.footer-email:hover { color: var(--white); }
.footer-contact address { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.footer-rdv {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-top: 6px;
}

/* Social column */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-insta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 300;
  transition: color var(--transition-btn);
}
.footer-insta:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-planity-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* Bouton newsletter (rouvre le pop-up) — discret mais visible */
.footer-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 40px;
  background: rgba(210, 178, 114, 0.12);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-nl-btn svg { flex-shrink: 0; }
.footer-nl-btn:hover {
  background: var(--gold);
  color: var(--deep-green);
  transform: translateY(-1px);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-btn);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1.4fr 1fr;
    text-align: left;
    gap: 40px;
    align-items: start;
  }
  .footer-brand img { margin-inline: 0; }
  .footer-social { align-items: flex-end; }
}

/* ============================================================
   NAV — ACTIVE STATE & BADGE
   ============================================================ */
.header-nav .nav-active {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav-badge {
  font-size: 0.55rem;
  background: var(--gold);
  color: white;
  padding: 2px 6px;
  border-radius: 40px;
  vertical-align: super;
  margin-left: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   FORMATION PAGE — HERO OVERRIDES
   ============================================================ */
.hero-img--formation {
  object-position: center 20%;
}
.hero-overlay--formation {
  background: linear-gradient(to top, rgba(40,74,62,0.72) 0%, rgba(40,74,62,0.35) 60%, rgba(40,74,62,0.3) 100%);
}
.hero-sub--wide { max-width: 520px; font-size: 1.1rem; }
.hero-br-mobile { display: none; }

/* Formation badge pill */
.formation-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  background: rgba(210,178,114,0.18);
  border: 1px solid var(--gold);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

/* Discover text indicator */
.hero-discover {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

@media (max-width: 600px) {
  .hero-br-mobile { display: block; }
}

/* ============================================================
   FORMATION PAGE — SECTION 2: LE PROBLÈME
   ============================================================ */
.section-probleme {
  background: var(--white);
  padding-block: var(--section-py-mobile);
}

.container--narrow {
  max-width: 800px;
}

.section-probleme h2 { margin-bottom: 28px; }

.probleme-body { margin-bottom: 32px; }
.probleme-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 18px;
}
.probleme-body p:last-child { margin-bottom: 0; }

.line-accent--centered {
  margin-inline: auto;
  margin-bottom: 0;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 72px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  line-height: 1.5;
}

@media (min-width: 600px) {
  .stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .section-probleme { padding-block: var(--section-py); }
  .stats-row { gap: 32px; }
}

/* ============================================================
   FORMATION PAGE — SECTION 3: PROGRAMME
   ============================================================ */
.section-programme {
  background: var(--cream);
  padding-block: var(--section-py-mobile);
}

.programme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.programme-image { position: relative; }
.programme-image .img-zoom-wrap {
  max-height: 480px;
}
.programme-image .img-zoom-wrap img {
  max-height: 480px;
  width: 100%;
}

.programme-content h2 { margin-bottom: 12px; }
.programme-intro {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--text-light);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Modules list */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.module {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.module-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--teal);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
  padding-top: 2px;
}
.module-title {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--deep-green);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.module-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Status badge */
.status-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--deep-green);
  background: var(--mint);
  border-radius: 40px;
  padding: 6px 14px;
}

@media (min-width: 768px) {
  .section-programme { padding-block: var(--section-py); }
  .programme-grid {
    grid-template-columns: 40fr 60fr;
    gap: 80px;
  }
  .programme-image .img-zoom-wrap { max-height: 560px; }
  .programme-image .img-zoom-wrap img { max-height: 560px; }
}

/* ============================================================
   FORMATION PAGE — SECTION 4: FORMATEUR
   ============================================================ */
.section-formateur {
  background: var(--white);
  padding-block: var(--section-py-mobile);
}

.formateur-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

/* Mobile: image first via order */
.formateur-image { order: -1; }

.formateur-content h2 { margin-bottom: 20px; }
.formateur-content p {
  font-size: 0.975rem;
  font-weight: 300;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 16px;
}
.formateur-content p:last-of-type { margin-bottom: 0; }

.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.credential-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--deep-green);
  background: var(--mint);
  border-radius: 40px;
  padding: 5px 14px;
}

.formateur-img-wrap {
  height: 400px;
}
.formateur-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 768px) {
  .section-formateur { padding-block: var(--section-py); }
  .formateur-grid {
    grid-template-columns: 55fr 45fr;
    gap: 80px;
  }
  /* Reset mobile order */
  .formateur-image { order: 0; }
  .formateur-img-wrap { height: 500px; }
}

/* ============================================================
   FORMATION PAGE — SECTION 5: INSCRIPTION / FORM
   ============================================================ */
.section-inscription {
  background: var(--deep-green);
  padding-block: var(--section-py-mobile);
  color: var(--white);
}

.inscription-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

/* Left text */
.inscription-text .eyebrow { color: var(--gold); }

.inscription-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.25;
}

.inscription-text p {
  font-size: 0.975rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}

.reassurance-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reassurance-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.reassurance-check {
  color: var(--teal);
  font-weight: 600;
  flex-shrink: 0;
}

/* Form card */
.form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 36px 28px;
}

.form-card-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

/* Form fields */
#waitlist-form .form-group { margin-bottom: 20px; }

#waitlist-form .form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#waitlist-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  text-transform: uppercase;
}

#waitlist-form input,
#waitlist-form select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: white;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

#waitlist-form input::placeholder { color: rgba(255,255,255,0.3); }
#waitlist-form select option { background: var(--deep-green); color: white; }

#waitlist-form input:focus,
#waitlist-form select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}

#waitlist-form .form-group.has-error input,
#waitlist-form .form-group.has-error select {
  border-color: #e08080;
}

.field-hint {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.field-error {
  font-size: 0.78rem;
  color: #f4a0a0;
  margin-top: 4px;
}

#waitlist-form button[type="submit"] {
  width: 100%;
  background: var(--gold-dark);
  color: white;
  border: none;
  border-radius: 40px;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
  margin-top: 8px;
}
#waitlist-form button[type="submit"]:hover {
  background: var(--gold);
  transform: translateY(-1px);
}
#waitlist-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.6;
}
.form-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success state */
#form-success {
  text-align: center;
  padding: 40px 20px;
}
#form-success .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
#form-success h3 {
  font-family: var(--font-display);
  color: white;
  margin-bottom: 12px;
}
#form-success p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Error state */
#form-error-msg {
  background: rgba(224,128,128,0.15);
  border: 1px solid rgba(224,128,128,0.4);
  border-radius: 4px;
  padding: 14px 16px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #f4b8b8;
}
#form-error-msg a { color: var(--gold); }

@media (min-width: 768px) {
  .section-inscription { padding-block: var(--section-py); }
  .inscription-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .form-card { padding: 40px 36px; }
}

/* ============================================================
   FORMATION PAGE — SPLIT-SCREEN HERO
   ============================================================ */

/* --- Keyframes --- */
@keyframes hs-slide-right {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hs-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hs-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hs-scale-x {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* --- Animation utility classes --- */
.anim-slide-right {
  opacity: 0;
  animation: hs-slide-right 0.6s ease both;
  animation-delay: var(--anim-delay, 0.1s);
}
.anim-slide-up {
  opacity: 0;
  animation: hs-slide-up 0.7s ease both;
  animation-delay: var(--anim-delay, 0s);
}
.anim-fade {
  opacity: 0;
  animation: hs-fade 0.6s ease both;
  animation-delay: var(--anim-delay, 0s);
}
.anim-scale-x {
  opacity: 0;
  transform-origin: left;
  animation: hs-scale-x 0.5s ease both;
  animation-delay: var(--anim-delay, 0s);
}
.anim-fade-img {
  opacity: 0;
  animation: hs-fade 1s ease both;
  animation-delay: 0s;
}

/* --- Split-screen layout --- */
.hero-split {
  display: flex;
  height: 100vh;
  min-height: 600px;
  padding-top: 72px; /* header offset */
  overflow: hidden;
}

/* --- LEFT PANEL --- */
.hero-split__left {
  width: 45%;
  flex-shrink: 0;
  background: var(--deep-green);
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 1px solid var(--gold);
}

.hero-split__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 60px 40px;
}

/* Eyebrow */
.hero-split__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-split__eyebrow-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* H1 */
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-title-line       { display: block; color: var(--cream); }
.hero-title-accent     { color: var(--gold); }

/* Subtitle */
.hero-split__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(241,240,234,0.55);
  margin-bottom: 40px;
}

/* Gold rule */
.hero-split__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
  transform-origin: left;
}

/* Description */
.hero-split__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(241,240,234,0.65);
  max-width: 340px;
  margin-bottom: 48px;
}

/* CTAs — stacked, left-aligned */
.hero-split__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-split__cta-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  background: var(--gold-dark);
  border-radius: 40px;
  padding: 13px 28px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero-split__cta-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.hero-split__cta-secondary {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(241,240,234,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-split__cta-secondary:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Bottom location text — pinned to panel bottom */
.hero-split__location {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(241,240,234,0.3);
  padding: 0 60px 28px;
  flex-shrink: 0;
}

/* --- RIGHT PANEL --- */
.hero-img-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  box-shadow: inset 8px 0 24px rgba(0,0,0,0.15);
}
.hero-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Right-edge vignette */
.hero-img-panel::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 100%;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08));
  pointer-events: none;
}

/* Decorative floating number */
.hero-img-panel__num {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
  user-select: none;
}

/* --- Mobile: stack vertically --- */
@media (max-width: 767px) {
  .hero-split {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  /* Photo on top */
  .hero-img-panel {
    order: -1;
    width: 100%;
    height: 55vw;
    min-height: 220px;
    box-shadow: none;
  }
  .hero-split__left {
    width: 100%;
    border-right: none;
    border-top: 1px solid rgba(210,178,114,0.4);
  }
  .hero-split__content {
    padding: 44px 28px 32px;
  }
  .hero-title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }
  .hero-split__location,
  .hero-img-panel__num { display: none; }
}


/* ====== MEMBRES PAGE ====== */

/* --- Hero --- */
.hero-membres {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-membres__bg {
  position: absolute;
  inset: 0;
}
.hero-membres__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.hero-membres__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40,74,62,0.70), rgba(40,74,62,0.35));
}
.hero-membres__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 640px;
}
.hero-membres__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-membres__h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-membres__sub {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* --- Pill buttons (shared by membres page) --- */
.btn-gold-pill {
  display: inline-block;
  background: var(--gold-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-gold-pill:hover {
  background: #a07829;
  transform: translateY(-1px);
}
.btn-teal-pill {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-teal-pill:hover {
  background: #3a7a77;
  transform: translateY(-1px);
}

/* --- Section Fonctionnement --- */
.section-fonctionnement {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.fonctionnement-heading {
  text-align: center;
  margin-bottom: 60px;
}
.fonctionnement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.fonctionnement-card {
  background: var(--white);
  padding: 36px;
  text-align: center;
}
.fonctionnement-card__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.fonctionnement-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--deep-green);
  font-size: 1rem;
  margin-bottom: 12px;
}
.fonctionnement-card__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.fonctionnement-note {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .fonctionnement-grid { grid-template-columns: 1fr; }
}

/* --- Section Avantages --- */
.section-avantages {
  background: var(--white);
  padding: var(--section-py) 0;
}
.avantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.avantages-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.avantages-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.avantages-checklist li:last-child { border-bottom: none; }
.avantages-check {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.tarif-table-heading {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--deep-green);
  font-size: 1rem;
  margin-bottom: 20px;
}
.tarif-table-wrap { overflow-x: auto; }
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.tarif-table thead th {
  background: var(--deep-green);
  color: var(--white);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: left;
}
.tarif-table thead th:nth-child(2),
.tarif-table thead th:nth-child(3) { text-align: right; }
.tarif-table tbody tr:nth-child(even) { background: var(--cream); }
.tarif-table tbody tr:nth-child(odd) { background: var(--white); }
.tarif-table td {
  padding: 10px 16px;
  text-align: left;
  color: var(--text-main);
}
.tarif-table td:nth-child(2) {
  text-align: right;
  color: var(--text-light);
}
.tarif-table td:nth-child(3) {
  text-align: right;
  color: var(--teal);
  font-weight: 600;
}
@media (max-width: 900px) {
  .avantages-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* --- Photo divider --- */
.membres-photo-divider {
  position: relative;
  height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.membres-photo-divider img {
  position: absolute;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.membres-photo-divider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,74,62,0.45);
}
.membres-photo-divider__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 700px;
}
.membres-photo-divider__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
}
.membres-photo-divider__attr {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* --- Section Conditions --- */
.section-conditions {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.conditions-heading {
  text-align: center;
  margin-bottom: 0;
}
.conditions-intro {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-light);
  max-width: 600px;
  margin: 16px auto 60px;
  text-align: center;
  line-height: 1.75;
  font-size: 0.95rem;
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.condition-card {
  background: var(--white);
  padding: 32px 28px;
}
.condition-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--deep-green);
  font-size: 1rem;
  margin-bottom: 12px;
}
.condition-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-light);
}
@media (max-width: 767px) {
  .conditions-grid { grid-template-columns: 1fr; }
}

/* --- Section CTA final --- */
.section-cta-membres {
  background: var(--deep-green);
  padding: 100px 0;
  text-align: center;
}
.section-cta-membres h2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.section-cta-membres p {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.section-cta-membres__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.section-cta-membres__secondary {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.section-cta-membres__secondary:hover { color: var(--gold); }

@media (max-width: 600px) {
  .hero-membres__h1 { font-size: 2rem; }
  .section-cta-membres h2 { font-size: 1.8rem; }
  .membres-photo-divider__quote { font-size: 1.2rem; }
}

/* --- Parallax containers --- */
[data-parallax-container] {
  position: relative;
  overflow: hidden;
}

/* .quote-media must stay absolute (fills its parent section) */
.quote-media[data-parallax-container] {
  position: absolute;
}

[data-parallax] {
  position: absolute;
  inset: -20% 0;          /* taller than container to allow vertical travel */
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* --- Compact hero --- */
.faq-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 52vh;
  padding-top: 72px;
  overflow: hidden;
}
.faq-hero__bg { position: absolute; inset: 0; }
.faq-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.faq-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40,74,62,0.78), rgba(40,74,62,0.50));
}
.faq-hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 24px 64px;
  max-width: 640px;
}
.faq-hero__h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}
.faq-hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- FAQ body --- */
.section-faq {
  background: var(--cream);
  padding-block: var(--section-py-mobile);
}
.faq-wrap { max-width: 820px; margin-inline: auto; }

/* Category group */
.faq-group { margin-bottom: 56px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 6px;
}
.faq-group__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 500;
  color: var(--deep-green);
  margin-bottom: 24px;
}
.faq-group__rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* Accordion item */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(40,74,62,0.08);
  border-radius: var(--radius-img);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item.open {
  border-color: rgba(74,150,147,0.35);
  box-shadow: 0 6px 28px rgba(40,74,62,0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--deep-green);
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--teal); }
.faq-question:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -3px;
  border-radius: var(--radius-img);
}

/* Plus / minus icon */
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--gold-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer__inner {
  padding: 0 24px 24px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-main);
}
.faq-answer__inner p { margin-bottom: 14px; }
.faq-answer__inner p:last-child { margin-bottom: 0; }
.faq-answer__inner strong { font-weight: 600; color: var(--deep-green); }
.faq-answer__inner ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.faq-answer__inner ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.faq-answer__inner ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.faq-callout {
  background: var(--cream);
  border-left: 2px solid var(--teal);
  border-radius: 0 4px 4px 0;
  padding: 12px 16px;
  margin-top: 4px;
  font-size: 0.9rem;
}
.faq-callout p { margin-bottom: 6px; }

/* --- FAQ closing CTA --- */
.faq-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(40,74,62,0.10);
}
.faq-cta h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 14px;
}
.faq-cta p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-light);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-cta__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 768px) {
  .section-faq { padding-block: var(--section-py); }
  .faq-question { padding: 24px 28px; font-size: 1.12rem; }
  .faq-answer__inner { padding: 0 28px 26px; font-size: 0.975rem; }
}

/* Footer FAQ link in bottom bar already styled by .footer-bottom a */

/* ============================================================
   SOINS PAGE (detail)
   ============================================================ */

/* --- Outline button for light backgrounds --- */
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* --- Hero --- */
.soins-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 72vh;
  padding-top: 72px;
  overflow: hidden;
}
.soins-hero__bg { position: absolute; inset: 0; }
.soins-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.soins-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(40,74,62,0.78), rgba(40,74,62,0.48));
}
.soins-hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px 68px;
  max-width: 660px;
}
.soins-hero__h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}
.soins-hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- Intro --- */
.soins-intro {
  background: var(--white);
  padding-block: var(--section-py-mobile);
  text-align: center;
}
.soins-intro p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-main);
  max-width: 640px;
  margin-inline: auto;
  text-wrap: balance;
}
.soins-intro .line-accent { margin-inline: auto; margin-top: 28px; }

/* --- Detail rows --- */
.soins-detail {
  background: var(--cream);
  padding-block: var(--section-py-mobile);
}

.soin-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  scroll-margin-top: 96px;
}
.soin-row + .soin-row {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid rgba(40,74,62,0.10);
}

.soin-row__media .img-zoom-wrap { height: 300px; }
.soin-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soin-row__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 12px;
}
.soin-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--deep-green);
  line-height: 1.2;
  margin-bottom: 10px;
}
.soin-row__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 18px;
}
.soin-row__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 28px;
}
.soin-row__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 768px) {
  .soins-intro { padding-block: var(--section-py); }
  .soins-detail { padding-block: var(--section-py); }
  .soin-row {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .soin-row + .soin-row { margin-top: 96px; padding-top: 96px; }
  .soin-row__media .img-zoom-wrap { height: 440px; }
  /* Alternate: even rows put image on the right */
  .soin-row:nth-child(even) .soin-row__media { order: 2; }
}

/* --- Closing band --- */
.soins-closing {
  background: var(--deep-green);
  padding-block: var(--section-py-mobile);
  text-align: center;
}
.soins-closing__inner { max-width: 680px; margin-inline: auto; }
.soins-closing h2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 20px;
}
.soins-closing p {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.soins-closing p:last-of-type { margin-bottom: 32px; }
.soins-closing__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.soins-closing .btn-ghost { color: var(--white); }

@media (min-width: 768px) {
  .soins-closing { padding-block: var(--section-py); }
}

/* ============================================================
   LEGAL PAGE (mentions légales)
   ============================================================ */

.legal-hero {
  background: var(--deep-green);
  padding: 130px 24px 56px;
  text-align: center;
}
.legal-hero__h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 14px;
}
.legal-hero__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

.section-legal {
  background: var(--cream);
  padding-block: 56px;
}
@media (min-width: 768px) {
  .legal-hero { padding: 150px 24px 64px; }
  .section-legal { padding-block: 88px; }
}

/* Document card */
.legal-card {
  background: var(--white);
  max-width: 800px;
  margin-inline: auto;
  border: 1px solid rgba(40,74,62,0.08);
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(40,74,62,0.06);
  padding: 36px 26px;
}
@media (min-width: 768px) {
  .legal-card { padding: 56px 60px; }
}

.legal-updated {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 28px;
}

/* Identity meta grid */
.legal-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 28px;
  background: var(--cream);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .legal-meta { grid-template-columns: 1fr 1fr; }
}
.legal-meta__item { }
.legal-meta__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
}
.legal-meta__value {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.55;
}
.legal-meta__value a { color: var(--teal); }
.legal-meta__value a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Prose */
.legal-content { }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: var(--deep-green);
  margin: 44px 0 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(40,74,62,0.10);
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--deep-green);
  margin: 24px 0 8px;
}
.legal-content p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 16px;
}
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--deep-green); }
.legal-content ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.legal-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.legal-content strong { font-weight: 600; color: var(--deep-green); }
.legal-content .legal-lede {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* ============================================================
   PRESTATION PAGE (individual soin)
   ============================================================ */

/* --- Hero --- */
.prestation-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 64vh;
  padding-top: 72px;
  overflow: hidden;
}
.prestation-hero__bg { position: absolute; inset: 0; }
.prestation-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
/* Modifier : recadrage parfaitement centré (utilisé pour le massage liftant) */
.prestation-hero__bg img.hero-pos-center {
  object-position: center center;
}
/* Modifier : image miroir horizontale, uniquement en hero (massage liftant) */
.prestation-hero__bg img.hero-flip-x {
  transform: scaleX(-1);
}
/* Modifier : cadrage bas (massage crânien) */
.prestation-hero__bg img.hero-pos-center2 {
  object-position: center 83%;
}
/* Modifier : hero plus haut + cadrage abaissé (Expérience Khire·Li) —
   dézoome pour révéler les mains et la coulée d'huile sur la peau */
.prestation-hero--zoomout { min-height: 80vh; }
.prestation-hero--zoomout .prestation-hero__bg img {
  object-position: center 58%;
}
.prestation-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,9,8,0) 0%, rgba(10,9,8,0.15) 35%, rgba(40,74,62,0.55) 75%, rgba(40,74,62,0.82) 100%);
}
.prestation-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 24px 56px;
}
.prestation-hero__h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 720px;
}
.prestation-hero__meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 26px;
}
.prestation-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 768px) {
  .prestation-hero__content { padding: 0 56px 72px; }
}

/* --- Body layout --- */
.section-prestation {
  background: var(--cream);
  padding-block: 56px;
}
@media (min-width: 768px) {
  .section-prestation { padding-block: 88px; }
}

.prestation-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .prestation-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 56px;
    align-items: start;
  }
}

/* Prose */
.prestation-article { max-width: 720px; }
.prestation-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--deep-green);
  margin-bottom: 32px;
}
.prestation-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 500;
  color: var(--deep-green);
  margin: 40px 0 14px;
}
.prestation-article h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep-green);
  margin: 24px 0 8px;
}
.prestation-article p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 16px;
}
.prestation-article ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.prestation-article ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-main);
}
.prestation-article ul li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.prestation-article strong { font-weight: 600; color: var(--deep-green); }
.prestation-note {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 14px 18px;
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--deep-green);
}
.prestation-note strong { color: var(--gold-dark); }
.prestation-article a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.prestation-article a:hover { color: var(--deep-green); }

/* Aside recap card */
.prestation-aside { position: relative; }
@media (min-width: 900px) {
  .prestation-aside { position: sticky; top: 96px; }
}
.recap-card {
  background: var(--white);
  border: 1px solid rgba(40,74,62,0.10);
  border-radius: 7px;
  box-shadow: 0 8px 36px rgba(40,74,62,0.07);
  padding: 28px 26px;
}
.recap-card__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 18px;
}
.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(40,74,62,0.08);
}
.recap-row:first-of-type { padding-top: 0; }
.recap-row__label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  flex-shrink: 0;
}
.recap-row__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--deep-green);
  text-align: right;
}
.recap-card__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.recap-card__ctas .btn { text-align: center; }

/* --- Closing CTA band --- */
.prestation-cta {
  background: var(--deep-green);
  padding-block: 64px;
  text-align: center;
}
.prestation-cta__inner { max-width: 620px; margin-inline: auto; padding-inline: 24px; }
.prestation-cta h2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.prestation-cta p {
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 28px;
}
.prestation-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.prestation-cta .btn-ghost { color: var(--white); }

/* Séparateur entre la dernière section (CTA verte) et le footer vert */
.prestation-sep {
  background: var(--deep-green);
  display: flex;
  justify-content: center;
  padding: 4px 0;
}
.prestation-sep__line {
  display: block;
  width: 15%;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}

/* --- Other soins nav --- */
.prestation-other {
  background: var(--cream);
  padding-bottom: 64px;
  text-align: center;
}
.prestation-other__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 18px;
}
.prestation-other__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  max-width: 760px;
  margin-inline: auto;
}
.prestation-other__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--deep-green);
  padding: 8px 18px;
  border: 1px solid rgba(40,74,62,0.18);
  border-radius: 40px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.prestation-other__links a:hover {
  background: var(--deep-green);
  color: var(--white);
  border-color: var(--deep-green);
}

/* "Découvrir ce soin" link on soins.html rows */
.soin-row__more {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.soin-row__more:hover { color: var(--deep-green); }

/* Make home soin-card clickable wrapper */
a.soin-card { display: block; color: inherit; }
a.soin-card:hover .card-title { color: var(--teal); }
a.soin-card .card-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--teal);
}

/* ============================================================
   NEWSLETTER POPUP (Brevo)
   ============================================================ */

.nl-sink {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

/* Glass overlay */
.nl-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(40, 74, 62, 0.32);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nl-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
body.nl-open { overflow: hidden; }

/* Modal — scales in from center */
.nl-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid rgba(210, 178, 114, 0.45);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(10, 9, 8, 0.45);
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.25, 1), opacity 0.4s ease;
}
.nl-overlay.open .nl-modal {
  opacity: 1;
  transform: scale(1);
}

.nl-modal__inner { padding: 38px 32px 32px; text-align: center; }

/* Close button */
.nl-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.nl-close:hover { background: rgba(40, 74, 62, 0.08); color: var(--deep-green); }

/* Decorative gold rule under logo */
.nl-logo { margin: 0 auto 20px; width: 150px; aspect-ratio: 2048 / 592; height: auto; }
.nl-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.nl-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--deep-green);
  line-height: 1.15;
  margin-bottom: 12px;
}
.nl-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-main);
  max-width: 320px;
  margin: 0 auto 24px;
}

/* Form */
.nl-form { text-align: left; }
.nl-field { margin-bottom: 14px; }
.nl-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep-green);
  margin-bottom: 6px;
}
.nl-field input {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(40, 74, 62, 0.2);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nl-field input::placeholder { color: #b3b3ac; }
.nl-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(210, 178, 114, 0.18);
}
.nl-field.has-error input { border-color: #d98a8a; }

/* Honeypot */
.nl-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.nl-error {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #c0392b;
  margin: 2px 0 12px;
  min-height: 0;
}
.nl-error:empty { margin: 0; }

.nl-submit {
  width: 100%;
  background: var(--gold-dark);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}
.nl-submit:hover { background: var(--gold); transform: translateY(-1px); }
.nl-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.nl-fine {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* Success state */
.nl-success { text-align: center; padding: 12px 0 4px; }
.nl-success__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.nl-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--deep-green);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.nl-success p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 22px;
}
.nl-success__close { cursor: pointer; }

@media (max-width: 480px) {
  .nl-modal__inner { padding: 34px 22px 26px; }
  .nl-title { font-size: 1.6rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .nl-overlay, .nl-modal { transition: opacity 0.2s ease; }
  .nl-overlay.open .nl-modal { transform: none; }
  .nl-modal { transform: none; }
}

/* ============================================================
   CARTES CADEAUX (boutique)
   ============================================================ */

/* --- Hero --- */
.gc-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 46vh;
  padding-top: 72px;
  overflow: hidden;
}
.gc-hero__bg { position: absolute; inset: 0; }
.gc-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.gc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(40,74,62,0.82), rgba(40,74,62,0.52)); }
.gc-hero__content { position: relative; z-index: 1; padding: 86px 24px 56px; max-width: 660px; }
.gc-hero__h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; margin-bottom: 14px;
}
.gc-hero__sub {
  font-family: var(--font-body); font-weight: 300; color: rgba(255,255,255,0.82);
  font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7;
}

/* --- Section --- */
.section-gc { background: var(--cream); padding-block: 48px; }
@media (min-width: 768px) { .section-gc { padding-block: 72px; } }
.gc-intro {
  max-width: 680px; margin: 0 auto 40px; text-align: center;
  font-family: var(--font-body); font-weight: 300; font-size: 1rem; line-height: 1.8; color: var(--text-main);
}

/* --- Toolbar / Filters --- */
.gc-toolbar { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.gc-filters { display: flex; flex-direction: column; gap: 12px; }
.gc-filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.gc-filter-label {
  font-family: var(--font-body); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); min-width: 64px;
}
.gc-chip {
  font-family: var(--font-body); font-size: 0.82rem; color: var(--deep-green); background: var(--white);
  border: 1px solid rgba(40,74,62,0.18); border-radius: 40px; padding: 7px 15px; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gc-chip:hover { border-color: var(--teal); }
.gc-chip.active { background: var(--deep-green); color: var(--white); border-color: var(--deep-green); }

.gc-toolbar__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(40,74,62,0.1); padding-top: 16px;
}
.gc-count { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-light); }
.gc-reset {
  background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.8rem;
  color: var(--teal); text-decoration: underline; text-underline-offset: 3px; margin-left: 12px;
}
.gc-density { display: flex; align-items: center; gap: 6px; }
.gc-density__label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-light); margin-right: 4px; }
.gc-density__btn {
  width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid rgba(40,74,62,0.18); border-radius: 6px; cursor: pointer;
  color: var(--deep-green); transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gc-density__btn:hover { border-color: var(--teal); }
.gc-density__btn.active { background: var(--deep-green); color: var(--white); border-color: var(--deep-green); }
.gc-density__btn svg { display: block; }

/* --- Grid --- */
.gc-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .gc-grid { grid-template-columns: repeat(3, 1fr); } }
/* density overrides */
.gc-grid.cols-2 { grid-template-columns: 1fr; }
.gc-grid.cols-3, .gc-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) {
  .gc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .gc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .gc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Card --- */
.gc-card {
  background: var(--white); border: 1px solid rgba(40,74,62,0.07); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.gc-card:hover { box-shadow: 0 12px 36px rgba(40,74,62,0.1); transform: translateY(-3px); }
.gc-card.is-hidden { display: none; }
.gc-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; cursor: pointer; }
.gc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gc-card:hover .gc-card__media img { transform: scale(1.05); }
.gc-card__dur {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(40,74,62,0.5); opacity: 0; transition: opacity 0.3s ease;
}
.gc-card__media:hover .gc-card__dur { opacity: 1; }
.gc-card__dur span {
  font-family: var(--font-display); font-style: italic; color: var(--white); font-size: 1.9rem;
  display: flex; flex-direction: column; align-items: center; line-height: 1;
}
.gc-card__dur small { font-family: var(--font-body); font-style: normal; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 6px; opacity: 0.85; }
.gc-card__body { padding: 15px 17px 17px; display: flex; flex-direction: column; flex: 1; }
.gc-card__type { font-family: var(--font-body); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 5px; }
.gc-card__name { font-family: var(--font-display); font-size: 1.08rem; color: var(--deep-green); font-weight: 500; line-height: 1.25; margin-bottom: 5px; }
.gc-card__meta { font-family: var(--font-body); font-size: 0.84rem; color: var(--text-light); margin-bottom: 14px; }
.gc-card__price { color: var(--teal); font-weight: 600; }
.gc-card__actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.gc-card__buy {
  text-align: center; background: var(--gold-dark); color: var(--white); border: none; border-radius: 40px;
  padding: 10px 16px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s ease;
}
.gc-card__buy:hover { background: var(--gold); }
.gc-card__more {
  background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.8rem;
  color: var(--teal); text-decoration: underline; text-underline-offset: 3px; padding: 2px;
}
.gc-card__more:hover { color: var(--deep-green); }

/* Compact density tweaks */
.gc-grid.cols-4 .gc-card__name { font-size: 0.98rem; }
.gc-grid.cols-4 .gc-card__body { padding: 13px 14px 15px; }

/* List view (3rd toggle option) */
.gc-grid.view-list { grid-template-columns: 1fr; gap: 14px; }
.gc-grid.view-list .gc-card { flex-direction: row; align-items: stretch; }
.gc-grid.view-list .gc-card__media { width: 34%; max-width: 220px; aspect-ratio: 1 / 1; flex-shrink: 0; }
.gc-grid.view-list .gc-card__body { flex: 1; justify-content: center; }
.gc-grid.view-list .gc-card__actions { flex-direction: row; flex-wrap: wrap; margin-top: 14px; }
.gc-grid.view-list .gc-card__buy { padding: 10px 20px; }
@media (max-width: 520px) {
  .gc-grid.view-list .gc-card__media { width: 40%; }
  .gc-grid.view-list .gc-card__actions { flex-direction: column; }
}

.gc-empty { text-align: center; padding: 48px 0; color: var(--text-light); font-family: var(--font-body); font-weight: 300; }

/* --- Gift popup --- */
.gc-modal-overlay {
  position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(40,74,62,0.32); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
.gc-modal-overlay.open { opacity: 1; pointer-events: auto; }
.gc-modal {
  position: relative; width: 100%; max-width: 460px; max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--cream); border-radius: 14px; border: 1px solid rgba(210,178,114,0.4);
  box-shadow: 0 30px 80px rgba(10,9,8,0.4); transform: scale(0.94); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.25,1), opacity 0.35s ease;
}
.gc-modal-overlay.open .gc-modal { transform: scale(1); opacity: 1; }
.gc-modal__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mint); }
.gc-modal__media img { width: 100%; height: 100%; object-fit: cover; }
.gc-modal__close {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border: none;
  background: rgba(10,9,8,0.35); color: var(--white); border-radius: 50%; font-size: 1.3rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
}
.gc-modal__close:hover { background: rgba(10,9,8,0.6); }
.gc-modal__inner { padding: 24px 26px 26px; }
.gc-modal__type { font-family: var(--font-body); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 8px; }
.gc-modal__name { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.6rem; color: var(--deep-green); line-height: 1.15; margin-bottom: 6px; }
.gc-modal__meta { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.gc-modal__meta strong { color: var(--teal); font-weight: 600; }
.gc-modal__summary { font-family: var(--font-body); font-weight: 300; font-size: 0.95rem; line-height: 1.75; color: var(--text-main); }
.gc-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.gc-modal__actions .btn { flex: 1; text-align: center; min-width: 130px; }

/* --- CGV --- */
.gc-cgv { max-width: 760px; margin: 56px auto 0; border-top: 1px solid rgba(40,74,62,0.12); padding-top: 12px; }
.gc-cgv summary {
  cursor: pointer; list-style: none; padding: 16px 4px; font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 500; color: var(--deep-green); display: flex; align-items: center; justify-content: space-between;
}
.gc-cgv summary::-webkit-details-marker { display: none; }
.gc-cgv summary::after { content: '+'; color: var(--gold-dark); font-size: 1.2rem; }
.gc-cgv details[open] summary::after { content: '–'; }
.gc-cgv__body { padding: 4px 4px 20px; }
.gc-cgv__body p { font-family: var(--font-body); font-weight: 300; font-size: 0.82rem; line-height: 1.7; color: var(--text-light); margin-bottom: 12px; }
.gc-cgv__body strong { color: var(--deep-green); font-weight: 600; }

/* ============================================================
   MOBILE HARDENING
   ============================================================ */

@media (max-width: 979px) {
  [id] { scroll-margin-top: calc(92px + env(safe-area-inset-top)); }

  a,
  button,
  input,
  select,
  summary {
    touch-action: manipulation;
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  summary:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
  }

  .btn,
  .mobile-nav a,
  .gc-chip,
  .gc-density__btn,
  .gc-card__buy,
  .gc-card__more,
  .gc-modal__close,
  .nl-close,
  .nl-submit,
  #waitlist-form input,
  #waitlist-form select,
  #waitlist-form button[type="submit"],
  .prestation-other__links a,
  .hero-split__cta-primary,
  .hero-split__cta-secondary,
  .btn-gold-pill,
  .btn-teal-pill,
  .footer-nl-btn,
  .gc-cgv summary {
    min-height: 44px;
  }

  .gc-density__btn,
  .gc-modal__close,
  .nl-close {
    width: 44px;
    height: 44px;
  }

  .gc-card__more,
  .prestation-other__links a,
  .hero-split__cta-secondary,
  .gc-cgv summary {
    display: inline-flex;
    align-items: center;
  }

  .gc-card__more {
    justify-content: center;
    width: 100%;
  }

  .btn-teal,
  .mobile-cta {
    background: var(--deep-green);
    border-color: var(--deep-green);
    color: var(--white);
  }

  .btn-gold,
  .btn-gold-pill,
  .hero-split__cta-primary,
  .nl-submit,
  #waitlist-form button[type="submit"],
  .gc-card__buy {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-green);
  }

  .btn-teal-pill {
    background: var(--deep-green);
    color: var(--white);
  }

  .mobile-nav .mobile-cta {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-green) !important;
  }

  .btn-gold:hover,
  .btn-gold-pill:hover,
  .hero-split__cta-primary:hover,
  .nl-submit:hover,
  #waitlist-form button[type="submit"]:hover,
  .gc-card__buy:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-green);
  }

  .btn-teal:hover,
  .btn-teal-pill:hover,
  .btn-outline-teal:hover {
    background: var(--deep-green);
    border-color: var(--deep-green);
    color: var(--white);
  }

  .btn-outline-teal,
  .link-teal,
  .soin-row__more,
  .gc-reset,
  .gc-card__more,
  .legal-content a,
  .legal-meta__value a,
  .prestation-article a {
    color: var(--deep-green);
  }

  .btn-outline-teal {
    border-color: var(--deep-green);
  }

  .eyebrow:not(.eyebrow-white),
  .card-eyebrow,
  .soin-row__eyebrow,
  .faq-group__label,
  .gc-filter-label,
  .gc-card__type,
  .gc-modal__type,
  .recap-card__title,
  .prestation-other__label,
  .legal-updated,
  .legal-meta__label {
    color: var(--deep-green);
  }

  .section-inscription .eyebrow {
    color: var(--gold);
  }

  #waitlist-form input::placeholder {
    color: rgba(255,255,255,0.72);
  }

  .field-hint,
  .form-legal,
  #form-success p {
    color: rgba(255,255,255,0.72);
  }

  .hero-split__subtitle,
  .hero-split__desc,
  .hero-split__cta-secondary,
  .reassurance-list li,
  .footer-tagline,
  .footer-planity-sub,
  .footer-bottom p,
  .footer-bottom a {
    color: rgba(255,255,255,0.72);
  }

  .form-legal a {
    color: rgba(255,255,255,0.9);
  }

  .prestation-article,
  .legal-content,
  .legal-meta__value,
  .footer-address,
  .footer-bottom,
  .condition-card,
  .faq-answer__inner,
  .gc-modal__summary,
  .gc-card__name,
  .gc-card__meta {
    overflow-wrap: anywhere;
  }

  .faq-callout,
  .prestation-note {
    border: 1px solid rgba(40,74,62,0.16);
    border-radius: 6px;
  }

  .faq-item.open,
  .legal-card,
  .recap-card {
    box-shadow: none;
  }

  .soins-intro .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-h1,
  .section-heading h2,
  .section-intro,
  .soins-hero__h1,
  .soins-hero__sub,
  .faq-hero__h1,
  .faq-hero__sub,
  .prestation-hero__h1,
  .prestation-lede,
  .gc-hero__h1,
  .gc-hero__sub,
  .legal-hero__h1,
  .hero-membres__h1,
  .hero-membres__sub,
  .inscription-h2 {
    text-wrap: balance;
  }

  .nl-overlay,
  .gc-modal-overlay {
    padding:
      calc(18px + env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      calc(18px + env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
  }

  .nl-modal,
  .gc-modal {
    max-height: calc(100svh - 36px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .apropos-grid,
  .seance-grid,
  .programme-grid,
  .formateur-grid,
  .inscription-grid,
  .avantages-grid,
  .prestation-layout {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .hero-picture { display: block; }
  .hero-video { display: none; }

  .hero {
    height: 100svh;
    min-height: 560px;
  }

  .hero-content {
    padding: 0 24px calc(72px + env(safe-area-inset-bottom));
  }

  .hero-h1 {
    font-size: clamp(2.15rem, 11vw, 2.8rem);
    letter-spacing: 0;
  }

  .hero-sub { font-size: 0.95rem; }

  .hero-ctas,
  .soin-row__ctas,
  .soins-closing__ctas,
  .prestation-hero__ctas,
  .prestation-cta__ctas,
  .faq-cta__btns,
  .gc-modal__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn,
  .soin-row__ctas .btn,
  .soins-closing__ctas .btn,
  .prestation-hero__ctas .btn,
  .prestation-cta__ctas .btn,
  .faq-cta__btns .btn,
  .gc-modal__actions .btn {
    width: min(100%, 290px);
    text-align: center;
  }

  .section-heading { margin-bottom: 42px; }
  .soin-card { padding: 32px 24px; }
  .seance-img-wrap { height: 340px; }
  .footer-grid { gap: 42px; }
  .footer-bottom { padding-bottom: calc(22px + env(safe-area-inset-bottom)); }

  .hero-split__content { padding: 42px 24px 34px; }
  .hero-split .anim-slide-right,
  .hero-split .anim-slide-up,
  .hero-split .anim-fade,
  .hero-split .anim-scale-x,
  .hero-split .anim-fade-img {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-split__subtitle { margin-bottom: 30px; }
  .hero-split__rule { margin-bottom: 30px; }
  .hero-split__desc { margin-bottom: 36px; }
  .form-card { padding: 30px 22px; }
  .section-fonctionnement,
  .section-avantages,
  .section-conditions {
    padding: var(--section-py-mobile) 0;
  }
  .section-cta-membres { padding: 72px 0; }
  .condition-card,
  .fonctionnement-card { padding: 28px 22px; }

  .prestation-hero,
  .soins-hero,
  .faq-hero,
  .gc-hero,
  .hero-membres {
    min-height: 58svh;
  }

  .prestation-hero__h1,
  .soins-hero__h1,
  .gc-hero__h1,
  .faq-hero__h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .section-prestation,
  .section-legal,
  .section-gc { padding-block: 52px; }
  .recap-card,
  .legal-card { padding: 28px 22px; }
  .legal-meta { padding: 20px; }
  .prestation-other__links { padding-inline: 20px; }

  .gc-filter-group {
    flex-wrap: wrap;
    align-items: center;
    overflow-x: visible;
    margin-inline: 0;
    padding: 0;
    max-width: none;
  }
  .gc-filter-group::-webkit-scrollbar { display: initial; }
  .gc-filter-label {
    position: static;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-width: 64px;
    padding-right: 8px;
    background: var(--cream);
  }
  .gc-chip { flex: 0 1 auto; }
  .gc-toolbar__bottom {
    align-items: flex-start;
    gap: 12px;
  }
  .gc-density { margin-left: -4px; }

  .gc-grid { gap: 16px; }
  .gc-grid.cols-3,
  .gc-grid.cols-4 {
    gap: 14px;
  }
  .gc-card__body { padding: 14px 13px 15px; }
  .gc-card__name { font-size: 1rem; }
  .gc-card__meta { font-size: 0.8rem; }
  .gc-grid.view-list .gc-card__media { width: 38%; }
  .gc-grid.view-list .gc-card__body { padding: 13px; }
  .gc-grid.view-list .gc-card__name { font-size: 0.98rem; }
  .gc-grid.view-list .gc-card__actions { gap: 8px; }

  .nl-modal__inner { padding-inline: 22px; }
  .nl-logo { width: 132px; }
}

@media (max-width: 520px) {
  .gc-grid.view-list .gc-card__media {
    width: 40%;
    max-width: 150px;
  }
  .gc-grid.view-list .gc-card__actions { flex-direction: column; }
  .gc-grid.view-list .gc-card__buy { padding-inline: 12px; }
}

@media (max-width: 360px) {
  .container { padding-inline: 20px; }
  .header-inner { padding-inline: 20px; }
  .header-logo img { width: 138px; }
  .mobile-nav a { font-size: 1.5rem; }
  .gc-filter-group {
    margin-inline: 0;
    padding-inline: 0;
    max-width: none;
  }
  .gc-filter-label { left: auto; }
  .gc-grid.cols-3,
  .gc-grid.cols-4 {
    gap: 12px;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .hero,
  .prestation-hero,
  .soins-hero,
  .faq-hero,
  .gc-hero,
  .hero-membres {
    min-height: 420px;
  }

  .hero-content { padding-bottom: 52px; }
  .mobile-nav {
    gap: 14px;
    justify-content: flex-start;
    padding-block: 16px 28px;
  }
  .mobile-nav a { font-size: 1.25rem; }
}

@media (hover: none) {
  .img-zoom-wrap:hover img,
  .gc-card:hover .gc-card__media img,
  .btn-gold-pill:hover,
  .btn-teal-pill:hover,
  .footer-nl-btn:hover,
  .hero-split__cta-primary:hover {
    transform: none;
  }

  .gc-card:hover {
    transform: none;
    box-shadow: none;
  }

  .gc-card__dur {
    inset: auto auto 8px 8px;
    width: auto;
    height: auto;
    padding: 5px 9px;
    border-radius: 40px;
    background: rgba(40,74,62,0.72);
    opacity: 1;
  }

  .gc-card__dur span {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.72rem;
    line-height: 1;
  }

  .gc-card__dur small { display: none; }

  .btn:active,
  .gc-chip:active,
  .gc-density__btn:active,
  .hamburger:active,
  .gc-card__buy:active,
  .gc-card__more:active {
    transform: translateY(1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up,
  .anim-slide-right,
  .anim-slide-up,
  .anim-fade,
  .anim-scale-x,
  .anim-fade-img {
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    transform: none !important;
    will-change: auto;
  }
}
