:root {
  --ink: #2d2a26;
  --ink-soft: #4a4540;
  --muted: #6f6860;
  --cream: #f9f6f2;
  --cream-deep: #f3eee6;
  --sand: #e8dfd4;
  --sand-soft: #f4ebe3;
  --blush: #f6eee8;
  --terracotta: #c67b63;
  --terracotta-deep: #b2654f;
  --terracotta-soft: #e4c4b6;
  --olive: #7d846c;
  --olive-deep: #5f6652;
  --olive-soft: #a3aa93;
  --sage: #7d846c;
  --sage-deep: #5f6652;
  --sage-soft: #8b907c;
  --mist: #efe8df;
  --mist-2: #f7f3ee;
  --foam: #fbf8f4;
  --gold: #c9a227;
  --line: rgba(45, 42, 38, 0.1);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(67, 52, 42, 0.08);
  --radius: 18px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Great Vibes", "Palatino Linotype", cursive;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 2.5rem));
  --header-h: 92px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(198, 123, 99, 0.08), transparent 55%),
    radial-gradient(800px 420px at 100% 0%, rgba(125, 132, 108, 0.1), transparent 50%),
    var(--cream);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--terracotta-deep); }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; background: var(--terracotta); color: white;
  padding: .6rem 1rem; border-radius: 999px; z-index: 100;
}
.skip-link:focus { top: 1rem; }

.icon {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
  flex: 0 0 auto;
}
.icon svg { width: 100%; height: 100%; display: block; }
.icon-lg { width: 2.4rem; height: 2.4rem; margin-bottom: .85rem; color: var(--olive); }
.icon-value { width: 2rem; height: 2rem; color: var(--olive); }
.icon-cta { width: 2.6rem; height: 2.6rem; color: rgba(255,255,255,.92); }
.icon-quote { width: 1.8rem; height: 1.8rem; color: var(--terracotta-soft); }
.icon-star { width: .95rem; height: .95rem; color: var(--gold); }
.icon-check { width: 1.35rem; height: 1.35rem; color: var(--olive); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(249, 246, 242, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(67, 52, 42, 0.04);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  text-decoration: none;
}
.brand img { width: 168px; height: auto; }
.header-meta {
  font-size: .72rem;
  letter-spacing: .02em;
  color: var(--muted);
  line-height: 1.3;
  white-space: nowrap;
}
.site-nav {
  display: flex; align-items: center; gap: 1.15rem;
  font-size: .95rem; font-weight: 500;
}
.site-nav a { text-decoration: none; color: var(--ink-soft); }
.site-nav a.is-active,
.site-nav a:hover { color: var(--terracotta-deep); }
.btn-nav {
  margin-left: .35rem;
  background: var(--terracotta);
  color: white !important;
  padding: .65rem 1.15rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--terracotta-deep); color: white !important; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); margin: 6px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:first-of-type { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-of-type { transform: translateY(-4px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border: 1px solid transparent; border-radius: 999px;
  padding: .85rem 1.4rem; font: inherit; font-weight: 500;
  text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracotta); color: white; }
.btn-primary:hover { background: var(--terracotta-deep); color: white; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: rgba(198, 123, 99, .45);
}
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta-deep); background: rgba(198, 123, 99, .06); }
.btn-light { background: white; color: var(--olive-deep); }
.btn-light:hover { background: var(--cream); color: var(--olive-deep); }
.btn-sm { padding: .65rem 1rem; font-size: .92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.eyebrow {
  margin: 0 0 .65rem;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
}
.eyebrow-hero {
  text-transform: none;
  letter-spacing: .02em;
  font-size: .95rem;
  max-width: 36rem;
  line-height: 1.45;
}
.lede { font-size: 1.08rem; color: var(--muted); max-width: 38rem; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.15rem, 6.2vw, 3.35rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); margin: 0 0 .9rem; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); margin: 0 0 .6rem; }

/* Hero lumineux — photo à droite, texte à gauche */
.hero-split {
  position: relative;
  background: linear-gradient(180deg, #fbf8f4 0%, var(--cream) 100%);
  color: var(--ink);
  overflow: hidden;
  min-height: auto;
}
.hero-split::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -80px; top: 40px;
  background: radial-gradient(circle, rgba(125, 132, 108, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 1.25fr) minmax(14rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 6vh, 3.5rem) 0 clamp(2.5rem, 7vh, 4.5rem);
}
.hero-copy h1 {
  color: var(--ink);
  max-width: none;
}
.hero-br { display: none; }
@media (min-width: 900px) {
  .hero-br { display: inline; }
  .hero-copy h1 {
    font-size: clamp(2.2rem, 2.2vw + 0.7rem, 2.75rem);
    line-height: 1.18;
  }
  .hero-copy h1 .h1-line {
    white-space: nowrap;
  }
}
.hero-copy .lede {
  color: var(--ink-soft);
  max-width: 34rem;
}
.hero-copy .btn-row { margin-top: 1.5rem; }
.hero-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: .95rem;
}
.hero-meta li { display: flex; align-items: center; gap: .45rem; }
.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .85rem;
  margin: 1.15rem 0 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
.hero-rating a {
  color: var(--terracotta-deep);
  font-weight: 500;
  text-decoration: none;
}
.hero-rating a:hover { color: var(--terracotta); }
.hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 28px 60px rgba(67, 52, 42, 0.12);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 18%;
  position: absolute;
  inset: 0;
  filter: saturate(0.92) contrast(1.02);
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45, 42, 38, 0.12));
  pointer-events: none;
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-tight { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section-head { max-width: 40rem; margin-bottom: 2.2rem; }
.section-head-center {
  text-align: center;
  margin-inline: auto;
  max-width: 42rem;
}
.section-head-center .lede { margin-inline: auto; }
.section-blush { background: var(--blush); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.split-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}

.motto {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--terracotta);
  margin: 0 0 1rem;
}

.situation-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 1rem;
}
.situation-list li {
  padding: 1.15rem 1.25rem 1.15rem 1.35rem;
  border-left: 2px solid var(--terracotta-soft);
  background: rgba(255,255,255,.7);
}
.situation-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.situation-list span { color: var(--muted); }

.band {
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: white;
  margin: 0;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.band h2, .band .eyebrow { color: white; }
.band .eyebrow { color: rgba(255,255,255,.75); }
.band p { color: rgba(255,255,255,.9); max-width: 40rem; }
.band .btn-ghost { color: white; border-color: rgba(255,255,255,.45); }
.band .btn-ghost:hover { background: rgba(255,255,255,.1); color: white; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service {
  padding: 1.6rem 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: .7rem;
  min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service .price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terracotta-deep);
  margin-top: auto;
}
.service .meta { color: var(--muted); font-size: .95rem; }
.service .btn { align-self: flex-start; margin-top: .4rem; }

.group-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  align-items: stretch;
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 440px;
}
.group-copy {
  padding: clamp(1.4rem, 3.2vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.group-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbf8f4;
  overflow: hidden;
}
.group-media img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: center center;
}
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.2rem; }
.pill {
  display: inline-flex; align-items: center;
  padding: .4rem .8rem; border-radius: 999px;
  background: var(--sand-soft); color: var(--olive-deep); font-size: .88rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  padding: 1.4rem 1.2rem;
  border-top: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-bottom: .5rem;
}

.section-quotes {
  background: var(--blush);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.quote {
  padding: 1.7rem 1.45rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 0;
  box-shadow: 0 12px 36px rgba(67, 52, 42, 0.07);
  margin: 0;
  display: grid;
  gap: .75rem;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  color: var(--ink);
}
.quote cite {
  font-style: normal;
  font-weight: 500;
  color: var(--terracotta);
  font-size: .95rem;
}
.stars { display: flex; gap: .15rem; }

.page-hero {
  padding: clamp(3.5rem, 9vw, 6rem) 0 2rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.page-hero h1 { max-width: 16ch; }

.prose { max-width: 44rem; }
.prose p { color: var(--ink-soft); }
.prose h2 { margin-top: 2.2rem; }
.prose ul { padding-left: 1.1rem; color: var(--ink-soft); }

.form-grid {
  display: grid; gap: 1rem;
  max-width: 36rem;
}
.form-grid label { display: grid; gap: .35rem; font-weight: 500; font-size: .95rem; }
.form-grid input,
.form-grid textarea,
.newsletter-form input {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  border-radius: 12px;
  padding: .85rem 1rem;
  font: inherit;
  color: var(--ink);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-grid input:focus,
.form-grid textarea:focus,
.newsletter-form input:focus {
  outline: 2px solid rgba(198, 123, 99, .35);
  border-color: var(--terracotta);
}
.form-msg { margin: .4rem 0 0; font-size: .92rem; }
.form-msg.is-ok { color: var(--olive-deep); }
.form-msg.is-err { color: #8a3b32; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.contact-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card h3 { margin-bottom: .35rem; }
.contact-card p { margin: .25rem 0; color: var(--muted); }

.rdv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.rdv-card {
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; gap: .8rem;
  box-shadow: var(--shadow);
}
.rdv-card .btn { justify-self: start; }

.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.article-card {
  display: grid;
  gap: .7rem;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}
.article-card span { color: var(--terracotta); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }

.site-footer { margin-top: 2rem; }
.footer-cta {
  background: var(--terracotta);
  color: white;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}
.footer-cta-inner { text-align: center; }
.footer-cta h2, .footer-cta .eyebrow { color: white; }
.footer-cta .lede { color: rgba(255,255,255,.9); margin-inline: auto; }
.footer-cta .btn-row { justify-content: center; margin-top: 1.3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
  padding: 3rem 0 1.5rem;
}
.footer-brand p, .footer-note { color: var(--muted); font-size: .95rem; }
.footer-grid h3 {
  font-size: 1.15rem;
  margin-bottom: .8rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-links a { text-decoration: none; color: var(--ink-soft); }
.footer-links a:hover { color: var(--terracotta-deep); }
.newsletter-form { display: grid; gap: .55rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: .9rem;
}
.footer-bottom a { text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.trust-strip-light {
  background: var(--white);
  color: var(--ink-soft);
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem 1.25rem;
  font-size: .92rem;
}
.trust-row-3 {
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.trust-row p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.trust-row .icon { color: var(--olive); }
.trust-row strong { color: var(--ink); font-weight: 500; }

.spot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.spot-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.spot-card {
  background: var(--white);
  border: 1px solid rgba(45, 42, 38, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(67, 52, 42, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.spot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(67, 52, 42, 0.1);
  border-color: rgba(198, 123, 99, 0.35);
  color: inherit;
}
.spot-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}
.spot-card-img {
  padding: 1.45rem 1.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
}
.spot-img-wrap {
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.spot-img-wrap img {
  max-height: 92px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(198, 123, 99, 0.08));
}
.spot-card-img h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 .55rem;
  color: var(--ink);
}
.spot-card-img p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}
.spot-close {
  text-align: center;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
}
.discover-wrap {
  text-align: center;
  margin: 1.4rem 0 0;
}
.discover-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  color: var(--terracotta-deep);
  text-decoration: none;
  padding: .35rem .2rem;
  border-bottom: 2px solid var(--terracotta);
}
.discover-cta:hover { color: var(--terracotta); }
.discover-cta .icon { width: 1.4rem; height: 1.4rem; }

.about-name {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  margin: 0 0 .35rem;
  line-height: 1.12;
}
.about-copy .motto { margin-top: .15rem; }
.about-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
}
.about-photo {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
}
.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 1.15rem;
}
.value-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
}
.value-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .15rem;
}
.value-list span { color: var(--muted); font-size: .95rem; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.offer-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.offer-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.offer-media {
  height: 240px;
  overflow: hidden;
}
.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.92);
}
.offer-media-therapie img {
  object-position: center 2%;
}
.offer-body {
  padding: 1.4rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .55rem;
}
.offer-body h3 { color: var(--terracotta-deep); margin: 0; }
.offer-body p { margin: 0; color: var(--ink-soft); }
.offer-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  margin-top: auto;
  padding-top: .4rem;
}
.offer-price-caption,
.offer-note {
  color: var(--muted);
  font-size: .92rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .4rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--terracotta-deep);
  text-decoration: none;
}
.text-link:hover { color: var(--terracotta); }
.text-link .icon { width: 1rem; height: 1rem; }

.chooser {
  background: var(--blush);
  padding: clamp(2.8rem, 6vw, 4rem) 0;
}
.chooser-inner {
  max-width: 40rem;
  text-align: center;
  margin-inline: auto;
}
.chooser-inner p { color: var(--ink-soft); }
.chooser-inner .btn-row { justify-content: center; margin-top: 1.2rem; }

.gains-panel {
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gains-panel .section-head-center {
  margin-bottom: 1.4rem;
}
.gains-list-wide {
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  width: min(100%, 42rem);
  margin-inline: auto;
}

.cta-olive {
  background: linear-gradient(135deg, #8a9178, var(--olive-deep));
  color: white;
  padding: clamp(2.4rem, 5vw, 3.4rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-olive-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem 1.6rem;
  align-items: center;
  position: relative;
}
.cta-olive h2 { color: white; margin: 0 0 .25rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-olive p { margin: 0; color: rgba(255,255,255,.9); }
.script-note {
  grid-column: 1 / -1;
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: rgba(255,255,255,.92);
  margin: .2rem 0 0;
  justify-self: end;
}

.faq { display: grid; gap: .7rem; max-width: 48rem; }
.faq-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.faq-layout .faq { max-width: none; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .35rem 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  padding: .85rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--terracotta);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-body { padding: 0 0 1rem; color: var(--ink-soft); }
.faq-body p { margin: 0; }
.faq-body a { color: var(--terracotta-deep); }

.gains-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.gains-card h2 { font-size: 1.7rem; }
.gains-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: .85rem;
}
.gains-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  align-items: start;
  color: var(--ink-soft);
}

.breadcrumb { margin: 0 0 1.1rem; }
.breadcrumb ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .35rem .6rem;
  font-size: .88rem; color: var(--muted);
}
.breadcrumb li:not(:last-child)::after { content: " /"; color: var(--sand); margin-left: .55rem; }
.breadcrumb a { text-decoration: none; color: var(--terracotta); }

.sticky-cta {
  position: fixed; left: 50%; bottom: 0; z-index: 40;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: .7rem 1.1rem;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-bottom: 0;
  width: min(var(--shell), 100%);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -12px 40px rgba(67, 52, 42, .1);
  transition: transform .35s ease, opacity .35s ease;
}
.sticky-cta.is-away {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta p { margin: 0; font-size: .92rem; color: var(--muted); }
.sticky-cta-actions { display: flex; flex-wrap: wrap; gap: .45rem; }
.site-footer { padding-bottom: 4.5rem; }

.page-hero .breadcrumb + .eyebrow { margin-top: .2rem; }

.center-note {
  text-align: center;
  margin: 2rem 0 0;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}
.center-note a { text-decoration: none; }

.group-page {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
.form-card,
.group-page .form-grid {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}
.form-lead { margin: -.4rem 0 1rem; color: var(--muted); }
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.optional { font-weight: 400; color: var(--muted); }
.role-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .7rem;
}
.role-fieldset legend {
  font-weight: 500;
  margin-bottom: .35rem;
}
.role-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: start;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}
.role-option:has(input:checked) {
  border-color: var(--terracotta);
  background: var(--sand-soft);
}
.role-option strong { display: block; }
.role-option em {
  font-style: normal;
  color: var(--terracotta-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  font-weight: 400;
  font-size: .92rem;
}
.price-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin: 1.2rem 0;
}
.price-pair article {
  background: var(--cream);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.price-pair h3 { margin: 0; font-size: 1.2rem; }
.pay-fieldset,
.role-fieldset {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem 1.1rem;
  margin: 0;
  display: grid;
  gap: .65rem;
}
.pay-fieldset legend,
.role-fieldset legend {
  padding: 0 .35rem;
  color: var(--terracotta-deep);
  font-weight: 500;
}
.pay-option,
.role-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  margin: 0;
}
.pay-option em,
.role-option em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: .92rem;
}
.sticky-cta { padding: .55rem 1.1rem; }

@media (max-width: 1100px) {
  .spot-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .offer-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .split,
  .services,
  .group-panel,
  .steps,
  .quotes,
  .contact-grid,
  .rdv-grid,
  .article-list,
  .footer-grid,
  .trust-row,
  .spot-grid,
  .spot-grid-5,
  .hero-grid,
  .about-split,
  .offer-grid,
  .offer-grid-3,
  .faq-layout,
  .cta-olive-inner,
  .trust-row-3,
  .gains-list-wide,
  .group-page,
  .form-two,
  .price-pair {
    grid-template-columns: 1fr;
  }
  .hero-photo { min-height: 380px; }
  .hero-copy h1 { max-width: none; }
  .about-photo img { height: 360px; }
  .offer-media { height: 210px; }
  .group-panel { max-height: none; }
  .group-media img { max-height: 260px; }
  .script-note { justify-self: start; }
  .sticky-cta { width: 100%; left: 0; transform: none; border-radius: 0; padding: .75rem 1rem 1rem; }
  .sticky-cta.is-away { transform: translateY(120%); }
  .sticky-cta p { display: none; }
  .split-media { min-height: 280px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(249,246,242,.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: .15rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a { padding: .75rem .2rem; }
  .btn-nav { margin: .5rem 0 0; text-align: center; }
  .header-meta { display: none; }
}

@media (max-width: 680px) {
  .spot-grid-5 {
    grid-template-columns: 1fr;
    gap: .9rem;
  }
  .spot-card-img {
    padding: 1.15rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
