/* ═══════════════════════════════════════════════════════════
   MAÏTÉ — Massages & bien-être
   Palette officielle (charte mai 2026) — thème unique Atelier
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand palette (from identité graphique) */
  --cream:        #faf7f5;
  --beige:        #f2ede7;
  --beige-deep:   #ebe3d9;
  --terracotta:   #a65a3a;
  --terracotta-d: #8a4a2f;
  --caramel:      #a65a3a;
  --dore:         #c6a769;
  --taupe:        #8b6b5c;
  --ink:          #2a1f18;    /* deep warm brown for body text */
  --ink-soft:     #5a463a;
  --line:         rgba(42, 31, 24, 0.12);

  /* Typography */
  --ff-display: 'Belleza', 'Optima', 'Cormorant Garamond', serif;
  --ff-body:    'Raleway', 'Helvetica Neue', system-ui, sans-serif;
}

/* ───────── Theme: Atelier (cream editorial) ───────── */
.theme-atelier {
  --bg:         var(--cream);
  --bg-alt:     var(--beige);
  --bg-card:    #ffffff;
  --fg:         var(--ink);
  --fg-soft:    var(--ink-soft);
  --accent:     var(--caramel);
  --accent-soft:#dec2ad;
  --hairline:   rgba(42, 31, 24, 0.14);
}

/* ───────── Reset & base ───────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

.site {
  font-family: var(--ff-body);
  color: var(--fg);
  background: var(--bg);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.site img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ───────── Typography ───────── */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.02;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.lede {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--fg);
  font-weight: 400;
  text-wrap: pretty;
}
.body-text {
  color: var(--fg-soft);
  font-weight: 400;
  line-height: 1.7;
  font-size: 15px;
}
.mono-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-soft);
  opacity: 0.7;
}

/* ───────── Layout primitives ───────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
.container-sm {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 64px;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-label .num {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.section-label .rule {
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* ───────── Navigation ───────── */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand .mark {
  width: 40px; height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}
.nav-brand .wordmark {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  line-height: 1;
}
.nav-brand .sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 22px;
  background: var(--caramel);
  color: #fff;
  border: 1px solid var(--caramel);
  border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover { background: #fff; color: var(--caramel); transform: translateY(-1px); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--caramel);
  color: #fff;
  border-color: var(--caramel);
}
.btn-primary:hover {
  background: #fff;
  color: var(--caramel);
  border-color: var(--caramel);
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--hairline);
  color: var(--fg);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ───────── HERO ───────── */
.hero {
  min-height: 780px;
  padding: 140px 64px 64px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr auto;
  grid-template-areas: "text visual" "meta meta";
  column-gap: 80px;
  row-gap: 0;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; grid-area: text; align-self: center; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.hero-title {
  font-size: clamp(64px, 7.6vw, 112px);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-title .amp {
  font-size: 0.6em;
  opacity: 0.55;
  display: inline-block;
  transform: translateY(-0.15em);
}
.hero-sub {
  max-width: 480px;
  margin-bottom: 48px;
  font-size: 17px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-meta {
  grid-area: meta;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
  z-index: 2;
  border-top: 1px solid var(--hairline);
  padding-top: 40px;
  margin-top: 40px;
}
.hero-meta-item {
  max-width: 200px;
}
.hero-meta-item .n {
  font-family: var(--ff-display);
  font-size: 38px;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.hero-meta-item .l {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* Hero visual — collage of imagery */
.hero-visual {
  grid-area: visual;
  position: relative;
  height: 560px;
}
.hero-photo {
  position: absolute;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -20px rgba(42, 31, 24, 0.35);
  overflow: hidden;
}
.hero-photo-main {
  top: 0; right: 0;
  width: 72%;
  height: 100%;
}
.hero-photo-sub {
  bottom: 40px; left: 0;
  width: 45%;
  height: 55%;
  box-shadow: 0 20px 40px -10px rgba(42, 31, 24, 0.45);
}
.hero-photo-tiny {
  top: 30px; left: 8%;
  width: 110px; height: 110px;
  border-radius: 50%;
  box-shadow: 0 10px 30px -8px rgba(42, 31, 24, 0.4);
}
.hero-caption {
  position: absolute;
  right: -20px;
  top: 30px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--fg-soft);
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

/* Hero ornament (hairline frame with logo mandala) */
.hero-ornament {
  position: absolute;
  top: 120px; right: 64px;
  width: 160px; height: 160px;
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Marquee ticker */
.ticker {
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: var(--terracotta);
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 48px; }
.ticker-track span::after {
  content: '✦';
  color: rgba(250, 247, 245, 0.5);
  font-size: 14px;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───────── SERVICES ───────── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.services-intro h2 {
  font-size: clamp(44px, 5vw, 68px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.service-card {
  background: var(--bg);
  padding: 40px 36px 44px;
  transition: background 0.3s;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--bg-alt); }
.service-card .num {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.service-card .glyph {
  width: 52px; height: 52px;
  margin-bottom: 28px;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.15;
}
.service-card p {
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: auto;
}
.service-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.service-card .price {
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--fg);
}
.service-card .dur {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.service-subtitle {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: -10px 0 12px;
  font-family: var(--ff-body);
  font-weight: 500;
}
.btn-savoir-plus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  padding: 9px 18px;
  font-family: var(--ff-body);
  transition: background 0.2s, color 0.2s, gap 0.2s;
  align-self: flex-start;
}
.btn-savoir-plus:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  gap: 12px;
}
/* ── Service detail modal ── */
.service-detail-box {
  max-width: 660px;
}
.service-detail-subtitle {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-top: 2px;
}
.service-detail-intro {
  font-size: 15px;
  font-style: italic;
  color: var(--fg-soft);
  margin: 18px 0 22px;
  line-height: 1.65;
}
.service-detail-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 540px) {
  .service-detail-sections { grid-template-columns: 1fr; }
}
.service-detail-heading {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail-list li {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.6;
  padding: 5px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  gap: 8px;
}
.service-detail-list li::before { content: '✓'; color: var(--accent); flex-shrink: 0; }
.service-detail-list--ci li::before { content: '·'; color: var(--fg-soft); }
.service-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.service-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.service-detail-price .price {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--fg);
}
.service-detail-price .dur {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* ───────── HISTOIRE ───────── */
.story {
  background: var(--bg-alt);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.story-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 80px -30px rgba(42, 31, 24, 0.4);
}
.story-media::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  pointer-events: none;
  opacity: 0.3;
}
.story-quote {
  position: absolute;
  bottom: -40px; right: -40px;
  background: var(--bg);
  padding: 28px 32px;
  max-width: 280px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--fg);
  box-shadow: 0 20px 40px -10px rgba(42, 31, 24, 0.2);
}
.story-quote::before {
  content: '“';
  position: absolute;
  top: -10px; left: 18px;
  font-family: var(--ff-display);
  font-size: 70px;
  color: var(--accent);
  line-height: 1;
}
.story-text h2 {
  font-size: clamp(44px, 5vw, 68px);
  margin-bottom: 32px;
}
.story-text h2 em {
  font-style: italic;
  color: var(--accent);
}
.story-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg);
  max-width: 520px;
}
.story-text p.first::first-letter {
  font-family: var(--ff-display);
  font-size: 68px;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
.story-signature {
  margin-top: 36px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
}
.story-timeline {
  margin-top: 48px;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}
.story-timeline .t-item {
  flex: 1;
  padding-right: 20px;
}
.story-timeline .t-item .y {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}
.story-timeline .t-item .l {
  font-size: 12px;
  color: var(--fg-soft);
  line-height: 1.4;
}

/* ───────── TARIFS ───────── */
.tarifs-head {
  text-align: center;
  margin-bottom: 72px;
}
.tarifs-head h2 {
  font-size: clamp(44px, 5vw, 68px);
  margin-bottom: 20px;
}
.tarifs-head p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--fg-soft);
}
.tarifs-table {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}
.tarif-row {
  display: grid;
  grid-template-columns: 50px 1fr auto 120px 130px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  transition: padding 0.25s;
}
.tarif-row:hover { padding-left: 12px; }
.tarif-row .num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.tarif-row .name {
  font-family: var(--ff-display);
  font-size: 24px;
  line-height: 1.15;
}
.tarif-row .desc {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.45;
  max-width: 340px;
  margin-top: 4px;
}
.tarif-row .dur {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  text-align: right;
}
.tarif-row .price {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--accent);
  text-align: right;
}
.tarif-row .book-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 10px 16px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  transition: all 0.2s;
  text-align: center;
}
.tarif-row .book-link:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.tarifs-note {
  max-width: 880px;
  margin: 40px auto 0;
  padding: 24px;
  border: 1px dashed var(--hairline);
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.6;
  border-radius: 4px;
  text-align: center;
}
.tarifs-note strong { color: var(--fg); font-weight: 600; }

/* ───────── TÉMOIGNAGES ───────── */
.testimonials {
  padding: 140px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}
.testimonials-head h2 {
  font-size: clamp(44px, 5vw, 68px);
  max-width: 560px;
}
.treatwell-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--bg);
}
.treatwell-badge .score {
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--accent);
  line-height: 1;
}
.treatwell-badge .stars {
  color: var(--dore);
  letter-spacing: 2px;
  font-size: 13px;
}
.treatwell-badge .count {
  font-size: 11px;
  color: var(--fg-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.t-card {
  background: var(--bg);
  padding: 40px 32px 32px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.t-card .quote-mark {
  font-family: var(--ff-display);
  font-size: 64px;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.4;
}
.t-card .body {
  font-family: var(--ff-display);
  font-size: 19px;
  line-height: 1.45;
  color: var(--fg);
  margin-bottom: auto;
  padding-bottom: 28px;
}
.t-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.t-card .author {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.t-card .author .s {
  display: block;
  font-size: 11px;
  color: var(--fg-soft);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.t-card .stars {
  color: var(--dore);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ───────── BOOKING (shown inline at bottom) ───────── */
.booking {
  padding: 140px 0;
  background: var(--accent);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.booking-side .eyebrow {
  color: var(--bg);
  opacity: 0.7;
  margin-bottom: 24px;
}
.booking-side h2 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 32px;
}
.booking-side p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  opacity: 0.92;
  margin-bottom: 40px;
  max-width: 360px;
}
.booking-side .info-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.booking-side .info-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.booking-side .info-list li span:first-child {
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  align-self: center;
}

.booking-form {
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
  padding: 44px 44px 36px;
  box-shadow: 0 40px 80px -30px rgba(42, 31, 24, 0.5);
  min-height: 580px;
  display: flex;
  flex-direction: column;
}

/* Booking stepper */
.stepper {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}
.stepper .step {
  flex: 1;
  height: 3px;
  background: rgba(42, 31, 24, 0.1);
  border-radius: 2px;
  transition: background 0.3s;
}
.stepper .step.active { background: var(--terracotta); }
.stepper .step.done { background: var(--caramel); }

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.step-header .count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  text-transform: uppercase;
}
.step-header .back {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.step-header .back:hover { color: var(--terracotta); }

.step-title {
  font-family: var(--ff-display);
  font-size: 34px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
}

/* Service picker */
.svc-picker { display: flex; flex-direction: column; gap: 8px; flex: 1; overflow-y: auto; }
.svc-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(42, 31, 24, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  align-items: center;
  text-align: left;
  width: 100%;
}
.svc-option:hover {
  border-color: var(--terracotta);
  background: var(--cream);
}
.svc-option.selected {
  border-color: var(--terracotta);
  background: var(--beige);
}
.svc-option .n {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.2;
}
.svc-option .d {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.svc-option .p {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--terracotta);
}

/* Calendar */
.cal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}
.cal-head .mo {
  font-family: var(--ff-display);
  font-size: 20px;
  text-transform: capitalize;
}
.cal-head .nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(42, 31, 24, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.15s;
}
.cal-head .nav-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.cal-head .nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding: 8px 0 4px;
  opacity: 0.6;
}
.cal-day {
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  color: var(--ink);
}
.cal-day:disabled, .cal-day.unavailable {
  color: rgba(42, 31, 24, 0.25);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 0.5px;
}
.cal-day.empty { visibility: hidden; }
.cal-day:hover:not(:disabled):not(.unavailable):not(.selected) {
  background: var(--beige);
}
.cal-day.selected {
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 600;
}
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 3px; height: 3px;
  background: var(--terracotta);
  border-radius: 50%;
}
.cal-day.selected.today::after { background: var(--cream); }

.cal-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(42, 31, 24, 0.1);
  margin-top: 4px;
}
.cal-time {
  padding: 10px 4px;
  border: 1px solid rgba(42, 31, 24, 0.14);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.04em;
}
.cal-time:hover:not(:disabled) { border-color: var(--terracotta); color: var(--terracotta); }
.cal-time.selected {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.cal-time:disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Form fields */
.fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(42, 31, 24, 0.14);
  border-radius: 6px;
  background: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--terracotta);
}
.field textarea { resize: none; min-height: 72px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: var(--beige);
  border-radius: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-row input { accent-color: var(--terracotta); margin-top: 2px; }

/* Recap */
.recap {
  background: var(--beige);
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.recap-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px dashed rgba(42, 31, 24, 0.15);
}
.recap-row:last-child { border-bottom: 0; padding-top: 12px; font-weight: 600; }
.recap-row .k {
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  align-self: center;
}
.recap-row .v {
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: 16px;
  text-align: right;
}
.recap-row:last-child .v {
  color: var(--terracotta);
  font-size: 22px;
}

/* Confirmation */
.confirm {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}
.confirm .check {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--caramel);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.confirm h3 {
  font-family: var(--ff-display);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.confirm p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 20px;
}
.confirm .email {
  font-family: 'JetBrains Mono', monospace;
  color: var(--terracotta);
  font-size: 13px;
}
.confirm .details {
  background: var(--beige);
  padding: 18px 22px;
  border-radius: 6px;
  margin-top: 20px;
  text-align: left;
  min-width: 260px;
}
.confirm .details .k {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.confirm .details .v {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}
.confirm .details .v:last-child { margin-bottom: 0; }

.step-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.step-actions .btn {
  flex: 1;
  justify-content: center;
}
.btn-booking {
  background: var(--caramel);
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--caramel);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-booking:hover:not(:disabled) { background: #fff; color: var(--caramel); }
.btn-booking:disabled {
  background: rgba(42, 31, 24, 0.18);
  cursor: not-allowed;
  color: rgba(250, 247, 245, 0.7);
}
.btn-booking-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(42, 31, 24, 0.14);
}
.btn-booking-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); background: transparent; }

/* ───────── CONTACT / INFOS PRATIQUES ───────── */
.contact {
  padding: 140px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-head h2 {
  font-size: clamp(44px, 5vw, 68px);
  margin-bottom: 28px;
}
.contact-head p {
  color: var(--fg-soft);
  max-width: 420px;
  margin-bottom: 40px;
}
.contact-list {
  list-style: none;
  border-top: 1px solid var(--hairline);
}
.contact-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
}
.contact-list .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.contact-list .v {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--fg);
  line-height: 1.5;
}

.horaires-card {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: 4px;
  position: relative;
}
.horaires-card h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 400;
}
.horaires-list {
  list-style: none;
}
.horaires-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  align-items: center;
}
.horaires-list li:last-child { border-bottom: 0; }
.horaires-list .d { color: var(--fg); font-weight: 500; letter-spacing: 0.04em; }
.horaires-list .h { color: var(--fg-soft); font-family: var(--ff-display); font-size: 17px; }
.horaires-list .closed { color: var(--fg-soft); opacity: 0.6; font-style: italic; }

.map-stub {
  margin-top: 24px;
  height: 180px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--beige-deep) 0%, var(--caramel) 100%);
  position: relative;
  overflow: hidden;
}
.map-stub::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
}
.map-pin {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -100%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.map-pin::after {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.2;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.4); opacity: 0; }
}

/* ───────── FOOTER ───────── */
.footer {
  background: var(--bg-alt);
  padding: 70px 0 40px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .mark {
  width: 60px; height: 80px;
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  margin-bottom: 18px;
}
.footer-brand p {
  color: var(--fg-soft);
  font-size: 13px;
  max-width: 260px;
  line-height: 1.6;
  font-family: var(--ff-display);
  font-style: italic;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--fg-soft);
}
.footer-col ul li:hover { color: var(--accent); }
.footer-bot {
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* ───────── ATELIER theme — cream texture accent ───────── */
.theme-atelier .story,
.theme-atelier .testimonials {
  background: var(--beige);
}
.theme-atelier .hero {
  background: var(--cream);
}
.theme-atelier .hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--beige);
  z-index: 0;
}

/* ───────── COCON theme — full-bleed photo hero, darker ───────── */
/* ───────── MOBILE VARIANT (inside artboard at 390 width) ───────── */
.site.mobile {
  font-size: 15px;
}
.site.mobile .container,
.site.mobile .container-sm {
  padding: 0 24px;
}
.site.mobile .section { padding: 72px 0; }
.site.mobile .nav { padding: 18px 24px; }
.site.mobile .nav-links { display: none; }
.site.mobile .nav-brand .wordmark { font-size: 16px; letter-spacing: 0.14em; }
.site.mobile .nav-brand .sub { font-size: 8px; }
.site.mobile .nav-cta { font-size: 9px; padding: 8px 14px; }
.site.mobile .nav-brand .mark { width: 32px; height: 32px; }

.site.mobile .hero {
  grid-template-columns: 1fr;
  padding: 100px 24px 64px;
  min-height: 680px;
  gap: 40px;
}
.site.mobile .hero::before { display: none; }
.site.mobile .hero-title { font-size: 58px; }
.site.mobile .hero-visual { height: 340px; }
.site.mobile .hero-photo-tiny { width: 70px; height: 70px; }
.site.mobile .hero-sub { font-size: 15px; margin-bottom: 28px; }
.site.mobile .hero-ctas { flex-wrap: wrap; }
.site.mobile .hero-meta { flex-wrap: wrap; gap: 24px; }
.site.mobile .hero-caption { display: none; }
.site.mobile .hero-ornament { display: none; }

.site.mobile .services-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
.site.mobile .services-grid { grid-template-columns: 1fr; }
.site.mobile .service-card { min-height: auto; padding: 32px 24px; }

.site.mobile .story-grid { grid-template-columns: 1fr; gap: 48px; }
.site.mobile .story-quote { position: static; max-width: none; margin-top: 20px; }
.site.mobile .story-media::before { inset: -6px; }
.site.mobile .story-timeline { flex-direction: column; gap: 16px; }

.site.mobile .tarif-row {
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  padding: 20px 0;
}
.site.mobile .tarif-row .dur { display: none; }
.site.mobile .tarif-row .book-link { display: none; }
.site.mobile .tarif-row .name { font-size: 18px; }
.site.mobile .tarif-row .desc { font-size: 12px; }
.site.mobile .tarif-row .price { font-size: 22px; }

.site.mobile .testimonials-head { flex-direction: column; align-items: flex-start; }
.site.mobile .testimonials-grid { grid-template-columns: 1fr; }

.site.mobile .booking-wrap { grid-template-columns: 1fr; gap: 36px; }
.site.mobile .booking-form { padding: 28px 22px 26px; }

.site.mobile .contact-grid { grid-template-columns: 1fr; gap: 48px; }
.site.mobile .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
.site.mobile .footer-brand { grid-column: 1/-1; }
.site.mobile .footer-bot { flex-direction: column; gap: 10px; text-align: center; }

/* ───────── utility ───────── */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Scroll shadow inside artboards */
.site::-webkit-scrollbar { width: 8px; }
.site::-webkit-scrollbar-track { background: var(--bg); }
.site::-webkit-scrollbar-thumb { background: var(--accent-soft); border-radius: 4px; }


/* ───────── Category filter + subscriptions ───────── */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -40px 0 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.cat-chip {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--fg-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cat-chip:hover { color: var(--fg); border-color: var(--fg-soft); }
.cat-chip.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* category label in service card (was "01", now "Massages ciblés") */
.service-card .num {
  font-size: 10px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.abo-block {
  margin-top: 80px;
  padding: 48px 0 0;
  border-top: 1px solid var(--hairline);
}
.abo-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.abo-head .eyebrow {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--fg);
  letter-spacing: 0.04em;
  text-transform: none;
}
.abo-head .abo-tagline {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.abo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.abo-card {
  background: var(--bg-alt);
  padding: 28px 28px 26px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.abo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
}
.abo-name {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--fg);
}
.abo-dur {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 8px;
}
.abo-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  margin-top: auto;
}
.abo-price strong {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 30px;
  color: var(--accent);
}
.abo-price span {
  font-size: 12px;
  color: var(--fg-soft);
  text-decoration: line-through;
}
.abo-save {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-style: italic;
  font-family: var(--ff-display);
}

/* ───────── Tarifs: category row ───────── */
.tarif-cat-row {
  display: grid;
  grid-template-columns: 40px auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 36px 0 14px;
  border-bottom: 1px solid var(--accent);
}
.tarif-cat-row > span:nth-child(1) {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.tarif-cat-row > span:nth-child(2) {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.tarif-cat-row .rule {
  height: 1px;
  background: linear-gradient(to right, var(--accent) 0%, transparent 100%);
  opacity: 0.4;
}

/* ───────── Mobile adjustments for new bits ───────── */
.site.mobile .services-grid { grid-template-columns: 1fr; }
.site.mobile .abo-grid { grid-template-columns: 1fr; }
.site.mobile .cat-filter { margin: -20px 0 32px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 14px; }
.site.mobile .cat-chip { flex: 0 0 auto; font-size: 11px; padding: 8px 14px; }
.site.mobile .tarif-cat-row { grid-template-columns: 32px 1fr; padding: 24px 0 10px; }
.site.mobile .tarif-cat-row > span:nth-child(2) { font-size: 20px; }
.site.mobile .tarif-cat-row .rule { display: none; }

/* ═══════════════════════════════════════════════════════════
   ADDITIONS v2 — suite au brief client (mai 2026)
   ═══════════════════════════════════════════════════════════ */

/* ───────── Theme: Lumière (beige chaud — v3 client) ───────── */
/* ───────── Service badge "Hors Treatwell" ───────── */
.service-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 8px;
  align-self: flex-start;
  font-family: var(--ff-body);
  font-weight: 500;
}

/* ───────── Modal abonnement ───────── */
.abo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 31, 24, 0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  backdrop-filter: blur(6px);
}
.abo-modal-box {
  background: var(--cream);
  color: var(--ink);
  width: 520px;
  max-width: calc(100% - 48px);
  border-radius: 8px;
  padding: 40px 44px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.45);
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}
.abo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(42,31,24,0.12);
}
.abo-modal-price {
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--terracotta);
}
.abo-modal-close {
  font-size: 26px;
  line-height: 1;
  color: var(--ink-soft);
  padding: 2px 8px;
  border-radius: 4px;
  transition: all 0.15s;
  flex-shrink: 0;
  margin-left: 16px;
}
.abo-modal-close:hover { background: rgba(42,31,24,0.08); color: var(--ink); }
.abo-modal-form { display: flex; flex-direction: column; gap: 14px; }
.abo-modal-note {
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 16px;
  font-family: var(--ff-display);
  font-style: italic;
  line-height: 1.5;
}
.abo-modal-confirm {
  text-align: center;
  padding: 24px 10px;
}
.abo-modal-confirm .confirm-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--caramel);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.abo-modal-confirm p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto 24px;
}

/* ───────── Bouton "Acheter l'abonnement" ───────── */
.abo-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  padding: 11px 20px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: var(--ff-body);
  margin-top: 16px;
  width: 100%;
}
.abo-buy-btn:hover { background: var(--accent); color: var(--bg); }
.abo-buy-tarif {
  font-size: 10px;
  padding: 8px 14px;
  margin-top: 0;
  width: auto;
  border-color: var(--hairline);
  color: var(--fg);
}
.abo-buy-tarif:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ───────── Parking note ───────── */
.parking-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 4px;
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.5;
  border: 1px dashed var(--hairline);
}
.parking-icon { font-size: 16px; flex-shrink: 0; }

/* ───────── Story media placeholder label ───────── */
.photo-placeholder-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(42, 31, 24, 0.55);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  white-space: nowrap;
  font-family: var(--ff-body);
}

/* ───────── Blog section ───────── */
.blog {
  padding: 140px 0;
  background: var(--bg-alt);
  position: relative;
}
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
}
.blog-head h2 {
  font-size: clamp(44px, 5vw, 68px);
  max-width: 520px;
}
.blog-head-note {
  font-size: 13px;
  color: var(--fg-soft);
  font-family: var(--ff-display);
  font-style: italic;
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(42,31,24,0.15); }
.blog-card-img {
  height: 190px;
  position: relative;
  overflow: hidden;
}
.blog-card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-soft);
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-deep) 100%);
  letter-spacing: 0.04em;
}
.blog-card-body {
  padding: 26px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--ff-body);
}
.blog-card-title {
  font-family: var(--ff-display);
  font-size: 21px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 12px;
}
.blog-card-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-read {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-cta { text-align: center; margin-top: 48px; }

/* ───────── Mobile — blog + new additions ───────── */
.site.mobile .blog { padding: 72px 0; }
.site.mobile .blog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
.site.mobile .blog-head-note { text-align: left; max-width: 100%; }
.site.mobile .blog-grid { grid-template-columns: 1fr; }
.site.mobile .abo-modal-box { padding: 28px 20px; }
.site.mobile .parking-note { font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════════════════
   V3 — Retour client mai 2026
   Sticky topbar · hero refondu · soins aérés · modal au top · CI en croix
   Encadrés abo camel · histoire portrait · tarifs épurés · footer refondu
   ═══════════════════════════════════════════════════════════════════════════ */

/* ───── Sticky topbar (info + CTA toujours visibles) — blanc sur camel ───── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--caramel);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
/* En mode mobile (cadre iPhone) la topbar reste dans le téléphone */
.site.mobile .topbar {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar-info-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.topbar-info-link:hover { color: rgba(255, 255, 255, 0.8); }
.topbar-info-link span { color: #fff; font-size: 13px; }
.topbar-cta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 9px 20px;
  background: #fff;
  color: var(--caramel);
  border: 1px solid #fff;
  border-radius: 999px;
  transition: all 0.2s;
  white-space: nowrap;
}
.topbar-cta:hover { background: transparent; color: #fff; border-color: #fff; transform: translateY(-1px); }

/* In mobile shell: ensure topbar/nav don't collide with the iPhone island */
.site.mobile .topbar-inner { padding: 10px 16px; gap: 12px; }
.site.mobile .topbar-info { gap: 12px; }
.site.mobile .topbar-info-link { font-size: 10px; }
.site.mobile .topbar-cta { font-size: 9px; padding: 7px 12px; letter-spacing: 0.12em; }

/* Nav devient relative (plus absolute) car topbar prend le top */
.nav { position: relative !important; padding: 24px 64px !important; }
.site.mobile .nav { padding: 18px 16px !important; }

/* ───── Hero V3 ───── */
.hero--v3 {
  min-height: 660px;
  padding: 64px 64px 80px;
  grid-template-areas: "text visual";
  grid-template-rows: auto;
  column-gap: 60px;
  align-items: center;
}
.hero-title--v3 {
  font-size: clamp(56px, 7vw, 104px);
  line-height: 1;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title--v3 .line-accent {
  font-style: italic;
  color: var(--caramel);
}
.hero-title--v3 .line-ink {
  color: #2a1f18;
}
.btn-ghost--camel {
  border: 1px solid var(--caramel) !important;
  color: var(--caramel) !important;
}
.btn-ghost--camel:hover {
  background: var(--caramel) !important;
  color: #fff !important;
}

.hero-visual--v3 {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding-left: 80px;
}
.hero-photo-v3 {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: 0 40px 80px -30px rgba(42, 31, 24, 0.45);
  position: relative;
  z-index: 1;
}
/* Logo mandala doré (sans texte) — coupé en 2 par le bord gauche de la photo */
.hero-logo-mandala {
  position: absolute;
  top: 50%;
  left: 80px; /* = bord gauche de la photo → mandala coupé en 2 */
  width: 400px;
  height: 442px; /* ratio 651:720 du logo-mandala.png */
  transform: translate(-50%, -50%);
  background-color: #c6a769;
  -webkit-mask: url(../assets/logo-mandala.png) center / contain no-repeat;
          mask: url(../assets/logo-mandala.png) center / contain no-repeat;
  pointer-events: none;
  z-index: 3;
  opacity: 0.94;
  filter: drop-shadow(0 4px 18px rgba(42, 31, 24, 0.18));
}

.site.mobile .hero--v3 {
  grid-template-columns: 1fr !important;
  grid-template-areas: "text" "visual" !important;
  padding: 32px 20px 48px !important;
  row-gap: 32px !important;
}
.site.mobile .hero-visual--v3 { min-height: auto; padding-left: 32px; }
.site.mobile .hero-logo-mandala { width: 200px; height: 221px; left: 32px; }
.mark--nav { width: 56px !important; height: 56px !important; }
.site.mobile .hero-title--v3 { font-size: 52px; }

/* ───── Bande camel (remplace le ticker défilant) ───── */
.camel-band {
  height: 8px;
  background: var(--caramel);
  width: 100%;
}

/* ───── Services V3 (mise en page aérée + bouton plein) ───── */
.service-card--v3 {
  padding: 44px 32px 36px !important;
  min-height: 380px;
}
.service-card-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.service-card-glyph {
  width: 56px;
  height: 56px;
  margin: 0 0 24px;
  font-size: 44px;
  line-height: 1;
  color: var(--caramel);
  display: flex;
  align-items: center;
}
.service-card-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.15;
  color: var(--fg);
}
.service-card--v3 .service-subtitle {
  margin: 0 0 16px;
}
.service-card-desc {
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: auto;
}

.btn-savoir-plus--filled {
  background: var(--caramel) !important;
  border: 1px solid var(--caramel) !important;
  color: #fff !important;
}
.btn-savoir-plus--filled:hover {
  background: #fff !important;
  color: var(--caramel) !important;
  border-color: var(--caramel) !important;
}

/* ───── Service detail modal — centré, sans scroll, CTA visible direct ───── */
.service-detail-box--compact {
  max-width: 640px !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 36px 40px !important;
}
.site.mobile .service-detail-box--compact {
  padding: 28px 22px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
}
.service-detail-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  margin: 0 0 24px;
  background: var(--beige);
  border-radius: 10px;
  flex-wrap: wrap;
}
.service-detail-price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.service-detail-price-line .price {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--ink);
  line-height: 1;
}
.service-detail-price-line .dur {
  font-size: 13px;
  color: var(--fg-soft);
  letter-spacing: 0.06em;
}

.service-detail-header {
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 20px;
}
.service-detail-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.service-detail-glyph {
  font-size: 40px;
  line-height: 1;
  color: var(--caramel);
  margin-bottom: 14px;
}
.service-detail-title {
  font-size: 30px;
  margin: 0 0 4px;
  line-height: 1.15;
}
.abo-modal-close--abs {
  position: absolute;
  top: 0;
  right: 0;
}

/* CI en puces croix */
.service-detail-list--ci li::before {
  content: '✕' !important;
  color: var(--terracotta) !important;
  font-weight: 700;
  font-size: 11px;
}
.service-detail-list--bien li::before {
  content: '✓';
  color: var(--caramel);
  font-weight: 700;
}

/* ───── Encadré abonnements fond camel pleine largeur ───── */
.abo-block--camel {
  background: var(--caramel) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 80px max(64px, calc(50vw - 600px)) !important;
  margin: 96px calc(50% - 50vw) 0 !important;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}
.site.mobile .abo-block--camel {
  padding: 48px 24px !important;
  margin: 56px 0 0 !important;
  width: auto;
}
.abo-block--camel .abo-head {
  border-bottom: 1px solid rgba(255,255,255,0.25) !important;
}
.abo-block--camel .eyebrow--cream {
  color: #fff !important;
  opacity: 0.95;
}
.abo-block--camel .abo-tagline {
  color: rgba(255,255,255,0.85) !important;
}
.abo-card--camel {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: #fff !important;
}
.abo-card--camel .abo-name { color: #fff !important; }
.abo-card--camel .abo-dur { color: rgba(255,255,255,0.78) !important; }
.abo-card--camel .abo-price strong { color: #fff !important; }
.abo-card--camel .abo-price span { color: rgba(255,255,255,0.65) !important; text-decoration: line-through; }
.abo-card--camel .abo-save { color: rgba(255,255,255,0.85) !important; font-style: italic; }
.abo-buy-btn--white {
  background: #fff !important;
  color: var(--caramel) !important;
  border: 1px solid #fff !important;
  font-weight: 700 !important;
  transition: all 0.2s !important;
}
.abo-buy-btn--white:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}

/* ───── Histoire V3 (portrait, sans timeline ni citation) ───── */
.story--v3 .story-grid {
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-media-wrap {
  position: relative;
}
.story--portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(42, 31, 24, 0.4);
}
.story--v3 .story-text { padding-right: 0; }
.story--v3 .story-text p { margin-bottom: 22px; }
.story--v3 .story-text .first {
  font-family: var(--ff-display);
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 28px;
}
.site.mobile .story--v3 .story-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

/* ───── Tarifs — bouton rempli ───── */
.book-link--filled {
  background: var(--caramel) !important;
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  border: 1px solid var(--caramel) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 10px !important;
  transition: all 0.2s !important;
}
.book-link--filled:hover {
  background: #fff !important;
  color: var(--caramel) !important;
  transform: translateY(-1px);
}

/* ───── Témoignages V3 — sans header ─────── */
.testimonials--v3 .testimonials-head { display: none; }
.testimonials--v3 .testimonials-grid {
  margin-top: 0;
}
.testimonials--v3 .t-card .stars {
  display: block;
  margin-bottom: 16px;
  color: var(--caramel);
}
.testimonials--v3 .t-card .quote-mark { display: none; }

/* ───── Coordonnées cliquables (Réservation) ─────── */
.info-list--v3 .info-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(166, 90, 58, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.info-list--v3 .info-link:hover {
  color: var(--terracotta-d);
  text-decoration-color: var(--terracotta-d);
}

/* ───── Blog V3 — sans sous-titre ─────── */
.blog-head--v3 { margin-bottom: 48px; }
.blog-head--v3 .blog-head-note { display: none; }

/* ───── Footer V3 — logo grand, réseaux ─────── */
.footer--v3 { padding: 80px 0 32px; }
.footer-grid--v3 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
}
.footer-brand--v3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer-logo {
  width: 180px;
  height: 180px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.footer-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 240px;
  object-fit: contain;
}
.footer-wordmark {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0.2em;
  color: var(--fg);
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--fg-soft);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-socials li { margin: 0 !important; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--fg-soft);
}
.footer-socials a:hover { color: var(--accent); }
.footer-socials svg {
  width: 18px;
  height: 18px;
  color: var(--caramel);
  flex-shrink: 0;
}
.footer-socials a:hover svg { color: var(--accent); }

/* ───── Newsletter footer ───── */
.footer-col--newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-newsletter-title {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.footer-newsletter-desc {
  font-size: 12px;
  color: var(--fg-soft);
  line-height: 1.5;
  margin: 0;
}
.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.footer-newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.footer-newsletter input:focus { border-color: var(--caramel); }
.footer-newsletter button {
  padding: 12px 18px;
  background: var(--caramel);
  color: #fff;
  border: 1px solid var(--caramel);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.footer-newsletter button:hover { background: #fff; color: var(--caramel); }
.footer-newsletter-thanks {
  font-size: 13px;
  color: var(--caramel);
  font-style: italic;
  padding: 12px 0;
}

.site.mobile .footer-grid--v3 {
  grid-template-columns: 1fr;
  gap: 32px;
}
.site.mobile .footer-logo { width: 100px; height: 100px; }
.site.mobile .footer-logo-img { max-width: 120px; max-height: 160px; }

/* ═══════════════════════════════════════════════════════════════════════════
   Agenda picker (modal abonnement)
   ═══════════════════════════════════════════════════════════════════════════ */
.abo-modal-box--xl { max-width: 880px !important; }
.abo-modal-form--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.abo-form-col { min-width: 0; }
.abo-form-title {
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}
.abo-form-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding-top: 8px;
}
.abo-form-footer .btn-booking { width: 100%; }
.site.mobile .abo-modal-form--two-col { grid-template-columns: 1fr; gap: 18px; }

/* ───── Agenda calendar ───── */
.agenda-picker {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 16px;
}
.agenda-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.agenda-title {
  font-family: var(--ff-display);
  font-size: 15px;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.agenda-nav {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  transition: all 0.18s;
}
.agenda-nav:not(:disabled):hover { background: var(--caramel); color: #fff; border-color: var(--caramel); }
.agenda-nav:disabled { opacity: 0.3; cursor: not-allowed; }

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.agenda-grid--head { margin-bottom: 6px; }
.agenda-day-head {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-soft);
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 0;
}
.agenda-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  background: transparent;
  color: var(--fg-soft);
  border: 1px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.agenda-cell--empty {
  visibility: hidden;
  pointer-events: none;
}
.agenda-cell.is-blocked {
  color: rgba(42, 31, 24, 0.25);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.agenda-cell.is-available {
  color: var(--fg);
  background: var(--bg);
  border-color: var(--hairline);
}
.agenda-cell.is-available:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: #fff;
}
.agenda-cell.is-selected {
  background: var(--caramel) !important;
  border-color: var(--caramel) !important;
  color: #fff !important;
  font-weight: 700;
}

.agenda-slots { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.agenda-slots-label {
  font-size: 11px;
  color: var(--fg-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}
.agenda-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.agenda-no-slot {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--fg-soft);
  font-style: italic;
  padding: 8px 0;
}
.agenda-slots-empty {
  font-size: 13px;
  color: var(--fg-soft);
  font-style: italic;
  line-height: 1.5;
  padding: 6px 0;
}
/* CTA des modales : restent camel au survol (demande Thomas 22 mai) */
.service-detail-cta-block .btn-primary:hover,
.abo-form-footer .btn-booking:hover:not(:disabled) {
  background: #8f4d31;
  color: #fff;
  border-color: #8f4d31;
}
.agenda-slot {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.agenda-slot:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: #fff;
}
.agenda-slot.is-selected {
  background: var(--caramel) !important;
  border-color: var(--caramel) !important;
  color: #fff !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   Blog article page (hash-routed)
   ═══════════════════════════════════════════════════════════════════════════ */
.container--narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}
.blog-article { padding: 64px 0 120px; }
.blog-article-back { margin-bottom: 32px; }
.blog-article-back-link {
  background: transparent;
  border: none;
  color: var(--fg-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s;
}
.blog-article-back-link:hover { color: var(--caramel); }

.blog-article-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 48px;
}
.blog-article-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-article-tag {
  background: var(--caramel);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 10px;
}
.blog-article-date { color: var(--fg-soft); }
.blog-article-title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--fg);
}
.blog-article-intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-soft);
  font-style: italic;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: flex-start;
}
.blog-article-toc {
  position: sticky;
  top: 80px;
  padding: 22px;
  background: var(--beige);
  border-radius: 6px;
  font-size: 13px;
}
.blog-article-toc-title {
  font-family: var(--ff-display);
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.blog-article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-article-toc a {
  color: var(--fg-soft);
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.blog-article-toc a:hover { color: var(--caramel); }

.blog-article-section { margin-bottom: 36px; }
.blog-article-section:target { scroll-margin-top: 80px; }
.blog-article-h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 16px;
}
.blog-article-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg);
  margin-bottom: 14px;
}

.blog-article-share {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 48px 0;
}
.blog-article-share-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-soft);
  font-weight: 700;
}
.blog-article-share-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel);
  text-decoration: none;
  border: 1px solid var(--caramel);
  padding: 6px 14px;
  border-radius: 999px;
  transition: all 0.2s;
}
.blog-article-share-link:hover {
  background: var(--caramel);
  color: #fff;
}

.blog-article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: var(--beige);
  border-radius: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.blog-article-cta-text { flex: 1; min-width: 280px; }
.blog-article-cta-text .eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.blog-article-cta-text h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--fg);
}
.blog-article-cta-text p {
  color: var(--fg-soft);
  font-size: 14px;
}

.blog-article-map { margin-top: 64px; }
.blog-article-map-title {
  font-family: var(--ff-display);
  font-size: 24px;
  margin-bottom: 18px;
  color: var(--fg);
}
.blog-article-map-frame {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.blog-article-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.blog-article-map-addr {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-soft);
}

.blog-article-related { margin-top: 80px; }
.blog-article-related-title {
  font-family: var(--ff-display);
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--fg);
}
.blog-article-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.blog-article-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.blog-article-related-card:hover {
  border-color: var(--caramel);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(42, 31, 24, 0.15);
}
.blog-article-related-name {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--fg);
  line-height: 1.25;
}
.blog-article-related-card p {
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.6;
}

/* Blog card link wrapper */
.blog-card--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.site.mobile .blog-article-layout {
  grid-template-columns: 1fr;
  gap: 32px;
}
.site.mobile .blog-article-toc {
  position: static;
}
.site.mobile .blog-article-related-grid {
  grid-template-columns: 1fr;
}
.site.mobile .blog-article-cta {
  padding: 28px 24px;
}
.site.mobile .container--narrow {
  padding: 0 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive mobile (real devices) — mirrors .site.mobile preview rules
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body {
  font-size: 15px;
}
  .container, .container-sm {
  padding: 0 24px;
}
  .section { padding: 72px 0; }
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-brand .wordmark { font-size: 16px; letter-spacing: 0.14em; }
  .nav-brand .sub { font-size: 8px; }
  .nav-cta { font-size: 9px; padding: 8px 14px; }
  .nav-brand .mark { width: 32px; height: 32px; }
  .hero {
  grid-template-columns: 1fr;
  padding: 100px 24px 64px;
  min-height: 680px;
  gap: 40px;
}
  .hero::before { display: none; }
  .hero-title { font-size: 58px; }
  .hero-visual { height: 340px; }
  .hero-photo-tiny { width: 70px; height: 70px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-ctas { flex-wrap: wrap; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .hero-caption { display: none; }
  .hero-ornament { display: none; }
  .services-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 32px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-quote { position: static; max-width: none; margin-top: 20px; }
  .story-media::before { inset: -6px; }
  .story-timeline { flex-direction: column; gap: 16px; }
  .tarif-row {
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  padding: 20px 0;
}
  .tarif-row .dur { display: none; }
  .tarif-row .book-link { display: none; }
  .tarif-row .name { font-size: 18px; }
  .tarif-row .desc { font-size: 12px; }
  .tarif-row .price { font-size: 22px; }
  .testimonials-head { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; gap: 36px; }
  .booking-form { padding: 28px 22px 26px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bot { flex-direction: column; gap: 10px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .abo-grid { grid-template-columns: 1fr; }
  .cat-filter { margin: -20px 0 32px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 14px; }
  .cat-chip { flex: 0 0 auto; font-size: 11px; padding: 8px 14px; }
  .tarif-cat-row { grid-template-columns: 32px 1fr; padding: 24px 0 10px; }
  .tarif-cat-row > span:nth-child(2) { font-size: 20px; }
  .tarif-cat-row .rule { display: none; }
  .blog { padding: 72px 0; }
  .blog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-head-note { text-align: left; max-width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .abo-modal-box { padding: 28px 20px; }
  .parking-note { font-size: 12px; }
  .topbar {
  position: sticky;
  top: 0;
  left: auto;
  right: auto;
}
  .topbar-inner { padding: 10px 16px; gap: 12px; }
  .topbar-info { gap: 12px; }
  .topbar-info-link { font-size: 10px; }
  .topbar-cta { font-size: 9px; padding: 7px 12px; letter-spacing: 0.12em; }
  .nav { padding: 18px 16px !important; }
  .hero--v3 {
  grid-template-columns: 1fr !important;
  grid-template-areas: "text" "visual" !important;
  padding: 32px 20px 48px !important;
  row-gap: 32px !important;
}
  .hero-visual--v3 { min-height: auto; padding-left: 32px; }
  .hero-logo-mandala { width: 200px; height: 221px; left: 32px; }
  .hero-title--v3 { font-size: 52px; }
  .service-detail-box--compact {
  padding: 28px 22px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
}
  .abo-block--camel {
  padding: 48px 24px !important;
  margin: 56px 0 0 !important;
  width: auto;
}
  .story--v3 .story-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}
  .footer-grid--v3 {
  grid-template-columns: 1fr;
  gap: 32px;
}
  .footer-logo { width: 100px; height: 100px; }
  .footer-logo-img { max-width: 120px; max-height: 160px; }
  .abo-modal-form--two-col { grid-template-columns: 1fr; gap: 18px; }
  .blog-article-layout {
  grid-template-columns: 1fr;
  gap: 32px;
}
  .blog-article-toc {
  position: static;
}
  .blog-article-related-grid {
  grid-template-columns: 1fr;
}
  .blog-article-cta {
  padding: 28px 24px;
}
  .container--narrow {
  padding: 0 18px;
}
}

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive mobile — overrides spécifiques (vrai device, pas preview iPhone)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Topbar reste fixed sur vrai mobile (le sticky vient du preview iPhone) */
  .topbar { position: fixed; top: 0; left: 0; right: 0; }
  body.mode-desktop { padding-top: 56px; }

  /* Container global */
  .container { padding: 0 20px; }
  .container-sm { padding: 0 20px; }

  /* Topbar layout — compact, une seule ligne, infos secondaires masquées */
  .topbar-inner {
    padding: 8px 16px;
    gap: 10px;
    flex-wrap: nowrap;
    min-height: 44px;
  }
  .topbar-info { gap: 14px; flex: 1 1 auto; min-width: 0; }
  .topbar-info-link {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar-cta {
    font-size: 10px;
    padding: 7px 14px;
    letter-spacing: 0.1em;
    flex-shrink: 0;
  }

  /* Nav */
  .nav { padding: 16px 20px !important; }
  .nav-links { display: none; }

  /* Hero */
  .hero--v3 {
    grid-template-columns: 1fr !important;
    grid-template-areas: "text" "visual" !important;
    padding: 32px 20px 56px !important;
    row-gap: 36px !important;
    min-height: auto !important;
  }
  .hero-title--v3 { font-size: clamp(40px, 11vw, 64px) !important; }
  .hero-visual--v3 {
    min-height: auto;
    padding-left: 60px; /* espace pour la moitié gauche du mandala */
    position: relative;
  }
  .hero-photo-v3 { width: 100%; max-width: none; margin: 0; }
  .hero-logo-mandala {
    width: 220px;
    height: 243px;
    left: 60px; /* = bord gauche de la photo → mandala coupé en 2 */
  }
  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  /* Section spacing */
  .section { padding: 72px 0 !important; }

  /* Services */
  .services-intro h2 { font-size: clamp(32px, 8vw, 44px); }
  .services-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .service-card { padding: 28px 22px; }
  .cat-filter { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 14px; gap: 8px; }
  .cat-chip { flex: 0 0 auto; font-size: 11px; padding: 8px 14px; }

  /* Abonnements pleine largeur — repasser en bloc normal */
  .abo-block--camel {
    margin: 56px 0 0 !important;
    width: auto !important;
    padding: 48px 24px !important;
  }
  .abo-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* Histoire */
  .story--v3 .story-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .story--v3 h2.display { font-size: clamp(32px, 8vw, 44px); }

  /* Témoignages */
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 16px; }

  /* Booking */
  .booking-wrap { grid-template-columns: 1fr !important; gap: 36px; }
  .booking-side h2 { font-size: clamp(32px, 8vw, 44px); }
  .booking-form { padding: 28px 22px; }

  /* Modales : prennent ~94vw, scroll vertical si besoin */
  .abo-modal-box,
  .service-detail-box--compact {
    width: 94vw !important;
    max-width: 94vw !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding: 28px 22px !important;
  }
  .abo-modal-box--xl { max-width: 94vw !important; }
  .abo-modal-form--two-col {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .service-detail-sections { grid-template-columns: 1fr !important; }
  .service-detail-cta-block {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .service-detail-cta-block .btn { width: 100%; justify-content: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .blog-head--v3 h2 { font-size: clamp(32px, 8vw, 44px); }

  /* Blog article page */
  .blog-article { padding: 32px 0 80px; }
  .blog-article-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .blog-article-toc { position: static; padding: 18px; }
  .blog-article-title { font-size: clamp(28px, 7vw, 40px) !important; }
  .blog-article-intro { font-size: 16px; }
  .blog-article-h2 { font-size: 22px; }
  .blog-article-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    text-align: left;
  }
  .blog-article-cta .btn { width: 100%; justify-content: center; }
  .blog-article-related-grid { grid-template-columns: 1fr !important; }
  .blog-article-map-frame { height: 260px; }
  .blog-article-share { gap: 8px; }
  .blog-article-share-link { padding: 5px 12px; font-size: 11px; }

  /* Footer */
  .footer--v3 { padding: 56px 0 32px; }
  .footer-grid--v3 {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .footer-newsletter { flex-direction: column; gap: 10px; }
  .footer-newsletter button { width: 100%; }
  .footer-bot {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 11px;
  }
  .footer-logo-img { max-width: 140px; }
}

/* Très petits écrans (< 480px) — masquer l'adresse, ne garder que le tél */
@media (max-width: 480px) {
  .topbar-info-link:nth-child(2) { display: none; } /* cache l'adresse */
  .topbar-info { gap: 0; }
  .topbar-info-link { font-size: 11px; }
  .topbar-cta { font-size: 9px; padding: 6px 12px; }
  .nav { padding: 14px 16px !important; }
  .nav-cta { font-size: 9px; padding: 8px 14px; }
  .hero-logo-mandala { width: 180px; height: 199px; }
  .container { padding: 0 16px; }
}

/* Vraiment minuscule (< 360px) — masquer aussi le tél, ne garder que le CTA */
@media (max-width: 360px) {
  .topbar-info { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .hero-visual--v3 { padding-left: 40px; }
  .hero-logo-mandala { left: 40px; width: 180px; height: 199px; }
}
