/* =============================================================
   Étude Emmanuelle Emerich-Swann — Feuille de style
   Design : institutionnel, minimaliste, haut de gamme
   ============================================================= */

/* ---------- Polices auto-hébergées (conformité LPD) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/playfair-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-700.ttf') format('truetype');
}

/* ---------- Variables ---------- */
:root {
  --navy: #16283f;
  --navy-deep: #0f1d30;
  --anthracite: #333a41;
  --ivory: #fbf8f2;
  --ivory-2: #f3ede1;
  --bronze: #a6813f;
  --bronze-dark: #8a6a31;
  --bronze-soft: #c9a86a;
  --text: #2c3138;
  --muted: #5f6871;
  --line: rgba(22, 40, 63, 0.12);
  --line-soft: rgba(22, 40, 63, 0.07);
  --white: #ffffff;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1160px;
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(15, 29, 48, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 29, 48, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--navy); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 104px 0;
  position: relative;
}
.section--tint { background: var(--ivory-2); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, 0.82); }
.section--navy h2,
.section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}
.section--navy .eyebrow { color: var(--bronze-soft); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 14px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead { font-size: 1.12rem; color: var(--muted); }

.rule {
  width: 54px;
  height: 2px;
  background: var(--bronze);
  border: 0;
  margin: 0 0 26px;
}
.centered .rule { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.2s var(--ease);
  text-transform: uppercase;
}
.btn:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }

.btn--primary {
  background: var(--bronze);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--bronze-dark); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--bronze); color: var(--bronze-dark); }

.section--navy .btn--outline { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.section--navy .btn--outline:hover { border-color: var(--bronze-soft); color: var(--bronze-soft); }

.btn svg { width: 17px; height: 17px; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand span {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--anthracite);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--bronze);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-switch a {
  padding: 6px 11px;
  color: var(--muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-switch a.is-active {
  background: var(--navy);
  color: #fff;
}
.lang-switch a:not(.is-active):hover { background: var(--ivory-2); color: var(--navy); }

/* Burger */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.6px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -6px); }
.nav-toggle span::after { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded='true'] span { background: transparent; }
.nav-toggle[aria-expanded='true'] span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 172px 0 116px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(166, 129, 63, 0.12), transparent 60%),
    linear-gradient(180deg, #fdfbf6 0%, var(--ivory) 60%, var(--ivory-2) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border: 1px solid rgba(166, 129, 63, 0.22);
  border-radius: 50%;
  opacity: 0.6;
  pointer-events: none;
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 26px;
}
.hero-baseline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.42rem);
  color: var(--navy);
  margin-bottom: 28px;
  max-width: 620px;
}
.hero-text {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Profile ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: start;
}
.profile-facts {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 108px;
}
.fact-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--bronze);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.fact-card .fact-k {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.fact-card .fact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bronze);
  display: block;
  margin-bottom: 8px;
}
.fact-card p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ---------- Expertise cards ---------- */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 42px 38px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(166, 129, 63, 0.1);
  color: var(--bronze);
  margin-bottom: 24px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 20px; }
.card ul { list-style: none; margin: 0; padding: 0; }
.card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 0.98rem;
  color: var(--text);
}
.card li:last-child { margin-bottom: 0; }
.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--bronze);
  transform: rotate(45deg);
}
.card li strong { color: var(--navy); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 44px;
}
.price-block {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.price-block.is-feature {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-color: var(--navy);
}
.price-block.is-feature h3 { color: #fff; }
.price-tag {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
}
.is-feature .price-tag { color: var(--bronze-soft); }
.price-block .price-note { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bronze); font-weight: 600; margin-bottom: 16px; }
.is-feature .price-note { color: var(--bronze-soft); }
.price-block h3 { font-size: 1.25rem; margin-bottom: 12px; }
.price-block p { font-size: 0.96rem; color: var(--muted); }
.is-feature p { color: rgba(255, 255, 255, 0.78); }

.modalities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 40px;
}
.modality {
  display: flex;
  gap: 18px;
  padding: 26px 28px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.section--tint .modality { background: var(--white); }
.modality .m-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(166, 129, 63, 0.1);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modality .m-icon svg { width: 22px; height: 22px; }
.modality h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.modality p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* Disclaimer */
.disclaimer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(166, 129, 63, 0.08);
  border: 1px solid rgba(166, 129, 63, 0.3);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 30px;
}
.disclaimer .d-mark { color: var(--bronze-dark); font-size: 1.1rem; line-height: 1.4; flex: none; }
.disclaimer p {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--anthracite);
  margin: 0;
  line-height: 1.55;
}
.pricing-cta { text-align: center; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-list li:first-child { padding-top: 0; }
.contact-list .c-icon { color: var(--bronze-soft); flex: none; margin-top: 2px; }
.contact-list .c-icon svg { width: 20px; height: 20px; }
.contact-list .c-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze-soft); display: block; margin-bottom: 2px; }
.contact-list a, .contact-list span { color: rgba(255, 255, 255, 0.9); font-size: 1rem; }
.contact-list a:hover { color: var(--bronze-soft); }
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
}
.contact-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.contact-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.98rem; margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s var(--ease); }
.footer-links a:hover { color: var(--bronze-soft); }

/* ---------- Floating booking button ---------- */
.book-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--bronze);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 24px;
  border: none;
  border-radius: 46px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(138, 106, 49, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
    background 0.25s var(--ease);
}
.book-fab.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.book-fab:hover { background: var(--bronze-dark); }
.book-fab:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.book-fab svg { width: 19px; height: 19px; flex: none; }

/* ---------- Booking drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 29, 48, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  z-index: 1000;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 440px;
  max-width: 92vw;
  background: var(--ivory);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(15, 29, 48, 0.25);
}
.drawer.is-open { transform: translateX(0); }

.drawer-head {
  background: var(--navy);
  color: #fff;
  padding: 30px 32px 26px;
  position: relative;
}
.drawer-head .eyebrow { color: var(--bronze-soft); margin-bottom: 10px; }
.drawer-head h2 { color: #fff; font-size: 1.55rem; margin: 0; }
.drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.drawer-close:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--bronze-soft); }

.drawer-body {
  padding: 28px 32px 32px;
  overflow-y: auto;
  flex: 1;
}
.drawer-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 12px;
}
.drawer-body .drawer-step-label:not(:first-child) { margin-top: 28px; }

.choice-group { display: grid; gap: 10px; }
.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .dot {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex: none;
  position: relative;
  transition: border-color 0.2s var(--ease);
}
.choice .dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--bronze);
  transform: scale(0);
  transition: transform 0.2s var(--ease);
}
.choice strong { display: block; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.choice small { color: var(--muted); font-size: 0.82rem; }
.choice:hover { border-color: var(--bronze-soft); }
.choice.is-selected { border-color: var(--bronze); background: rgba(166, 129, 63, 0.06); }
.choice.is-selected .dot { border-color: var(--bronze); }
.choice.is-selected .dot::after { transform: scale(1); }

.drawer-disclaimer {
  margin-top: 26px;
  background: rgba(166, 129, 63, 0.09);
  border: 1px solid rgba(166, 129, 63, 0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--anthracite);
  line-height: 1.5;
}

.drawer-foot {
  padding: 20px 32px 26px;
  border-top: 1px solid var(--line-soft);
  background: var(--white);
  display: grid;
  gap: 12px;
}
.drawer-foot .btn { width: 100%; justify-content: center; }
.drawer-phone {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
.drawer-phone a { color: var(--navy); font-weight: 600; }
.drawer-phone a:hover { color: var(--bronze-dark); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  z-index: 940;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(140%);
  transition: transform 0.45s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.87rem; color: var(--muted); margin: 0; flex: 1 1 260px; }
.cookie-banner a { color: var(--bronze-dark); text-decoration: underline; }
.cookie-banner .btn { padding: 11px 22px; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 148px 0 90px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 10px; }
.legal-page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 {
  font-size: 1.4rem;
  margin: 44px 0 14px;
  padding-top: 10px;
}
.legal-page h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; color: var(--navy); margin: 26px 0 10px; }
.legal-page p, .legal-page li { color: var(--text); }
.legal-page ul { padding-left: 22px; }
.legal-page li { margin-bottom: 10px; }
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bronze-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 34px;
}
.legal-page .back-link:hover { color: var(--bronze); }
.legal-note {
  background: var(--ivory-2);
  border-left: 3px solid var(--bronze);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--muted);
  margin: 24px 0;
}

/* ---------- Reveal animation (progressive enhancement) ----------
   Le contenu n'est masqué QUE si JavaScript est actif (classe .js sur
   <html>). Sans JS, ou si l'observateur échoue, tout reste visible. */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .profile-facts { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px 0 20px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 14px 28px; border-bottom: 1px solid var(--line-soft); }
  .nav-links a::after { display: none; }
  .lang-switch { margin: 16px 28px 0; align-self: flex-start; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .cards-2 { grid-template-columns: 1fr; }
  .modalities { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 84px; }
  .card { padding: 34px 28px; }
  .book-fab .fab-text { display: none; }
  .book-fab { padding: 16px; border-radius: 50%; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
