/* ============================================
   REBOUTOLOGUE JORDAN TOLEDO
   Premium editorial design system
   ============================================ */

:root {
  /* Palette - terreuse et chaleureuse */
  --cream: #F5EFE4;
  --cream-soft: #EDE5D3;
  --sand: #E2D5BC;
  --forest: #2A3A2E;
  --forest-deep: #1E2A22;
  --terracotta: #B66A4C;
  --terracotta-deep: #94553D;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --ink-muted: #6B6357;
  --line: #D9CFBC;
  --white-warm: #FBF7EE;

  /* Typographie */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Echelle */
  --container: 1280px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
  flex-shrink: 0;
}

.eyebrow.is-center {
  justify-content: center;
}

.eyebrow.is-center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
  flex-shrink: 0;
}

.hide-mobile { display: inline; }
.show-mobile { display: none; }

/* Eyebrows automatiquement centrés et avec double trait dans ces contextes */
.testimonials-head .eyebrow,
.conditions-head .eyebrow,
.cta-band .eyebrow {
  justify-content: center;
}

.testimonials-head .eyebrow::after,
.conditions-head .eyebrow::after,
.cta-band .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  display: inline-block;
  flex-shrink: 0;
}

.cta-band .eyebrow {
  color: var(--sand);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--forest-deep);
  font-variation-settings: "SOFT" 30, "WONK" 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}

.hero h1 .line {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}

h4 {
  font-size: 1.15rem;
  line-height: 1.3;
}

.display-italic {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--terracotta);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.line {
  display: block;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  border: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.15rem 0;
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: var(--forest-deep);
  color: var(--cream);
}

.nav.is-scrolled {
  padding: 0.85rem 0;
  box-shadow: 0 10px 28px -16px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  line-height: 1;
  text-decoration: none;
  color: var(--cream);
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: opacity 0.3s var(--ease);
}

.brand:hover .brand-logo {
  opacity: 0.85;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand:hover .brand-mark {
  color: var(--terracotta);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.brand-tagline {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(226, 213, 188, 0.75);
  margin-top: 0.4rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 239, 228, 0.85);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.4s var(--ease);
}

.nav-link:hover {
  color: var(--cream);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link.is-active {
  color: var(--terracotta);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  --pulse-color: rgba(182, 106, 76, 0.5);
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--forest-deep);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}

/* Mobile CTA dans la liste du menu — placé sous Contact */
.nav-menu-cta {
  display: none;
}

.nav-menu-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  width: 100%;
  text-align: center;
  transition: background 0.3s var(--ease);
}

.nav-menu-cta a:hover {
  background: var(--terracotta);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.85rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--terracotta);
}

.btn-outline {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--terracotta);
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease);
  white-space: nowrap;
}

.btn-text svg {
  display: none;
}

.btn-text:hover {
  color: var(--terracotta-deep);
}

/* ============================================
   PULSE ANIMATIONS
   ============================================ */

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 var(--pulse-color, rgba(42, 58, 46, 0.45));
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@keyframes underline-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.btn-primary,
.nav-cta {
  animation: pulse-ring 2.6s ease-out infinite;
}

.cta-band .btn-primary {
  --pulse-color: rgba(245, 239, 228, 0.5);
}

.btn-text {
  animation: underline-glow 2.4s ease-in-out infinite;
}

.btn-primary:hover,
.nav-cta:hover {
  animation-play-state: paused;
}

.btn-primary:hover svg,
.btn:hover svg {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .nav-cta,
  .btn-text,
  .btn-text svg {
    animation: none !important;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 1.5rem 0 1.75rem;
}

.hero h1 .display-italic {
  display: block;
}

.hero-lead {
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
}

.hero-visual:hover img {
  transform: scale(1.03);
}

.hero-credit {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-credit::before {
  content: "";
  position: absolute;
  inset: -2rem -1.5rem -1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  z-index: -1;
  pointer-events: none;
}

.hero-marquee {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  gap: 3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  overflow: hidden;
  white-space: nowrap;
  padding-left: var(--gutter);
}

.hero-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.hero-marquee span::after {
  content: "—";
  color: var(--terracotta);
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */

.page-header {
  padding-top: 9rem;
  padding-bottom: 4rem;
  position: relative;
  isolation: isolate;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
  /* Trait visible qui sépare le nav (au-dessus) de la zone page-header */
  border-top: 1px solid rgba(182, 106, 76, 0.45);
  box-shadow: inset 0 1px 0 rgba(245, 239, 228, 0.08);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ph-bg, url("assets/bg-reboutologie.jpg"));
  background-size: cover;
  background-position: center 35%;
  opacity: 0.78;
  z-index: -2;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 42, 34, 0.35) 0%,
    rgba(30, 42, 34, 0.6) 40%,
    rgba(30, 42, 34, 0.88) 100%
  );
  z-index: -1;
}

/* Image de fond spécifique par page */
.page-header--reboutologie { --ph-bg: url("assets/bg-reboutologie.jpg"); }
.page-header--massages     { --ph-bg: url("assets/bg-massages.jpg"); }
.page-header--assurances   { --ph-bg: url("assets/bg-assurances.jpg"); }
.page-header--contact      { --ph-bg: url("assets/bg-contact.jpg"); }

.page-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: end;
  position: relative;
}

.page-header h1 {
  margin-top: 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1.12;
  color: var(--cream);
}

.page-header h1 .display-italic {
  color: var(--terracotta);
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226, 213, 188, 0.75);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.breadcrumb a { color: rgba(226, 213, 188, 0.85); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb-sep { color: var(--terracotta); }

.page-header-meta {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(245, 239, 228, 0.82);
  max-width: 420px;
  justify-self: end;
  padding-left: 2.5rem;
  position: relative;
  border-left: 1px solid rgba(182, 106, 76, 0.55);
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.intro-aside {
  position: sticky;
  top: 7rem;
}

.intro-aside h2 {
  margin-top: 1.5rem;
}

.intro-body p {
  font-size: 1.08rem;
  line-height: 1.78;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}

.intro-body .has-drop-cap:first-letter {
  font-family: var(--serif);
  font-size: 3.25rem;
  line-height: 0.9;
  float: left;
  margin: 0.1em 0.15em -0.05em 0;
  color: var(--terracotta);
  font-style: italic;
}

.intro-body .intro-pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--terracotta);
  border-left: 2px solid var(--terracotta);
  padding-left: 1.5rem;
  margin: 0.5rem 0 2rem;
}

.br-mobile { display: none; }
@media (max-width: 720px) {
  .br-mobile { display: initial; }
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.intro-stats > div {
  text-align: center;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--forest-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.65rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
}

/* ============================================
   SERVICES GRID (homepage)
   ============================================ */

.services {
  background: var(--cream-soft);
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-head h2 { max-width: 600px; }
.services-head .lead { max-width: 480px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
}

.service-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.85rem;
}

.service-card p {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-meta {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.service-card .btn-text {
  align-self: flex-start;
}

/* ============================================
   APPROACH (numbered)
   ============================================ */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.approach-item {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.approach-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1rem;
}

.approach-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.approach-meta .approach-num {
  margin: 0;
  display: inline-block;
}

.approach-icon {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
  display: inline-flex;
  flex-shrink: 0;
}

.approach-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-item h4 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.approach-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ============================================
   FEATURE BLOCK (alternating)
   ============================================ */

.feature {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.feature-row.reverse .feature-visual {
  order: 2;
}

.feature-visual {
  aspect-ratio: 5 / 6;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand);
  position: relative;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content h2 { margin: 1.5rem 0 1.5rem; }
.feature-content p { font-size: 1.08rem; margin-bottom: 1.25rem; }

.feature-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1rem;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "—";
  color: var(--terracotta);
  font-weight: 400;
  flex-shrink: 0;
}

/* ============================================
   CONDITIONS GRID
   ============================================ */

.conditions {
  background: var(--forest);
  color: var(--cream);
}

.conditions h2,
.conditions h3,
.conditions h4 {
  color: var(--cream);
}

.conditions .eyebrow {
  color: var(--sand);
}

.conditions p {
  color: var(--cream-soft);
}

.conditions-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.conditions-head .eyebrow {
  justify-content: center;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(217, 207, 188, 0.15);
  border: 1px solid rgba(217, 207, 188, 0.15);
}

.condition-item {
  background: var(--forest);
  padding: 2.5rem 2rem 2rem;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  text-align: center;
  cursor: pointer;
  position: relative;
  border: none;
}

.condition-item:hover {
  background: var(--forest-deep);
}

.condition-item:hover .condition-cta {
  color: var(--cream);
  gap: 0.65rem;
}

.condition-item:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -3px;
}

.condition-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.25rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.condition-item p { margin-bottom: 0; }

/* legacy alignment helpers — replaced by .condition-meta flex */

.condition-item:hover {
  background: var(--forest-deep);
}

.condition-item .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1rem;
}

.condition-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.condition-meta .num {
  margin: 0;
  display: inline-block;
}

.condition-icon {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  display: inline-flex;
  flex-shrink: 0;
}

.condition-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.condition-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.condition-item p {
  font-size: 0.92rem;
  color: rgba(245, 239, 228, 0.7);
}

/* ============================================
   PRICING
   ============================================ */

.pricing-block {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pricing-block h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.pricing-row:hover {
  border-color: var(--terracotta);
}

.pricing-duration {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.pricing-amount {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--forest-deep);
}

.pricing-amount span {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 0.4rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  background: var(--cream);
}

.testimonials-head {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-head .eyebrow { justify-content: center; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  background: var(--cream-soft);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--forest-deep);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-quote::before {
  content: "“";
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--forest-deep);
  margin-bottom: 0.15rem;
  font-weight: 400;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   INSURANCES
   ============================================ */

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}

.insurance-cell {
  background: var(--cream);
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--forest-deep);
  transition: background 0.3s var(--ease);
}

.insurance-cell:hover {
  background: var(--cream-soft);
}

.insurance-cell-more {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

.recognition-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recognition {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.recognition strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--forest-deep);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.recognition span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ============================================
   CONTACT & FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-portrait {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.contact-portrait-img {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream-soft);
  margin-bottom: 1.25rem;
  position: relative;
}

.contact-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-portrait-img.is-empty::after {
  content: "Photo à venir";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-muted);
}

.contact-portrait-caption h4 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--forest-deep);
  margin: 0 0 0.4rem;
  font-weight: 400;
}

.contact-portrait-caption p {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0;
}

.contact-block h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-block p,
.contact-block a {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--forest-deep);
}

.contact-block a:hover { color: var(--terracotta); }

.contact-form {
  background: var(--cream-soft);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-error {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: rgba(182, 106, 76, 0.1);
  border-left: 3px solid var(--terracotta);
  color: var(--terracotta-deep);
  font-size: 0.9rem;
  border-radius: 3px;
}

.map-embed {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3rem;
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.25) contrast(1.05);
}

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

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--forest-deep);
  line-height: 1.3;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--terracotta);
  transition: transform 0.3s var(--ease);
}

.faq-toggle::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.is-open .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding-top: 1.5rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 2rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.cta-band h2 .line { display: block; }

.cta-band .display-italic { color: var(--terracotta); }

.cta-band-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-band .btn-primary {
  background: var(--terracotta);
}
.cta-band .btn-primary:hover { background: var(--cream); color: var(--forest); }

.cta-band .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
}
.cta-band .btn-outline:hover {
  background: var(--cream);
  color: var(--forest);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--forest-deep);
  color: var(--cream-soft);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer .brand-name { color: var(--cream); font-size: 1.6rem; }
.footer .brand-tagline { color: var(--sand); }
.footer .brand-mark { width: 48px; height: 48px; color: var(--cream); }
.footer .brand { color: var(--cream); }
.footer .brand-logo { height: 92px; }

.footer p { color: rgba(245, 239, 228, 0.65); font-size: 0.95rem; margin-top: 1rem; max-width: 280px; }

.footer h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer ul a {
  font-size: 0.95rem;
  color: rgba(245, 239, 228, 0.75);
}

.footer ul a:hover { color: var(--terracotta); }

.footer-bottom {
  border-top: 1px solid rgba(217, 207, 188, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(245, 239, 228, 0.5);
}

.footer-bottom .legal {
  display: flex;
  gap: 1.5rem;
}

/* ============================================
   MODAL (conditions reboutologie)
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 42, 34, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-dialog {
  position: relative;
  background: var(--cream);
  border-radius: 6px;
  max-width: 640px;
  width: 100%;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.45s var(--ease-slow);
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.modal-close svg { width: 18px; height: 18px; }

.modal-close:hover {
  background: var(--forest-deep);
  color: var(--cream);
  transform: rotate(90deg);
}

.modal-head {
  margin-bottom: 1.75rem;
  padding-right: 3rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.5rem;
}

.modal-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.65rem;
}

#modal-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: var(--forest-deep);
  font-weight: 400;
  margin: 0;
}

.modal-section {
  margin-bottom: 1.75rem;
}

.modal-section:last-child { margin-bottom: 0; }

.modal-section .eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
}

.modal-symptoms {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-symptoms li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.modal-symptoms li:last-child { border-bottom: none; }

.modal-symptoms li::before {
  content: "—";
  color: var(--terracotta);
  flex-shrink: 0;
}

.modal-treatment {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.modal-actions {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

@media (max-width: 720px) {
  .modal { padding: 1rem; align-items: flex-start; padding-top: 4rem; }
  .modal-dialog { max-height: calc(100vh - 5rem); padding: 1.75rem 1.5rem; }
  .modal-close { top: 0.6rem; right: 0.6rem; width: 36px; height: 36px; }
  .modal-head { padding-right: 2.5rem; }
  .modal-symptoms li { font-size: 0.94rem; }
}

/* ============================================
   POP-UP DE CONFIRMATION (envoi formulaire)
   ============================================ */

.success-dialog {
  max-width: 480px;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
}

.success-icon svg { width: 34px; height: 34px; }

.success-dialog h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--forest-deep);
  margin: 0 0 1rem;
}

.success-dialog p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 36ch;
}

.success-redirect {
  margin-top: 1.5rem !important;
  font-size: 0.85rem !important;
  color: var(--ink-muted) !important;
  font-style: italic;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-slow), transform 0.9s var(--ease-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { aspect-ratio: 16 / 11; max-height: 60vh; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-aside { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  /* Image toujours en premier (même sur les rangées "reverse") pour éviter
     que deux images se suivent sans séparation sur mobile/tablette */
  .feature-row.reverse .feature-visual { order: -1; }
  .pricing-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-header-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .page-header-inner > div { text-align: center; }
  .page-header-meta {
    justify-self: center;
    text-align: center;
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: none;
    border-top: 1px solid rgba(182, 106, 76, 0.4);
    max-width: 520px;
  }
  .breadcrumb { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
  /* ---- NAV MOBILE ---- */
  .nav-menu { display: none; }
  .nav-cta { display: none !important; }
  .nav-toggle { display: flex; }
  .brand { gap: 0.6rem; }
  .brand-logo { height: 40px; }
  .footer .brand-logo { height: 80px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { white-space: nowrap; font-size: 1.15rem; }
  .brand-tagline { font-size: 0.6rem; }

  .nav-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .nav-toggle {
    padding: 0.5rem;
    margin-right: -0.25rem;
  }

  .nav.is-mobile-open .nav-menu {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white-warm);
    padding: 2.5rem 1.75rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    text-align: left;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 12px 24px -16px rgba(30, 42, 34, 0.15);
  }

  .nav.is-mobile-open .nav-menu .nav-link {
    font-size: 1.45rem;
    font-family: var(--serif);
    color: var(--forest-deep);
    padding: 0.2rem 0;
  }

  .nav.is-mobile-open .nav-menu .nav-link.is-active {
    color: var(--terracotta);
  }

  /* CTA dans la liste du menu mobile (en dessous de Contact) */
  .nav-menu-cta {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    list-style: none;
  }

  /* Animation pulse sur le CTA mobile aussi */
  .nav-menu-cta a {
    --pulse-color: rgba(30, 42, 34, 0.4);
    animation: pulse-ring 2.6s ease-out infinite;
  }

  /* ---- PADDINGS REDUITS MOBILE ---- */
  section { padding: 2rem 0 2.5rem; }
  .intro { padding: 2rem 0; }
  .hero { padding-top: 5rem; padding-bottom: 2rem; }
  .page-header { padding-top: 5.5rem; padding-bottom: 1.5rem; }
  .cta-band { padding: 3rem 0; }

  /* ---- TITRES TAILLE MOBILE ---- */
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.18; }
  h3 { font-size: 1.35rem; }

  /* ---- GRIDS COLLAPSE ---- */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
  .conditions-grid { grid-template-columns: 1fr; }
  .services-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .testimonials-head { margin-bottom: 2rem; }
  .conditions-head { margin-bottom: 2rem; }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  /* Sur mobile, "+25 autres" devient une cellule normale (remplit le 22e slot) */
  .insurance-cell-more { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .intro-body p {
    font-size: 0.98rem;
    line-height: 1.78;
    margin-bottom: 1.4rem;
  }
  .intro-body .has-drop-cap:first-letter {
    font-size: 2rem;
    margin: 0.12em 0.15em -0.05em 0;
  }
  .intro-body .intro-pull {
    font-size: 1.05rem;
    padding-left: 1rem;
    margin: 0.25rem 0 1.5rem;
  }
  .recognition-row { gap: 1.5rem; padding: 1.5rem 0; }
  .recognition strong { font-size: 1.5rem; }
  .feature-row { gap: 1.5rem; }
  .intro-grid { gap: 1.5rem; }

  /* ---- STATS CENTRÉS ET COMPACTS ---- */
  .intro-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
  }
  .stat-num { font-size: 1.85rem; margin-bottom: 0.4rem; }
  .stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    line-height: 1.35;
  }

  /* ---- CENTRAGE GLOBAL TITRES & SECTIONS ---- */
  .hero-content,
  .intro-aside,
  .intro-body,
  .services-head,
  .services-head > div,
  .feature-content,
  .testimonials-head,
  .conditions-head,
  .page-header-inner,
  .page-header-inner > div,
  .pricing-block,
  .pricing-block > div,
  .approach-item,
  .condition-item,
  .contact-block,
  .service-card {
    text-align: center;
  }

  /* Eyebrows : centrées avec trait des deux côtés sur mobile */
  .eyebrow {
    justify-content: center;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    gap: 0.55rem;
    flex-wrap: nowrap;
  }
  .eyebrow::before,
  .eyebrow::after {
    width: 18px;
    flex-shrink: 0;
  }
  .eyebrow::after {
    content: "";
    height: 1px;
    background: var(--terracotta);
    display: inline-block;
  }

  /* Hide longer eyebrow text portions on mobile to fit one line */
  .hide-mobile { display: none; }
  .show-mobile { display: inline; }

  /* Boutons centrés dans leurs containers */
  .hero-actions,
  .cta-band-actions,
  .feature-content > div[style*="flex"] {
    justify-content: center !important;
  }

  /* Service card buttons re-aligned */
  .service-card .btn-text,
  .approach-item,
  .approach-item h4 {
    align-self: center;
  }

  /* Corps de texte sous un titre centré : aligné à gauche (lisibilité) */
  .hero-lead,
  .services-head .lead,
  .conditions-head .lead,
  .testimonials-head .lead,
  .service-card p,
  .intro-body p,
  .feature-content > p,
  .pricing-block > div > p,
  .testimonial-quote,
  .faq-answer p {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  /* Page-header meta: centré sur mobile (cohérent avec le titre centré) */
  .page-header-meta {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Petits paragraphes dans cartes (approach, condition, contact) : restent centrés */
  .approach-item p,
  .condition-item p,
  .contact-block p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Sécurité overflow */
  body, .container, .container-narrow, p, h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Feature list : aligné à gauche dans bloc centré */
  .feature-list {
    text-align: left;
    display: inline-block;
    max-width: 100%;
  }

  /* Service / approach / condition items adjust */
  .service-meta { justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
  .service-num { text-align: center; }
  .service-card { align-items: center; }
  .approach-meta { justify-content: center; }
  .condition-meta { justify-content: center; }

  /* ---- HERO MOBILE ---- */
  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    aspect-ratio: 4 / 3;
    order: 2;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }
  .hero h1 .line {
    display: block;
    white-space: nowrap;
  }

  /* ---- PRICING SUR UNE LIGNE ---- */
  .pricing-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pricing-row {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 1.25rem 1rem;
  }
  .pricing-amount {
    white-space: nowrap;
    font-size: 1.55rem;
  }
  .pricing-amount span {
    white-space: nowrap;
  }
  .pricing-duration {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  /* ---- CONTACT (centré sur mobile) ---- */
  .contact-info { align-items: center; text-align: center; }
  .contact-block { width: 100%; text-align: center; }
  .contact-portrait { text-align: center; width: 100%; }
  .contact-portrait-img { margin-left: auto; margin-right: auto; }
  .contact-portrait-caption h4,
  .contact-portrait-caption p { text-align: center; }
  /* Intro du formulaire centrée, mais champs alignés à gauche pour l'usage */
  .contact-form { text-align: center; }
  .contact-form form { text-align: left; }
  .contact-form .eyebrow { justify-content: center; }

  /* CTA band tweaks */
  .cta-band-actions { flex-direction: column; gap: 0.75rem; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 1rem; align-items: center; }
  .hero-actions .btn,
  .hero-actions .btn-text { width: auto; }

  /* Testimonial / faq adjustments */
  .testimonial { text-align: center; }
  .testimonial-quote::before { display: inline-block; }
  .testimonial-author { text-align: center; }

  .faq-question { font-size: 1.1rem; }

  /* Page header */
  .page-header { padding-top: 8rem; }
  .breadcrumb { justify-content: center; }
}

/* ============================================
   UTILITIES
   ============================================ */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
