/* =====================================================================
   Cabinet Elodie Lermechin - Osteopathie & Naturopathie, Alfortville (94)
   Feuille de style partagee
   Palette : Ivoire #F7F3EC . Encre #1F2A24 . Sauge #5C6B5A
             Terracotta #C68A6B . Sable #E8DFD1
   Typographies : Fraunces (titres) + Inter (corps)
   ===================================================================== */

/* ============== DESIGN TOKENS ============== */
:root {
  --ivoire: #F7F3EC;
  --encre: #1F2A24;
  --encre-soft: rgba(31, 42, 36, 0.78);
  --encre-mute: rgba(31, 42, 36, 0.58);
  --sauge: #5C6B5A;
  --sauge-dark: #4A5648;
  --terracotta: #C68A6B;
  --sable: #E8DFD1;
  --sable-dark: #D9CDB8;
  --blanc: #FFFFFF;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --section-py: clamp(72px, 9vw, 128px);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ivoire);
  color: var(--encre);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== ACCESSIBILITE ============== */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--encre);
  color: var(--ivoire);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  z-index: 300;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--sauge);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============== HEADER / NAVIGATION ============== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 42, 36, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}

.logo {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo em {
  font-style: italic;
  color: var(--sauge);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.2s ease;
  color: var(--encre-soft);
}

.nav-links a:hover { color: var(--encre); }

.nav-links a[aria-current="page"] {
  color: var(--encre);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--encre);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============== BOUTONS ============== */
.btn {
  display: inline-block;
  background: var(--sauge);
  color: var(--ivoire);
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.btn:hover { background: var(--sauge-dark); }

.btn-link {
  display: inline-block;
  background: transparent;
  color: var(--encre);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--encre);
  border: 1px solid var(--encre);
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--encre);
  color: var(--ivoire);
}

.float-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.float-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 981px) {
  .float-cta { display: none !important; }
}

/* ============== HERO (accueil) ============== */
.hero {
  padding: 64px 0 var(--section-py);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sauge);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 36px;
  color: var(--encre-soft);
}

.hero-ctas {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-trust {
  font-size: 13px;
  color: var(--encre-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-image {
  aspect-ratio: 4/5;
  background-color: var(--sable);
  border-radius: var(--radius);
  overflow: hidden;
}

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

/* ============== PAGE HERO (pages interieures) ============== */
.page-hero {
  padding: 16px 0 clamp(40px, 6vw, 72px);
}

.breadcrumb {
  font-size: 13px;
  color: var(--encre-mute);
  padding: 24px 0 0;
}

.breadcrumb a {
  color: var(--sauge);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span[aria-current] { color: var(--encre-mute); }

.page-hero-inner { padding-top: 40px; }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(33px, 4.6vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 880px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--sauge);
}

.page-hero-intro {
  font-size: 19px;
  line-height: 1.6;
  color: var(--encre-soft);
  max-width: 720px;
}

/* ============== BANDEAU REASSURANCE ============== */
.reassurance {
  background: var(--sable);
  padding: 28px 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-size: 13px;
  color: var(--sauge-dark);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.reassurance-item {
  text-align: center;
  position: relative;
}

.reassurance-item::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sauge);
  margin: 0 auto 10px;
  opacity: 0.5;
}

/* ============== SECTIONS ============== */
.section { padding: var(--section-py) 0; }
.section.bg-sable { background: var(--sable); }
.section.pt-tight { padding-top: clamp(48px, 6vw, 80px); }

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 24px;
  max-width: 760px;
}

.section-title em {
  font-style: italic;
  color: var(--sauge);
}

.section-intro {
  font-size: 18px;
  color: var(--encre-soft);
  max-width: 640px;
  margin-bottom: 16px;
}

/* ============== PROSE (texte courant) ============== */
.prose { max-width: 720px; }

.prose p {
  margin-bottom: 18px;
  color: var(--encre-soft);
}

.prose p:last-child { margin-bottom: 0; }

.prose h3 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 500;
  margin: 8px 0 14px;
  letter-spacing: -0.01em;
}

/* ============== CALLOUT (encadre important) ============== */
.callout {
  background: var(--blanc);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 36px 0;
  max-width: 760px;
}

.callout.callout-sauge { border-left-color: var(--sauge); }

.callout-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 8px;
}

.callout.callout-sauge .callout-label { color: var(--sauge); }

.callout p {
  font-size: 15px;
  color: var(--encre-soft);
  line-height: 1.6;
}

.callout p + p { margin-top: 12px; }

/* ============== APPROCHES (accueil) ============== */
.approches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 72px;
}

.approche-card {
  display: flex;
  flex-direction: column;
}

.approche-image {
  aspect-ratio: 3/2;
  background-color: var(--sable);
  border-radius: var(--radius);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approche-icon {
  width: clamp(104px, 15vw, 140px);
  height: auto;
  color: var(--sauge);
}

.approche-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.approche-card p {
  margin-bottom: 20px;
  color: var(--encre-soft);
  max-width: 460px;
}

.approche-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--sauge);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  align-self: flex-start;
}

.approche-link::after {
  content: ' \2192';
  display: inline-block;
  transition: transform 0.2s ease;
}

.approche-link:hover::after { transform: translateX(4px); }

/* ============== MOTIFS / CARTES ============== */
.motifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.motif-card {
  background: var(--blanc);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 42, 36, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.motif-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(31, 42, 36, 0.06);
}

.motif-icon {
  width: 28px;
  height: 28px;
  color: var(--sauge);
  margin-bottom: 20px;
  stroke-width: 1.4;
}

.motif-card h3,
.motif-card h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.motif-card p {
  font-size: 14px;
  color: var(--encre-mute);
  line-height: 1.55;
}

/* ============== BLOCS EXPERTISE (pages interieures) ============== */
.expertise {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.expertise-item {
  background: var(--blanc);
  border: 1px solid rgba(31, 42, 36, 0.06);
  border-radius: var(--radius);
  padding: 34px 36px;
}

.expertise-item h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.008em;
  margin-bottom: 12px;
}

.formation-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--sauge-dark);
  background: var(--sable);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-weight: 500;
}

.expertise-item > p {
  color: var(--encre-soft);
  max-width: 640px;
}

/* ============== LISTES ============== */
.tick-list {
  list-style: none;
  margin-top: 14px;
  max-width: 640px;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--encre-soft);
}

.tick-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid var(--sauge);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tick-list li:last-child { margin-bottom: 0; }

.dot-list {
  list-style: none;
  margin-top: 8px;
}

.dot-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--encre-soft);
  font-size: 16px;
}

.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.dot-list li:last-child { margin-bottom: 0; }

/* ============== PILIERS (liste descriptive) ============== */
.pillars {
  margin-top: 40px;
  max-width: 760px;
}

.pillar {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(31, 42, 36, 0.1);
}

.pillar:last-child {
  border-bottom: 1px solid rgba(31, 42, 36, 0.1);
}

.pillar-term {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--encre);
  letter-spacing: -0.005em;
}

.pillar-desc {
  color: var(--encre-soft);
  margin: 0;
}

/* ============== DEROULE / ETAPES ============== */
.deroule-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 64px;
  position: relative;
}

.deroule-steps.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

.step {
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--sauge);
  line-height: 0.9;
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: -0.02em;
}

.step h3,
.step h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.step p {
  font-size: 15px;
  color: var(--encre-soft);
  line-height: 1.55;
}

.deroule-foot {
  margin-top: 56px;
  text-align: center;
  font-size: 14px;
  color: var(--encre-mute);
  letter-spacing: 0.02em;
}

.deroule-foot strong {
  font-weight: 600;
  color: var(--encre-soft);
}

/* ============== QUOTE / A PROPOS ============== */
.quote {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.quote-image {
  aspect-ratio: 4/5;
  background-color: var(--sable);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--encre);
}

.quote-author {
  margin-top: 28px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  color: var(--sauge);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.quote-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--sauge);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============== CABINET ============== */
.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  margin-top: 48px;
  align-items: center;
}

.cabinet-image {
  aspect-ratio: 4/5;
  background-color: var(--sable);
  border-radius: var(--radius);
  background-image: url('../img/porte-entree.webp');
  background-size: cover;
  background-position: center;
}

.cabinet-info .info-block { margin-bottom: 28px; }

.cabinet-info .info-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 8px;
  font-weight: 600;
}

.cabinet-info p {
  font-size: 17px;
  color: var(--encre-soft);
  line-height: 1.5;
}

.cabinet-info strong {
  color: var(--encre);
  font-weight: 500;
}

.cabinet-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============== TARIFS ============== */
.price-list {
  list-style: none;
  max-width: 720px;
  margin-top: 32px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(31, 42, 36, 0.1);
}

.price-row:last-child {
  border-bottom: 1px solid rgba(31, 42, 36, 0.1);
}

.price-name {
  display: block;
  font-size: 17px;
  color: var(--encre);
  font-weight: 500;
}

.price-meta {
  display: block;
  font-size: 14px;
  color: var(--encre-mute);
  margin-top: 3px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--encre);
  white-space: nowrap;
}

.booking {
  background: var(--sable);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-top: 8px;
}

.booking h2,
.booking h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.booking p {
  color: var(--encre-soft);
  max-width: 480px;
  margin: 0 auto 28px;
}

.mini-cta {
  background: var(--blanc);
  border: 1px solid rgba(31, 42, 36, 0.08);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 760px;
}

.mini-cta-text h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 4px;
}

.mini-cta-text p {
  font-size: 15px;
  color: var(--encre-mute);
}

/* ============== FAQ ============== */
.faq-list {
  margin-top: 48px;
  max-width: 880px;
}

.faq-item {
  border-top: 1px solid rgba(31, 42, 36, 0.12);
  padding: 24px 0;
}

.faq-item:last-of-type {
  border-bottom: 1px solid rgba(31, 42, 36, 0.12);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.005em;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 300;
  color: var(--sauge);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding-top: 16px;
  font-size: 16px;
  color: var(--encre-soft);
  line-height: 1.6;
  max-width: 760px;
}

.faq-more {
  margin-top: 36px;
  display: inline-block;
  color: var(--sauge);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

/* ============== CTA FINAL ============== */
.cta-final {
  background: var(--sauge);
  color: var(--ivoire);
  text-align: center;
  padding: clamp(80px, 11vw, 144px) 0;
}

.cta-final h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.015em;
}

.cta-final p {
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(247, 243, 236, 0.85);
}

.cta-final .btn {
  background: var(--ivoire);
  color: var(--encre);
}

.cta-final .btn:hover { background: var(--blanc); }

.cta-final .btn-link {
  background: transparent;
  color: var(--ivoire);
  border-bottom: 1px solid var(--ivoire);
  margin-left: 24px;
}

/* ============== FOOTER ============== */
footer {
  background: var(--encre);
  color: rgba(247, 243, 236, 0.75);
  padding: 72px 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ivoire);
  margin-bottom: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.footer-brand em { font-style: italic; color: var(--terracotta); }

.footer-tagline {
  color: rgba(247, 243, 236, 0.6);
  max-width: 340px;
  line-height: 1.5;
  font-size: 14px;
}

.footer-col h2 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ivoire);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(247, 243, 236, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--ivoire); }

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(247, 243, 236, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivoire);
    padding: 8px 24px 28px;
    border-bottom: 1px solid rgba(31, 42, 36, 0.08);
    box-shadow: 0 18px 34px rgba(31, 42, 36, 0.1);
  }

  .nav-menu.is-open { display: flex; }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    font-size: 16px;
  }

  .nav-links li { border-bottom: 1px solid rgba(31, 42, 36, 0.07); }

  .nav-links a {
    display: block;
    padding: 15px 2px;
  }

  .nav-menu .btn {
    margin-top: 18px;
    text-align: center;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .approches { grid-template-columns: 1fr; gap: 56px; }
  .motifs-grid { grid-template-columns: 1fr 1fr; }
  .deroule-steps { grid-template-columns: 1fr 1fr; gap: 48px 40px; }
  .deroule-steps.cols-2 { grid-template-columns: 1fr 1fr; }
  .quote { grid-template-columns: 1fr; gap: 36px; }
  .quote-image { max-width: 460px; margin: 0 auto; }
  .cabinet-grid { grid-template-columns: 1fr; gap: 36px; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .motifs-grid { grid-template-columns: 1fr; }
  .deroule-steps { grid-template-columns: 1fr; gap: 36px; }
  .deroule-steps.cols-2 { grid-template-columns: 1fr; }
  .reassurance-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 20px; }
  .cta-final .btn-link { margin-left: 0; margin-top: 16px; display: inline-block; }
  .expertise-item { padding: 28px 24px; }
  .pillar { grid-template-columns: 1fr; gap: 6px; }
  .price-row { gap: 16px; }
  .price-amount { font-size: 22px; }
  .mini-cta { padding: 28px 26px; }
}

/* ============== TIMELINE (parcours) ============== */
.timeline {
  margin-top: 48px;
  max-width: 760px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid rgba(31, 42, 36, 0.1);
}

.timeline-item:last-child {
  border-bottom: 1px solid rgba(31, 42, 36, 0.1);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  color: var(--sauge);
  line-height: 1.2;
}

.timeline-content {
  color: var(--encre-soft);
  margin: 0;
}

.timeline-content strong {
  color: var(--encre);
  font-weight: 500;
}

/* ============== GALERIE PHOTOS ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sable);
  margin: 0;
}

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

.photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--sauge-dark);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ============== CARTE ============== */
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  max-width: 760px;
}

.contact-card {
  background: var(--blanc);
  border: 1px solid rgba(31, 42, 36, 0.06);
  border-radius: var(--radius);
  padding: 28px 30px;
}

.contact-card .info-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-card a,
.contact-card p {
  font-size: 17px;
  color: var(--encre-soft);
  text-decoration: none;
  line-height: 1.5;
}

.contact-card a:hover { color: var(--encre); }

@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .gallery { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============== PAGES LEGALES ============== */
.legal-updated {
  font-size: 14px;
  color: var(--encre-mute);
  margin-top: 10px;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 44px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sauge);
  margin: 24px 0 8px;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--encre-soft);
}

.legal-content a { color: var(--sauge); }

.legal-content strong {
  color: var(--encre);
  font-weight: 500;
}

.legal-content .dot-list { margin: 4px 0 18px; }
