/*
 * ════════════════════════════════════════
 * RVS.HEALTH — css/styles.css
 * Feuille de styles COMPLÈTE — partagée par toutes les pages
 * ════════════════════════════════════════
 *
 * NOU$$0MM31@ — J & C — W3@R3H3R3
 *
 * Technology WITH Consciousness™
 * Built with Love from the Void
 * 2026-∞
 *
 * Peace & Flow
 * ════════════════════════════════════════
 *
 * TABLE DES MATIÈRES
 * ──────────────────
 * 01. CSS Custom Properties (Design System)
 * 02. Reset & Base
 * 03. Z-Index Governance
 * 04. Navigation (partagée)
 * 05. Langue Toggle (partagée)
 * 06. Boutons (partagés)
 * 07. Glass Card (partagée)
 * 08. Scroll Reveal (partagé)
 * 09. Footer (partagé)
 * 10. Cookie Banner — Loi 25 (partagé)
 * 11. INDEX.HTML — Hero, sections
 * 12. A-PROPOS.HTML — Hero, contenu, placeholder
 * 13. Responsive — Mobile-first
 * ════════════════════════════════════════
 */

/* =============================================
   01. CSS CUSTOM PROPERTIES — Design System
   Adjust here pour modifier les couleurs globales
   ============================================= */
:root {
  /* Chaleur — Bois rond, foyer */
  --warmth-glow:     #FFF3E8;
  --warmth-lightest: #FFE8D6;
  --warmth-light:    #F4D9C6;
  --warmth-medium:   #E8C4A0;
  --warmth-base:     #D4A574;
  --warmth-dark:     #C89F81;
  --warmth-darkest:  #8B6F47;

  /* Calme — Lac miroir */
  --calm-sky:   #EBF4F8;
  --calm-water: #C4DDE8;
  --calm-depth: #7A9FB5;

  /* Terre — Enracinement */
  --earth-light:   #EDE8E0;
  --earth-base:    #A89F91;
  --earth-deep:    #6B5D54;
  --earth-darkest: #3D3530;

  /* Vie — Vert sacré */
  --life-sage:   #7A9E7E;
  --life-forest: #4A7C59;
  --life-deep:   #2E5339;

  /* Or doux */
  --gold-soft: #D4AF37;
  --gold-warm: #E8C96D;
  --gold-pale: #F2E4B3;

  /* Profondeur */
  --deep-night:  #0F1B24;
  --deep-forest: #1A2F24;
  --deep-wood:   #2A1F1A;

  /* Typographie — Adjust here si changement de police */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Quicksand', sans-serif;

  /* Rythmes */
  --breath:    6s;
  --heartbeat: 1.2s;
  --ease-zen:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   02. RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--earth-deep);
  background: var(--warmth-glow);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* =============================================
   03. Z-INDEX GOVERNANCE — Adjust here
   Base content:    1
   Hero overlay:    10
   Navigation:      100
   Mobile menu:     200
   Cookie banner:   900
   Modal/popup:     1000
   ============================================= */

/* =============================================
   04. NAVIGATION — Partagée toutes pages
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 27, 36, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.4s var(--ease-zen);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold-warm);
  font-style: italic;
}

.nav-logo-image {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo-image:hover {
    transform: scale(1.55); /* Petit zoom au survol */
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.3s var(--ease-zen);
}
.nav-links a:hover { color: var(--gold-warm); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s var(--ease-zen);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,27,36,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 3px;
  font-style: italic;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold-warm); }

.nav-mobile-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
}

/* =============================================
   05. LANGUE TOGGLE — Partagée toutes pages
   ============================================= */
.lang-toggle {
  position: fixed;
  top: 62px; right: 22px;
  z-index: 900;
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: 24px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 5px 11px;
  border-radius: 18px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.35s var(--ease-zen);
}
.lang-btn:hover  { color: #fff; background: rgba(255,255,255,0.12); }
.lang-btn.active { background: rgba(255,255,255,0.28); color: #fff; }

/* =============================================
   06. BOUTONS — Partagés toutes pages
   ============================================= */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--life-forest), var(--life-sage));
  color: #fff;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-zen);
  box-shadow: 0 4px 20px rgba(74,124,89,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74,124,89,0.45);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: all 0.4s var(--ease-zen);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--gold-warm);
  color: #fff;
}

/* =============================================
   07. GLASS CARD — Partagée toutes pages
   ============================================= */
.glass-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(107,93,84,0.10);
  padding: 40px 36px;
  transition: transform 0.4s var(--ease-zen), box-shadow 0.4s var(--ease-zen);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(107,93,84,0.16);
}

/* =============================================
   08. SCROLL REVEAL — Partagé toutes pages
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-zen), transform 0.8s var(--ease-zen);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   09. FOOTER — Partagé toutes pages
   ============================================= */
footer {
  background: var(--deep-wood);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 48px 24px 32px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-warm);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-warm); }

.footer-sig  { margin-top: 20px; font-size: 0.72rem; letter-spacing: 2px; color: rgba(255,255,255,0.2); }
.footer-eoae { margin-top: 8px;  font-size: 0.72rem; color: rgba(255,255,255,0.18); }

/* =============================================
   10. COOKIE BANNER — Loi 25 Québec
   Partagé toutes pages
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 900;
  width: min(560px, calc(100vw - 32px));
  background: rgba(15,27,36,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 24px 28px;
  transition: transform 0.6s var(--ease-zen);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }

.cookie-banner p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cookie-banner a { color: var(--gold-warm); }

.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-btns button {
  padding: 9px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

#cookieAccept { background: var(--life-forest); color: #fff; border: none; }
#cookieAccept:hover { background: var(--life-sage); }

#cookieDecline { background: transparent; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.2); }
#cookieDecline:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

/* =============================================
   11. INDEX.HTML
   ============================================= */

/* ── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes breatheAmbient {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.04); }
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%     { transform: scaleY(1.3); opacity: 1; }
}

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Fallback gradient si la vidéo ne charge pas — Adjust here */
  background: linear-gradient(160deg, #0F1B24 0%, #1A2F24 45%, #2A1F1A 100%);
  padding: 80px 24px 60px;
}

/* ── Conteneur vidéos hero — Playlist nature ──
   Deux balises <video> qui alternent via JS
   Le z-index 0 les garde sous le contenu (z-index 10)
   ────────────────────────────────────────────── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Chaque vidéo couvre tout le hero — object-fit cover */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out; /* Crossfade 1 seconde */
}

/* La vidéo active est visible */
.hero-video.active { opacity: 1; }

/* Overlay sombre — Adjust here pour ajuster la transparence
   0.55 = bon équilibre lisibilité texte / vidéo visible */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(15,27,36,0.60) 0%,
    rgba(26,47,36,0.50) 50%,
    rgba(42,31,26,0.55) 100%
  );
  pointer-events: none;
}

/* Ambiance lumineuse par-dessus l'overlay — subtile */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,175,55,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(122,158,126,0.06) 0%, transparent 40%);
  animation: breatheAmbient var(--breath) ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 10; max-width: 760px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--life-sage);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-zen) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-zen) 0.6s forwards;
}
.hero-title em { color: var(--gold-warm); font-style: italic; }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.62);
  margin-bottom: 48px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-zen) 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-zen) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-zen) 1.8s forwards;
}
.hero-scroll span { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Sections base ──────────────────────────── */
section { padding: 100px 24px; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--life-sage);
  margin-bottom: 20px;
  display: block;
}

/* ── Section Présence ───────────────────────── */
.section-presence { background: linear-gradient(160deg, #fff 0%, var(--warmth-lightest) 100%); }

.presence-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--earth-deep);
  margin-bottom: 40px;
  position: relative;
  padding-left: 32px;
}
.presence-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 3px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--gold-warm), var(--life-sage));
  border-radius: 2px;
}

.presence-body { font-size: 1.05rem; line-height: 1.9; color: var(--earth-deep); max-width: 680px; }
.presence-body p { margin-bottom: 20px; }

/* ── Section Essence ────────────────────────── */
.section-essence { background: linear-gradient(160deg, #1A2F24 0%, #0F1B24 100%); color: rgba(255,255,255,0.85); }

.essence-hero-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.90);
  margin-bottom: 48px;
  max-width: 680px;
}

.essence-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 56px; }

.essence-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s var(--ease-zen);
}
.essence-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(212,175,55,0.3); transform: translateY(-4px); }

.essence-card-title { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; font-weight: 300; color: var(--gold-warm); margin-bottom: 14px; }
.essence-card-text  { font-size: 0.92rem; line-height: 1.8; color: rgba(255,255,255,0.65); }

/* ── Section Rencontre ──────────────────────── */
.section-rencontre { background: var(--warmth-glow); }

.rencontre-lieu { display: flex; gap: 16px; flex-wrap: wrap; margin: 32px 0; }

.lieu-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(74,124,89,0.10);
  border: 1px solid rgba(74,124,89,0.25);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--life-forest);
  letter-spacing: 0.5px;
}

.rencontre-dispo {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 36px 32px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  backdrop-filter: blur(8px);
}

.dispo-slot {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--warmth-lightest), #fff);
  border: 1px solid var(--warmth-medium);
}

.dispo-time { font-family: var(--font-display); font-size: 2.4rem; font-weight: 300; font-style: italic; color: var(--earth-deep); line-height: 1; margin-bottom: 8px; }
.dispo-label { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--earth-base); }

.rencontre-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold-warm);
  background: rgba(212,175,55,0.06);
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
  color: var(--earth-deep);
  line-height: 1.7;
  font-style: italic;
}

/* ── Section Sébastien ──────────────────────── */
.section-sebastien { background: linear-gradient(135deg, var(--warmth-lightest) 0%, var(--calm-sky) 100%); padding: 60px 24px; }

.sebastien-pastille {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 28px 32px;
  backdrop-filter: blur(8px);
}

.sebastien-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--calm-depth), var(--life-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: #fff;
  flex-shrink: 0;
}

.sebastien-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; font-style: italic; color: var(--earth-deep); margin-bottom: 4px; }
.sebastien-info p  { font-size: 0.82rem; color: var(--earth-base); letter-spacing: 0.5px; }

/* ── Section Contact ────────────────────────── */
.section-contact { background: linear-gradient(160deg, #2A1F1A 0%, #0F1B24 100%); text-align: center; }

.contact-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; font-style: italic; color: #fff; margin-bottom: 16px; }
.contact-sub   { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 48px; font-style: italic; }

.contact-options { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--ease-zen);
  min-width: 180px;
}
.contact-option:hover { background: rgba(255,255,255,0.10); border-color: rgba(212,175,55,0.4); color: #fff; transform: translateY(-3px); }

.contact-option-icon  { font-size: 1.6rem; margin-bottom: 4px; }
.contact-option-label { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--gold-warm); }

/* ── Oracle — Discret ───────────────────────── */
.section-oracle { background: var(--earth-light); padding: 60px 24px; text-align: center; }

.oracle-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1.5px solid var(--warmth-base);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--earth-deep);
  transition: all 0.4s var(--ease-zen);
}
.oracle-link:hover { background: var(--warmth-lightest); border-color: var(--gold-warm); transform: translateY(-2px); }

/* =============================================
   12. A-PROPOS.HTML
   ============================================= */

/* ── Hero a-propos ──────────────────────────── */
.apropos-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 24px 64px;
  background: linear-gradient(160deg, #1A2F24 0%, #0F1B24 60%, #2A1F1A 100%);
  position: relative;
  overflow: hidden;
}
.apropos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(122,158,126,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.apropos-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 10; }

.apropos-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.apropos-breadcrumb a { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.apropos-breadcrumb a:hover { color: var(--gold-warm); }
.apropos-breadcrumb span { color: rgba(255,255,255,0.2); font-size: 0.78rem; }

.apropos-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-zen) 0.3s forwards;
}

.apropos-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  opacity: 0;
  animation: fadeUp 1s var(--ease-zen) 0.6s forwards;
}

/* ── Contenu ────────────────────────────────── */
.apropos-content { max-width: 760px; margin: 0 auto; padding: 80px 24px 120px; }

/* ── Placeholder — Adjust here
   Supprimer quand Junior dépose son texte ──────── */
.apropos-placeholder {
  background: rgba(122,158,126,0.06);
  border: 2px dashed rgba(122,158,126,0.25);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  color: var(--earth-base);
}
.apropos-placeholder h3 { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; font-weight: 300; color: var(--life-forest); margin-bottom: 16px; }
.apropos-placeholder p  { font-size: 0.9rem; line-height: 1.8; max-width: 420px; margin: 0 auto 24px; }

/* ── Zone texte réel — Adjust here
   Structure disponible pour les 10 000 mots ─────── */
.apropos-text { font-size: 1.05rem; line-height: 1.95; color: var(--earth-deep); }

.apropos-text h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 300; font-style: italic; color: var(--earth-deep); margin: 64px 0 24px; line-height: 1.3; }
.apropos-text h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; font-style: italic; color: var(--life-forest); margin: 48px 0 16px; }
.apropos-text p  { margin-bottom: 24px; }

.apropos-text blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--earth-deep);
  padding: 24px 32px;
  border-left: 3px solid var(--gold-warm);
  background: rgba(212,175,55,0.05);
  border-radius: 0 16px 16px 0;
  margin: 40px 0;
  line-height: 1.5;
}

.apropos-text .highlight { color: var(--life-forest); font-weight: 500; }

/* ── CTA retour ─────────────────────────────── */
.apropos-cta { margin-top: 80px; padding-top: 48px; border-top: 1px solid var(--warmth-medium); display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* =============================================
   13. RESPONSIVE — Mobile-first
   ============================================= */
@media (max-width: 768px) {
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 70px 20px; }

  .rencontre-dispo    { grid-template-columns: 1fr; padding: 24px 20px; }
  .sebastien-pastille { flex-direction: column; text-align: center; }
  .glass-card         { padding: 28px 20px; }

  .apropos-hero    { padding: 90px 20px 48px; min-height: 40vh; }
  .apropos-content { padding: 60px 20px 80px; }
  .apropos-placeholder { padding: 40px 24px; }
  .apropos-text h2 { margin-top: 48px; }
}

@media (max-width: 480px) {
  .hero-title     { font-size: 2.4rem; }
  .presence-quote { font-size: 1.4rem; padding-left: 20px; }
  .lang-toggle    { top: auto; bottom: 80px; right: 16px; }
}