/* ============================================================
   Amélie Baretta — Ostéopathe D.O.
   Aesthetic: Jardin Tropical · Warm Botanical · Editorial
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ─── */
:root {
  --terra:       #C9714A;
  --terra-dark:  #9F5436;
  --terra-pale:  #F0D4C0;
  --terra-glow:  rgba(201,113,74,0.25);
  --turq:        #4ABFBB;
  --turq-dark:   #369A96;
  --turq-pale:   #C8EAE9;
  --cream:       #FEFBF4;
  --sand:        #F5E6D0;
  --sand-dark:   #E8D0B2;
  --sage:        #8FB89A;
  --sage-pale:   #D4E6D8;
  --bark:        #3D2B1F;
  --bark-mid:    #6B4A38;
  --bark-light:  #A87D64;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --topbar-h: 34px;
  --nav-h: 62px;
  --radius: 16px;
  --shadow: 0 8px 40px rgba(61,43,31,0.12);
  --shadow-sm: 0 3px 16px rgba(61,43,31,0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --max: 1060px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(3rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); color: var(--bark); }
h3 { font-size: 1.4rem; color: var(--bark); }
p  { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.3rem; }

.display-italic { font-style: italic; color: var(--terra); }
.section-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 0.6rem;
}

/* ─── Container ─── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 201;
  height: var(--topbar-h);
  background: var(--bark);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-identity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.topbar-name {
  color: var(--terra-pale);
}
.topbar-name strong {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.topbar-title {
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

.topbar-sep {
  color: rgba(255,255,255,0.3);
  user-select: none;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: nowrap;
  overflow: hidden;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.topbar-link:hover { color: var(--terra-pale); text-decoration: none; }

.topbar-addr {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: 0.4rem;
}

.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.topbar-social:hover {
  background: var(--terra);
  color: #fff;
  transform: scale(1.1);
  text-decoration: none;
}

/* Mobile topbar */
@media (max-width: 700px) {
  :root { --topbar-h: auto; }
  .topbar { height: auto; padding: 5px 0; }
  .topbar-inner { flex-wrap: wrap; gap: 4px; padding: 0 1rem; }
  .topbar-identity { gap: 0.35rem; }
  .topbar-contact { gap: 0.5rem; flex-wrap: wrap; }
  .topbar-sep-addr { display: none; }
  .topbar-addr { display: none; }
}

@media (max-width: 440px) {
  .topbar-title { display: none; }
  .topbar-sep:first-of-type { display: none; }
}

/* ═══════════════════════════════════════════════════
   STICKY NAV
═══════════════════════════════════════════════════ */
.sticky-nav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 200;
  height: var(--nav-h);
  background: rgba(254,251,244,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--terra-pale);
  box-shadow: 0 2px 24px rgba(61,43,31,0.07);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.nav-logo-mini {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}

.tab-scroll-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.tab-scroll-wrap::-webkit-scrollbar { display: none; }

nav[role="tablist"] {
  display: flex;
  gap: 2px;
  min-width: max-content;
  height: 100%;
  align-items: flex-end;
}

button[role="tab"] {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--bark-mid);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0 1rem 0.7rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  position: relative;
}

button[role="tab"]::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--terra);
  border-radius: 3px 3px 0 0;
  transition: width 0.3s var(--ease);
}

button[role="tab"]:hover { color: var(--terra); }

button[role="tab"][aria-selected="true"] {
  color: var(--terra);
  font-weight: 600;
}

button[role="tab"][aria-selected="true"]::after {
  width: 70%;
}

/* ═══════════════════════════════════════════════════
   SECTIONS — always visible, scroll-based
═══════════════════════════════════════════════════ */
[role="tabpanel"] {
  scroll-margin-top: calc(var(--nav-h) + var(--topbar-h));
}

/* ═══════════════════════════════════════════════════
   HERO — ACCUEIL
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('resources/1771710801024.jpg');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12) translateY(-2%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Stronger, centred vignette so text always readable */
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(30,16,8,0.60) 0%, rgba(30,16,8,0.20) 70%, transparent 100%),
    linear-gradient(to bottom, rgba(20,10,5,0.55) 0%, rgba(40,20,10,0.25) 60%, rgba(20,10,5,0.50) 100%);
  z-index: 1;
}

/* floating botanical leaves */
.leaf-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* ── Petals ── */
.leaf {
  position: absolute;
  animation: leaf-float linear infinite;
}

/* Colour families: sage / terra-pale / turq-pale / coral / white */
.leaf:nth-child(1) svg,  .leaf:nth-child(6) svg,  .leaf:nth-child(11) svg { fill: #B2D4AE; }
.leaf:nth-child(2) svg,  .leaf:nth-child(7) svg,  .leaf:nth-child(12) svg { fill: #F0D4C0; }
.leaf:nth-child(3) svg,  .leaf:nth-child(8) svg,  .leaf:nth-child(13) svg { fill: #C8EAE9; }
.leaf:nth-child(4) svg,  .leaf:nth-child(9) svg,  .leaf:nth-child(14) svg { fill: #F4A898; }
.leaf:nth-child(5) svg,  .leaf:nth-child(10) svg                          { fill: #ffffff; }

@keyframes leaf-float {
  0%   { transform: translateY(108vh) rotate(0deg)   scale(1);    opacity: 0; }
  8%   { opacity: 0.60; }
  92%  { opacity: 0.55; }
  100% { transform: translateY(-18vh)  rotate(540deg) scale(0.85); opacity: 0; }
}

/* 14 petals — denser in the centre where the glass sits */
.leaf:nth-child(1)  { left: 4%;  animation-duration:18s; animation-delay: 0s;  width:28px; }
.leaf:nth-child(2)  { left:13%;  animation-duration:24s; animation-delay: 4s;  width:22px; }
.leaf:nth-child(3)  { left:22%;  animation-duration:15s; animation-delay: 7s;  width:40px; }
.leaf:nth-child(4)  { left:32%;  animation-duration:20s; animation-delay: 2s;  width:26px; }
.leaf:nth-child(5)  { left:42%;  animation-duration:27s; animation-delay:10s;  width:18px; }
.leaf:nth-child(6)  { left:50%;  animation-duration:17s; animation-delay:13s;  width:34px; }
.leaf:nth-child(7)  { left:58%;  animation-duration:21s; animation-delay: 1s;  width:24px; }
.leaf:nth-child(8)  { left:67%;  animation-duration:14s; animation-delay: 5s;  width:20px; }
.leaf:nth-child(9)  { left:76%;  animation-duration:22s; animation-delay: 8s;  width:30px; }
.leaf:nth-child(10) { left:88%;  animation-duration:16s; animation-delay: 3s;  width:22px; }
.leaf:nth-child(11) { left:37%;  animation-duration:29s; animation-delay:16s;  width:16px; }
.leaf:nth-child(12) { left:55%;  animation-duration:19s; animation-delay: 6s;  width:32px; }
.leaf:nth-child(13) { left:46%;  animation-duration:23s; animation-delay:18s;  width:20px; }
.leaf:nth-child(14) { left:63%;  animation-duration:25s; animation-delay:11s;  width:14px; }

/* ── Ambient orbs — large blurred blobs that glow through the glass ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  animation: orb-drift ease-in-out infinite;
}

@keyframes orb-drift {
  0%   { transform: translateY(110vh) scale(0.7); opacity: 0; }
  15%  { opacity: 0.50; }
  85%  { opacity: 0.45; }
  100% { transform: translateY(-25vh) scale(1.15); opacity: 0; }
}

.orb:nth-child(15) { width:140px; height:140px; background:rgba(201,113,74,0.70); left:28%; animation-duration:38s; animation-delay: 0s; }
.orb:nth-child(16) { width:110px; height:110px; background:rgba(74,191,187,0.65); left:55%; animation-duration:44s; animation-delay:10s; }
.orb:nth-child(17) { width:100px; height:100px; background:rgba(143,184,154,0.60); left:18%; animation-duration:32s; animation-delay:20s; }
.orb:nth-child(18) { width:120px; height:120px; background:rgba(244,168,152,0.55); left:70%; animation-duration:50s; animation-delay: 5s; }
.orb:nth-child(19) { width: 90px; height: 90px; background:rgba(255,255,255,0.25); left:43%; animation-duration:42s; animation-delay:25s; }

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 720px;
  /* frosted glass panel — ensures readability on any photo */
  background: rgba(20, 10, 5, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 2.5rem 3rem 2rem;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.hero-logo {
  width: 170px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.15), 0 8px 40px rgba(0,0,0,0.3);
  animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,255,255,0.15), 0 8px 40px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0.08), 0 8px 40px rgba(0,0,0,0.3); }
}


.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-pale);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
  margin-bottom: 0.3rem;
  font-size: clamp(3rem, 8vw, 5rem);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terra-pale);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--terra);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 28px var(--terra-glow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s;
}

.btn-primary:hover {
  text-decoration: none;
  background: var(--terra-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--terra-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.25s;
}

.btn-ghost:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: var(--font-body);
}

/* Wave divider */
.wave-top, .wave-bottom {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
}
.wave-bottom { bottom: 0; }
.wave-top    { top: 0; }

/* ═══════════════════════════════════════════════════
   SECTION WRAPPERS
═══════════════════════════════════════════════════ */
.section-body {
  padding: 5rem 0;
  position: relative;
}

.section-body.bg-sand {
  background: var(--sand);
}

.section-body.bg-sage {
  background: var(--sage-pale);
}

.section-header {
  margin-bottom: 3rem;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   QUI SUIS-JE
═══════════════════════════════════════════════════ */
.portrait-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.portrait-frame {
  position: relative;
}

.portrait-frame img,
.portrait-frame .portrait-ph {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 60% 40% 55% 45% / 45% 45% 55% 55%;
  box-shadow: var(--shadow);
  display: block;
}

.portrait-ph {
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bark-light);
  font-size: 2rem;
  gap: 0.5rem;
}

.portrait-ph span { font-size: 0.85rem; font-family: var(--font-body); }

.portrait-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--terra-pale);
  border-radius: 50%;
  z-index: -1;
}

.portrait-accent-2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 60px;
  height: 60px;
  background: var(--turq-pale);
  border-radius: 50%;
  z-index: -1;
}

.club-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1.5rem;
}

.club-tag {
  background: var(--terra-pale);
  color: var(--terra-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  border: 1px solid var(--terra);
}

.quote-pull {
  border-left: 3px solid var(--turq);
  padding: 1rem 1.5rem;
  background: var(--turq-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bark);
}

.quote-pull cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--turq-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.4rem;
  margin-top: 1rem;
}

.formation-item {
  background: var(--cream);
  border-left: 3px solid var(--sage);
  padding: 0.5rem 0.8rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--bark-mid);
  transition: background 0.2s, border-color 0.2s;
}
.formation-item:hover { background: var(--sage-pale); border-color: var(--terra); }

/* ═══════════════════════════════════════════════════
   OSTÉOPATHIE — photo section
═══════════════════════════════════════════════════ */
.osteo-photo-strip {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 2.5rem 0;
}

.definition-card {
  background: rgba(200,234,233,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(74,191,187,0.45);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(74,191,187,0.10), inset 0 1px 0 rgba(255,255,255,0.8);
}

.definition-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--turq-pale);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.definition-card p {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.principle {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  border-top: 4px solid var(--terra);
  border-right: 1px solid rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.75);
  border-left: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 4px 20px rgba(61,43,31,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.principle:nth-child(2) { border-top-color: var(--turq); }
.principle:nth-child(3) { border-top-color: var(--sage); }
.principle:nth-child(4) { border-top-color: var(--terra-pale); border-top-color: #E8956E; }

.principle:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.principle-emoji { font-size: 2rem; margin-bottom: 0.7rem; }
.principle-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Histoire timeline */
.history-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}
.history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terra), var(--turq));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.4rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terra);
  border: 2px solid var(--cream);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--terra);
  margin-bottom: 0.2rem;
}

/* ═══════════════════════════════════════════════════
   POUR QUI
═══════════════════════════════════════════════════ */
.population-mosaic {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.pop-card {
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 1.2rem 0.8rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: 0 4px 16px rgba(61,43,31,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  cursor: default;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  border-bottom: 3px solid transparent;
}
.pop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: var(--sand);
  border-bottom-color: var(--terra);
}

.pop-card:nth-child(2) { border-bottom-color: var(--turq); }
.pop-card:hover:nth-child(2) { border-bottom-color: var(--turq); }

.pop-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.pop-label { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; color: var(--bark-mid); }

/* ─── Accordion ─── */
.accordion { margin: 1rem 0; }

.accordion-item {
  border-radius: 12px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--sand-dark);
}

.accordion-btn {
  width: 100%;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--bark);
  border: none;
  padding: 1rem 1.4rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, color 0.2s;
}

.accordion-btn:hover { background: var(--sand); }
.accordion-btn.open  { background: var(--terra); color: var(--white); }

.accordion-chevron {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.accordion-btn.open .accordion-chevron { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 1.2rem 1.5rem;
  background: rgba(254,251,244,0.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.94rem;
  line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,0.5);
}
.accordion-body.open { display: block; }

/* ═══════════════════════════════════════════════════
   LA SÉANCE
═══════════════════════════════════════════════════ */
.seance-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.seance-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  box-shadow: var(--shadow);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  background: var(--terra);
}

.step:nth-child(2) .step-num { background: var(--turq); }
.step:nth-child(3) .step-num { background: var(--sage); color: var(--bark); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.reactions-banner {
  background: linear-gradient(135deg, var(--terra-pale) 0%, var(--sand) 100%);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.reactions-banner h3 {
  font-family: var(--font-display);
  color: var(--terra-dark);
  margin-bottom: 0.6rem;
}

/* ═══════════════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════════════ */
.tarifs-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.tarif {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.80);
  box-shadow: 0 8px 32px rgba(61,43,31,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}

.tarif:hover {
  border-color: var(--terra);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tarif-icon { font-size: 2.5rem; margin-bottom: 0.7rem; }
.tarif-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-light);
  margin-bottom: 0.4rem;
}

.tarif-price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.tarif-sub { font-size: 0.82rem; color: var(--bark-light); }

.massage-block {
  background: linear-gradient(145deg, #f7f1e8 0%, var(--turq-pale) 100%);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--turq);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.massage-block::after {
  content: '🌍';
  position: absolute;
  right: 2rem;
  top: 2rem;
  font-size: 4rem;
  opacity: 0.2;
}

.massage-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--turq-dark);
  margin-bottom: 1rem;
}

.massage-price-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.massage-price-chip {
  background: var(--white);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--turq-dark);
  box-shadow: var(--shadow-sm);
}

.info-strip {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.93rem;
  color: var(--bark-mid);
  border-left: 3px solid var(--bark-light);
}

.alert-strip {
  background: linear-gradient(135deg, var(--terra-pale), var(--sand));
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--terra-dark);
  font-size: 0.94rem;
  margin: 1rem 0;
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 4px 20px rgba(61,43,31,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.2s;
}
.contact-card:hover { transform: translateX(4px); }

.contact-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-light);
  margin-bottom: 0.2rem;
}

.contact-card-val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bark);
  line-height: 1.4;
}

.contact-card-val a { color: var(--terra); font-weight: 700; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ═══════════════════════════════════════════════════
   SECTION DIVIDERS
═══════════════════════════════════════════════════ */
.divider-svg {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.photo-banner {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: var(--bark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
}
footer strong { color: var(--terra-pale); }
footer a { color: var(--turq-pale); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .principles-row { grid-template-columns: repeat(2, 1fr); }
  .portrait-grid  { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 320px; margin: 0 auto; }
  .seance-split   { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .tarifs-wrap    { grid-template-columns: 1fr; max-width: 320px; }
  .population-mosaic { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .population-mosaic { grid-template-columns: repeat(2, 1fr); }
  .principles-row    { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .nav-inner { padding: 0 1rem; }
  .container { padding: 0 1.2rem; }
  .section-body { padding: 3.5rem 0; }
  .hero { padding-left: 1.2rem; padding-right: 1.2rem; }
}
