/* =========================================================
   Nathalie Chevassu — Naturopathe
   Global stylesheet
   ========================================================= */

:root {
  --color-terracotta: #B85042;
  --color-terracotta-dark: #A04538;
  --color-cream: #E7E8D1;
  --color-cream-soft: #EFEFDE;
  --color-forest: #2C4A3E;
  --color-forest-soft: #3A5C4F;
  --color-bg: #FAF7F2;
  --color-bg-warm: #F4EFE6;
  --color-text: #2D2A26;
  --color-text-muted: #6B6156;
  --color-border: #E4DED3;

  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 2px rgba(45, 42, 38, 0.05);
  --shadow-md: 0 4px 16px rgba(45, 42, 38, 0.08);
  --shadow-lg: 0 10px 32px rgba(45, 42, 38, 0.10);

  --container: 1200px;
  --container-narrow: 960px;

  --section-y: clamp(72px, 9vw, 128px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-terracotta); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--color-terracotta-dark); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(20px, 2.1vw, 26px);
}
p { margin: 0 0 1em; text-wrap: pretty; }
.lead {
  font-size: clamp(18px, 1.5vw, 20px);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin: 0 0 18px;
  display: inline-block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
section { padding: var(--section-y) 0; }
.section-cream { background: var(--color-cream); }
.section-cream-soft { background: var(--color-cream-soft); }
.section-forest { background: var(--color-forest); color: var(--color-bg); }
.section-forest h1, .section-forest h2, .section-forest h3 { color: var(--color-bg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: all 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-terracotta);
  color: #FAF7F2;
  border-color: var(--color-terracotta);
}
.btn-primary:hover {
  background: var(--color-terracotta-dark);
  border-color: var(--color-terracotta-dark);
  color: #FAF7F2;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}
.btn-secondary:hover {
  background: var(--color-terracotta);
  color: #FAF7F2;
}
.btn-ghost-dark {
  background: transparent;
  color: var(--color-bg);
  border-color: rgba(250, 247, 242, 0.4);
}
.btn-ghost-dark:hover {
  background: var(--color-bg);
  color: var(--color-forest);
  border-color: var(--color-bg);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--color-terracotta);
  border-bottom: 1px solid rgba(184, 80, 66, 0.3);
  padding-bottom: 2px;
  transition: all 200ms ease;
}
.link-arrow:hover { border-bottom-color: var(--color-terracotta); gap: 10px; }
.link-arrow.on-dark { color: var(--color-cream); border-bottom-color: rgba(231, 232, 209, 0.4); }
.link-arrow.on-dark:hover { color: #fff; border-bottom-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Utility bar — top strip with contact */
.utility-bar {
  background: var(--color-forest);
  color: var(--color-cream);
  font-size: 13px;
}
.utility-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  min-width: 0;
}
@media (max-width: 1100px) {
  .utility-right > span:nth-child(3),
  .utility-right > .utility-sep { display: none; }
}
@media (max-width: 900px) {
  .utility-right { display: none; }
}
.utility-bar a {
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms ease;
}
.utility-bar a:hover { color: #fff; }
.utility-icon { color: var(--color-terracotta); font-size: 13px; }
.utility-sep {
  width: 1px;
  height: 12px;
  background: rgba(231, 232, 209, 0.25);
}
@media (max-width: 720px) {
  .utility-bar { display: none; }
}

/* Main header row */
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(20px, 4vw, 40px);
  max-width: 1320px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-right: auto;
}
.brand img { height: 50px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.brand-role {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav > a,
.nav-item-dropdown > a,
.nav-item-dropdown > .nav-parent {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
  padding: 10px 10px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: color 180ms ease;
  position: relative;
  cursor: pointer;
}
.nav > a:hover,
.nav-item-dropdown > a:hover,
.nav-item-dropdown > .nav-parent:hover { color: var(--color-terracotta); }
.nav > a.active,
.nav-item-dropdown > a.active,
.nav-item-dropdown > .nav-parent.active { color: var(--color-terracotta); font-weight: 500; }
.nav > a.active::after,
.nav-item-dropdown > a.active::after,
.nav-item-dropdown > .nav-parent.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--color-terracotta);
  border-radius: 2px;
}

.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a .caret,
.nav-item-dropdown > .nav-parent .caret {
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  margin-left: 8px;
  transition: transform 200ms ease;
}
.nav-item-dropdown:hover > a .caret,
.nav-item-dropdown:hover > .nav-parent .caret { transform: rotate(225deg) translate(-1px, -1px); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 100;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--color-text);
  border-radius: 6px;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--color-cream); color: var(--color-terracotta); }

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
}
.nav-mobile-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1440px) {
  .nav { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--color-text);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: 24px;
  padding: 12px 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu nav a.sub { font-family: var(--font-sans); font-size: 16px; padding-left: 16px; color: var(--color-text-muted); }
.mobile-menu nav .mobile-section {
  font-family: var(--font-serif);
  font-size: 24px;
  padding: 12px 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu .btn { margin-top: 24px; width: 100%; }



/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-forest);
  margin-bottom: 24px;
}
.hero-kicker::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--color-forest);
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-terracotta);
}
.hero .lead { margin-bottom: 36px; max-width: 560px; }
.hero-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text-muted);
}
.hero-meta strong { color: var(--color-text); font-weight: 600; display: block; font-size: 15px; margin-bottom: 2px; }

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(45, 42, 38, 0.08);
  pointer-events: none;
}
.portrait-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-bg);
  color: var(--color-text);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 13px;
  line-height: 1.4;
}
.portrait-tag strong { display: block; font-weight: 600; font-size: 14px; }
.portrait-tag em { color: var(--color-text-muted); font-style: normal; }

.hero-deco {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(184, 80, 66, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 480px; margin: 0 auto; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.stat {
  text-align: left;
  padding: 0 4px;
  position: relative;
}
.stat + .stat { border-left: 1px solid rgba(45, 42, 38, 0.12); padding-left: clamp(24px, 4vw, 48px); }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: var(--color-terracotta);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.stat-label { color: var(--color-text); font-size: 16px; max-width: 260px; }
.stat-label strong { font-weight: 600; }

@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; padding-left: 4px; border-top: 1px solid rgba(45, 42, 38, 0.12); padding-top: 24px; }
}

/* ---------- Content blocks ---------- */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split-2.wide-left { grid-template-columns: 1.2fr 1fr; }
.split-2.wide-right { grid-template-columns: 1fr 1.2fr; }
@media (max-width: 820px) { .split-2, .split-2.wide-left, .split-2.wide-right { grid-template-columns: 1fr; } }

.section-heading { max-width: 720px; margin-bottom: 56px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { color: var(--color-text-muted); font-size: 18px; }

/* ---------- Approach text block ---------- */
.prose p { font-size: 17px; max-width: 62ch; }
.prose p + p { margin-top: 0.9em; }
.prose strong { color: var(--color-text); font-weight: 600; }

/* ---------- Approach visual ---------- */
.approach-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(44, 74, 62, 0.92), rgba(44, 74, 62, 0.78)),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 18px,
      rgba(231, 232, 209, 0.08) 18px,
      rgba(231, 232, 209, 0.08) 19px
    );
  color: var(--color-cream);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.approach-visual::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(231, 232, 209, 0.25);
  border-radius: 50%;
}
.approach-visual::after {
  content: "";
  position: absolute;
  top: 40px; right: 40px;
  width: 100px; height: 100px;
  border: 1px solid rgba(184, 80, 66, 0.5);
  background: rgba(184, 80, 66, 0.12);
  border-radius: 50%;
}
.approach-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}
.approach-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(231, 232, 209, 0.18);
}
.approach-pillar:first-child { border-top: none; padding-top: 0; }
.approach-pillar-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-terracotta);
  min-width: 32px;
}
.approach-pillar-text { font-size: 15px; line-height: 1.5; }
.approach-pillar-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-bg);
}
.approach-caption {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-cream);
  max-width: 380px;
}

/* ---------- Service cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 250ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 80, 66, 0.3);
}
.card-index {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--color-text-muted); font-size: 15.5px; line-height: 1.6; flex-grow: 1; }
.card .link-arrow { margin-top: 20px; align-self: flex-start; }

/* ---------- Topics grid (6 cards) ---------- */
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .topics { grid-template-columns: 1fr; } }

.topic {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 250ms ease;
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.topic::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--color-terracotta);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 250ms ease;
}
.topic:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 80, 66, 0.25);
}
.topic:hover::before { transform: scaleY(1); }
.topic-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--color-terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.topic h3 { font-size: 20px; margin-bottom: 10px; }
.topic p { color: var(--color-text-muted); font-size: 15px; margin: 0; line-height: 1.55; }
.topic-more {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Profile / Parcours ---------- */
.profile-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 440px;
  box-shadow: var(--shadow-md);
}
.profile-portrait img { width: 100%; height: 100%; object-fit: cover; }
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--color-cream);
  color: var(--color-forest);
  border-radius: 99px;
  letter-spacing: 0.02em;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 820px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: rgba(231, 232, 209, 0.06);
  border: 1px solid rgba(231, 232, 209, 0.18);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--color-cream);
  position: relative;
  padding-left: 18px;
}
.testimonial-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--color-terracotta);
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0.9;
}

/* ---------- Booking / Cal.com ---------- */
.cal-placeholder {
  background: var(--color-bg);
  border: 1.5px dashed var(--color-terracotta);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  color: var(--color-text-muted);
  margin: 40px 0;
}
.cal-placeholder-tall { min-height: 600px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.cal-placeholder strong { color: var(--color-terracotta); font-family: var(--font-serif); font-size: 22px; font-weight: 500; display: block; margin-bottom: 8px; }
.cal-placeholder span { font-size: 14px; }

.cal-embed-wrap {
  margin: 40px 0;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 12px 32px -16px rgba(0,0,0,.08);
}
.cal-inline { width: 100%; min-height: 720px; }
.cal-inline-short { min-height: 560px; }
@media (max-width: 720px) {
  .cal-inline { min-height: 640px; }
  .cal-inline-short { min-height: 520px; }
}

.price-card-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 18px;
  background: var(--color-terracotta);
  color: #fff;
  border-radius: var(--radius-md, 8px);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
}
.price-card p { margin-bottom: 24px; }
.price-card > *:last-child { margin-bottom: 0; }
.price-card-cta:hover { background: #9d4438; transform: translateY(-1px); }
.price-card.featured .price-card-cta { background: #fff; color: var(--color-terracotta); }
.price-card.featured .price-card-cta:hover { background: var(--color-cream); }

.price-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 120px;
}
.price-row-amount {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-terracotta);
  font-weight: 500;
}
.price-row-cta {
  font-size: 13.5px;
  color: var(--color-terracotta);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity .15s ease;
}
.price-row-cta:hover { opacity: .7; }
@media (max-width: 540px) {
  .price-row-right { align-items: flex-start; margin-top: 8px; }
}

.contact-inline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  padding: 24px 28px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
}
.contact-inline-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
}
.contact-inline-icon {
  width: 28px;
  color: var(--color-terracotta);
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.4;
}
.contact-inline-note {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 6px;
}

/* ---------- Contact page specific ---------- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .contact-methods { grid-template-columns: 1fr; } }
.contact-method {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  text-align: left;
}
.contact-method-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(184, 80, 66, 0.08);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-method-icon svg { width: 24px; height: 24px; stroke-width: 1.6; }
.contact-method h3 { font-size: 21px; margin-bottom: 10px; }
.contact-method-main {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-text);
  margin: 10px 0 10px;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.contact-method-main a { color: var(--color-text); border-bottom: 1px solid rgba(184, 80, 66, 0.25); }
.contact-method-main a:hover { color: var(--color-terracotta); }
.contact-method p { font-size: 14.5px; color: var(--color-text-muted); margin: 0; }

/* Form */
.contact-form {
  background: var(--color-bg-warm);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  max-width: 780px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .full { grid-column: auto; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
.form-group label .req { color: var(--color-terracotta); }
.form-control {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: all 200ms ease;
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(184, 80, 66, 0.12);
}
textarea.form-control { min-height: 150px; resize: vertical; font-family: var(--font-sans); }
.form-honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--color-terracotta);
  flex-shrink: 0;
}
.form-consent a { color: var(--color-terracotta); text-decoration: underline; }

.form-success {
  background: rgba(44, 74, 62, 0.08);
  border: 1px solid var(--color-forest);
  color: var(--color-forest);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-size: 15px;
  margin-bottom: 24px;
  display: none;
  gap: 12px;
  align-items: center;
}
.form-success.visible {
  display: flex;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3;
  min-height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.cabinet-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cabinet-address {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
}
.info-block {
  padding: 18px 20px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-terracotta);
}
.info-block-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.info-block p { margin: 0; font-size: 15.5px; }
.info-block strong { color: var(--color-text); }

/* Social buttons (Contact section 7) */
.socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  transition: all 200ms ease;
}
.social-btn:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.social-btn svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-forest);
  color: var(--color-cream);
  padding: 80px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
}
.site-footer a { color: var(--color-cream); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.footer-col p { color: rgba(231, 232, 209, 0.8); font-size: 14px; margin: 0 0 16px; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-nav a {
  font-size: 14.5px;
  color: rgba(231, 232, 209, 0.85);
  transition: color 200ms ease;
}
.footer-nav a:hover { color: #fff; }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  font-family: var(--font-sans);
  font-size: 14.5px;
  padding: 11px 14px;
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(231, 232, 209, 0.25);
  color: var(--color-cream);
  border-radius: var(--radius-sm);
}
.newsletter-form input::placeholder { color: rgba(231, 232, 209, 0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background: rgba(250, 247, 242, 0.12);
}
.newsletter-consent {
  font-size: 12.5px;
  color: rgba(231, 232, 209, 0.7);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}
.newsletter-consent input { margin-top: 2px; accent-color: var(--color-terracotta); flex-shrink: 0; }
.newsletter-form .btn {
  background: var(--color-terracotta);
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 14.5px;
  margin-top: 4px;
}
.newsletter-form .btn:hover { background: var(--color-terracotta-dark); }

.footer-contact-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-contact-icon { color: var(--color-terracotta); flex-shrink: 0; width: 18px; font-weight: 600; }

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.social-icon {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 232, 209, 0.25);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  transition: all 200ms ease;
}
.social-icon:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: #fff;
}
.social-icon svg { width: 16px; height: 16px; }

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}
.legal-links a { color: rgba(231, 232, 209, 0.7); }

.footer-bottom {
  border-top: 1px solid rgba(231, 232, 209, 0.15);
  padding: 24px 0 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(231, 232, 209, 0.75);
}
.footer-disclaimer {
  padding-bottom: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(231, 232, 209, 0.55);
  max-width: 780px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.5;
}

/* ---------- Page headers (sub-pages) ---------- */
.page-hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 80px);
  background: var(--color-bg);
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 880px; margin-bottom: 20px; }
.page-hero .lead { max-width: 720px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.text-muted { color: var(--color-text-muted); }
.accent { color: var(--color-terracotta); }
.center { text-align: center; }
hr.rule { border: none; border-top: 1px solid var(--color-border); margin: 48px 0; }

/* ---------- Anchor offset ---------- */
[id] { scroll-margin-top: 24px; }

/* =========================================================
   EXTENSIONS — nouveaux composants
   ========================================================= */

/* Pillars grid (les 4 piliers de la santé) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 48px 0;
}
.pillar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 250ms ease, box-shadow 250ms ease;
  position: relative;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-terracotta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.pillar h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.pillar p {
  font-size: 15.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Tech grid (10 techniques) */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.tech-item {
  background: var(--color-bg-warm);
  border-left: 3px solid var(--color-terracotta);
  padding: 22px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tech-num {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-terracotta);
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
  min-width: 34px;
}
.tech-item h3 {
  font-size: 18px;
  margin: 0 0 6px;
}
.tech-item p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* Cures (4 cures) */
.cures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.cure {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.cure::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-terracotta);
  margin-bottom: 18px;
  border-radius: 2px;
}
.cure h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.cure p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Tools grid (outils / approche 2 colonnes) */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.tool {
  border-left: 3px solid var(--color-terracotta);
  padding: 4px 0 4px 22px;
}
.tool h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.tool p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Signs list (symptômes 2 colonnes) */
.signs-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 28px;
}
.signs-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-text);
}
.signs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-terracotta);
  font-weight: 600;
}
.signs-list.signs-list-grouped { display: block; }
.signs-list-grouped h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin: 24px 0 10px;
}
.signs-list-grouped ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 8px 28px;
}
.signs-list-grouped ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
}
.signs-list-grouped ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-weight: 600;
}

/* Pricing cards */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.price-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.price-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.price-card.featured {
  background: var(--color-cream);
  border-color: var(--color-terracotta);
  position: relative;
}
.price-card.featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--color-terracotta);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.price-duration {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--color-terracotta);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.price-card p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Price list (soins annexes) */
.price-list {
  background: var(--color-bg-warm);
  border-radius: var(--radius-lg);
  padding: 8px 32px;
  margin: 32px 0;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}
.price-row:last-child { border-bottom: none; }
.price-row-left h3 {
  font-size: 17px;
  margin: 0 0 4px;
}
.price-row-left p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.55;
}
.price-row-right {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--color-terracotta);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
  padding-top: 2px;
}

/* FAQ accordion */
.faq-group { margin-bottom: 40px; }
.faq-group-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: color 200ms ease;
}
.faq-question:hover { color: var(--color-terracotta); }
.faq-question::after {
  content: '+';
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--color-terracotta);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 300ms ease;
  line-height: 1;
}
.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}
.faq-item.is-open .faq-answer {
  max-height: 800px;
}
.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 72ch;
}
.faq-answer-inner p { margin: 0 0 0.8em; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* Stages (cours et stages) */
.stage {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 36px;
  margin-bottom: 32px;
}
.stage-header { margin-bottom: 20px; }
.stage-header h3 {
  font-size: 26px;
  margin: 0 0 8px;
}
.stage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.stage-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.stage-meta span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-terracotta);
  border-radius: 50%;
  display: inline-block;
}
.stage-module {
  padding: 18px 20px;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  margin: 14px 0;
}
.stage-module h4 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--color-terracotta);
}
.stage-module p {
  font-size: 14.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}
.stage-program {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.stage-program li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15.5px;
  line-height: 1.55;
}
.stage-program li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-terracotta);
  font-weight: 500;
}
.stage-target {
  margin-top: 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--color-forest);
  background: rgba(44, 74, 62, 0.04);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.stage-target strong { color: var(--color-forest); }

/* Resource cards (PDF) */
.resource-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 32px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.resource-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.resource-card p {
  color: var(--color-text-muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.resource-meta {
  font-size: 13.5px;
  color: var(--color-text-muted);
  font-style: italic;
  letter-spacing: 0.02em;
}
.resource-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
  min-width: 160px;
}
.resource-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-terracotta);
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 700px) {
  .resource-card { grid-template-columns: 1fr; }
  .resource-cta { align-items: flex-start; }
}

/* Callout */
.callout {
  background: var(--color-cream-soft);
  border-left: 4px solid var(--color-terracotta);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.callout h3 {
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--color-text);
}
.callout p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 0.8em;
}
.callout p:last-child { margin-bottom: 0; }
.callout.forest {
  background: rgba(44, 74, 62, 0.06);
  border-left-color: var(--color-forest);
}
.callout.forest h3 { color: var(--color-forest); }

/* Tag cloud (villes) */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.tag {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--color-text-muted);
}
.tag.accent {
  background: var(--color-terracotta);
  color: #fff;
  border-color: var(--color-terracotta);
}

/* Steps (3 étapes numérotées) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
  counter-reset: step;
  padding: 0;
  list-style: none;
}
.step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-terracotta);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.step p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}
.step-duration {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--color-terracotta);
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Timeline (parcours) */
.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 28px;
  list-style: none;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border);
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--color-terracotta);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 1px var(--color-border);
}
.timeline-date {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-terracotta);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.timeline-item h3 {
  font-size: 19px;
  margin: 0 0 6px;
}
.timeline-item p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* Testimonial single (mis en avant) */
.testimonial-single {
  max-width: 760px;
  margin: 48px auto;
  padding: 40px 40px 36px;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  position: relative;
  text-align: left;
}
.testimonial-single::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 90px;
  line-height: 1;
  color: var(--color-terracotta);
  opacity: 0.25;
  font-weight: 400;
}
.testimonial-single blockquote {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 18px;
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.testimonial-single cite {
  font-style: normal;
  font-size: 15px;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
}
.testimonial-single cite strong {
  color: var(--color-terracotta);
  font-weight: 600;
}

/* Final CTA */
.final-cta {
  background: var(--color-forest);
  color: var(--color-bg);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  margin-top: var(--section-y);
}
.final-cta h2 {
  color: var(--color-bg);
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta h2 em {
  color: var(--color-terracotta);
  font-style: italic;
  font-weight: 400;
}
.final-cta p {
  color: rgba(231, 232, 209, 0.85);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta .btn-row {
  justify-content: center;
}
.final-cta-inline {
  background: var(--color-forest);
  color: var(--color-bg);
  padding: 36px 36px;
  border-radius: var(--radius-lg);
  margin: 48px 0;
  text-align: center;
}
.final-cta-inline h3 {
  color: var(--color-bg);
  margin-bottom: 8px;
  font-size: 24px;
}
.final-cta-inline p {
  color: rgba(231, 232, 209, 0.85);
  font-size: 16px;
  margin: 0 0 20px;
}

/* Numbered section markers "01 · Titre" */
.section-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-terracotta);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* H1/H2 em accent (italic terracotta) */
.page-hero h1 em,
main h2 em {
  color: var(--color-terracotta);
  font-style: italic;
  font-weight: 400;
}

/* Prose adjustments for content pages */
.prose h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin-top: 1.8em;
  margin-bottom: 0.5em;
}
.prose h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.4em 0 0.4em;
}
.prose ul, .prose ol {
  padding-left: 24px;
  max-width: 62ch;
}
.prose ul li, .prose ol li {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.65;
}

/* Responsive tweaks */
@media (max-width: 700px) {
  .testimonial-single { padding: 30px 24px 28px; }
  .testimonial-single blockquote { font-size: 18px; }
  .price-row { flex-direction: column; gap: 6px; }
  .stage { padding: 26px 22px; }
}
