/* ============================================================
   SHEYMA GHERABLI — Main Stylesheet v3.1
   ============================================================ */

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {
  --cream:         #f1e6d9;
  --warm:          #ffddb7;
  --off-white:     #faf8f5;
  --white:         #ffffff;
  --burgundy:      #611044;
  --burgundy-dark: #420b2e;
  --amber:         #e98b1f;
  --mauve:         #b4769e;
  --grey:          #7d7d7d;
  --dark:          #1a1018;
  --text:          #1a1018;
  --muted:         #6b5b5b;
  --border:        rgba(97,16,68,.12);

  --r:    20px;
  --r-lg: 32px;
  --r-xl: 48px;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', 'Helvetica Neue', sans-serif;

  --nav-h: 70px;
  --shadow-sm: 0 2px 8px rgba(26,16,24,.06);
  --shadow-md: 0 8px 32px rgba(26,16,24,.10);
  --shadow-lg: 0 24px 64px rgba(26,16,24,.14);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  cursor: auto;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: var(--mauve); border-radius: 2px; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
}

.display {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--text);
}
.display em { font-style: italic; color: var(--burgundy); }

.section-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 1.2rem;
}

p.lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

/* ── HERO NAME TYPOGRAPHY ── */
.hero-name-block { position: relative; line-height: 1; }
.hero-prenom { display: block; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; font-size: clamp(4rem, 7vw, 8rem); color: #611044; margin-bottom: -0.5rem; }
.hero-nom { display: block; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: clamp(3rem, 5vw, 6rem); color: #7d7d7d; letter-spacing: -0.02em; }
.hero-name {
  display: flex;
  flex-direction: row;
  align-items: stretch;   /* logo s'étire à la même hauteur que le bloc texte */
  gap: 2rem;
  line-height: 1;
  margin-bottom: 1.8rem;
}
.hero-name-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-name-first {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 8vw, 9rem);
  color: #611044;
  letter-spacing: -.03em;
  line-height: .95;
}
.hero-name-last {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #3a2a36;
  margin-top: 1rem;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ── SCROLL REVEAL — stronger ── */
.reveal {
  opacity: 0;
  transform: translateY(56px);
  transition:
    opacity .9s cubic-bezier(.25,.46,.45,.94),
    transform .9s cubic-bezier(.25,.46,.45,.94);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }
.d4 { transition-delay: .48s; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .9rem 2rem;
  border-radius: 100px;
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.btn-solid { background: var(--burgundy); color: white; }
.btn-solid:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(97,16,68,.25); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(44,31,40,.2); }
.btn-ghost:hover { border-color: var(--burgundy); color: var(--burgundy); }
.btn-amber { background: var(--amber); color: white; }
.btn-amber:hover { background: #d07a18; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(233,139,31,.35); }
.btn--primary { background: var(--burgundy); color: white; border-radius: 100px; }
.btn--outline { background: transparent; border: 1.5px solid var(--border); border-radius: 100px; }
.btn--sm { padding: .45rem 1.2rem; font-size: .72rem; }
.btn--nav {
  font-size: .75rem; font-weight: 500; letter-spacing: .05em;
  background: var(--burgundy); color: white;
  border-radius: 100px; padding: .55rem 1.4rem; transition: all .3s;
}
.btn--nav:hover { background: var(--burgundy-dark); transform: translateY(-1px); }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5vw;
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(32px) saturate(1.8);
  border-bottom: 1px solid rgba(97,16,68,.08);
  box-shadow: 0 2px 16px rgba(26,16,24,.06);
  transition: box-shadow .4s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(26,16,24,.12); }

.nav__inner {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; overflow: visible; }
.nav-logo-img { height: 54px; width: auto; opacity: 1; background: none !important; border: none !important; box-shadow: none !important; }
.nav-logo-img.visible { opacity: 1; }
.nav-brand-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: #611044; font-weight: 400; }

.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__link {
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  color: var(--muted); text-decoration: none; transition: color .25s;
  position: relative; padding-bottom: 2px;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--burgundy);
  transition: width .28s cubic-bezier(.4,0,.2,1);
}
.nav__link:hover { color: var(--burgundy); }
.nav__link:hover::after { width: 100%; }
.nav__link.is-active { color: var(--burgundy); }
.nav__link.is-active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .75rem; }

.lang-switcher { display: flex; }
.lang-btn {
  font-size: .7rem; font-weight: 500; letter-spacing: .08em;
  background: none; border: 1.5px solid var(--border);
  border-radius: 100px; padding: .35rem .9rem;
  color: var(--grey); transition: all .25s; cursor: pointer;
}
.lang-btn:hover { border-color: var(--burgundy); color: var(--burgundy); }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: .5rem; cursor: pointer;
}
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .3s; }

/* ============================================================
   7. VIDEO FILIGRANE INFRASTRUCTURE
   ============================================================ */
.video-filigrane {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.video-filigrane video {
  width: 100%;
  height: 115%; /* extra height for parallax headroom */
  object-fit: cover;
  opacity: .10;
  will-change: transform;
  transform: translateY(0);
  transition: none;
}

/* Global video filigrane — fixed behind sections */
.video-bg-fixed {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.video-bg-fixed video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .07;
}

/* ============================================================
   8. HERO
   ============================================================ */
#hero, .hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vh 5vw;
  position: relative; z-index: 2;
  overflow: visible;
}
.hero-logo {
  position: absolute;
  top: 42%;
  left: 66%;
  transform: translateY(-50%);
  height: 216px;
  width: auto;
  z-index: 5;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--amber);
}

.hero-sub {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.hero-body {
  font-size: .95rem; font-weight: 300; line-height: 1.8;
  color: var(--muted); max-width: 520px; margin-bottom: 2.5rem;
}

/* Vrai logo PNG hero — même hauteur que le bloc nom, reveal gauche→droite */
.hero-lotus-img {
  width: auto; max-width: 150px; height: 100%;
  object-fit: contain; object-position: center;
  flex-shrink: 0; display: block;
  clip-path: inset(0 100% 0 0);
  animation: lotusReveal 2s ease forwards .4s;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right { position: relative; overflow: visible; }
.hero-amber-bar {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 4px; background: var(--amber); z-index: 3;
}
.hero-collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 60% 40%;
}
.hero-collage img,
.hero-collage .img-placeholder {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hc1 { grid-row: 1/3; border-radius: 16px; overflow: hidden; }
.hc2 { border-radius: 16px; overflow: hidden; }
.hc2 img { object-fit: cover; object-position: center top; }
.hc3 { border-radius: 16px; overflow: hidden; }

/* Photo placeholder */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, #e8d5c4 100%);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder svg { opacity: .2; }

/* ============================================================
   9. BESOINS / TOPICS
   ============================================================ */
#besoins, .besoins {
  padding: 8rem 5vw;
  background: var(--cream);
}
.besoins-inner {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 5rem; align-items: start;
}
.tags-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; padding-top: .5rem; }
.tag {
  flex: 0 0 calc(25% - 0.75rem);
  font-size: 1rem; font-weight: 400;
  padding: 1.5rem 1rem;
  border-radius: var(--r);
  border: 1.5px solid rgba(97,16,68,.15);
  background: white;
  color: var(--text);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  line-height: 1.3;
  position: relative; overflow: hidden;
  min-height: 80px;
  transition: background .28s, border-color .28s, box-shadow .28s, transform .28s;
  cursor: default;
}
.tag:hover {
  background: var(--burgundy); color: white;
  border-color: var(--burgundy);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(97,16,68,.2);
}
.tag-title {
  display: block; text-align: center; font-size: 1rem;
  transition: opacity .25s, transform .25s;
}
.tag-desc {
  position: absolute; inset: 0; padding: .5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  font-size: .75rem; line-height: 1.45; font-style: italic; text-align: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s, transform .25s;
  pointer-events: none; overflow: hidden;
}
.tag:hover .tag-title { opacity: 0; transform: translateY(-6px); }
.tag:hover .tag-desc   { opacity: 1; transform: translateY(0); }

/* ============================================================
   10. PARALLAX INTRO (stats)
   ============================================================ */
.parallax-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: linear-gradient(160deg, #fdf5ee 0%, var(--cream) 100%);
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 2rem;
}
.pi-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vh 5vw; gap: 2rem;
}
.pi-stats-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.pi-stat {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  padding: 0 2rem;
  text-align: center;
}
.pi-stat:first-child { padding-left: 0; }
.pi-stat strong {
  font-family: var(--font-title); font-style: italic; font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  color: var(--burgundy); line-height: 1; letter-spacing: -.02em;
}
.pi-stat span {
  font-family: var(--font-body); font-size: .65rem; font-weight: 300;
  color: var(--muted); letter-spacing: .15em; text-transform: uppercase;
}
.pi-stat-sep {
  width: 1px; height: 48px;
  background: rgba(97,16,68,.2);
  flex-shrink: 0;
}
.pi-images { position: relative; overflow: hidden; }
.pi-img-a {
  position: absolute; bottom: 5%; left: 10%;
  width: 55%; aspect-ratio: 3/4;
  border-radius: var(--r-xl); object-fit: cover; object-position: center center;
  transform: scale(1); will-change: transform;
}
.pi-img-b {
  position: absolute; bottom: 5%; right: 5%;
  width: 48%; aspect-ratio: 4/5;
  border-radius: var(--r-lg); object-fit: cover;
  box-shadow: 0 32px 80px rgba(0,0,0,.14); will-change: transform;
}

/* ============================================================
   11. ACCOMPAGNEMENT
   ============================================================ */
#accompagnement {
  padding: 9rem 5vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem;
  align-items: center;
  background: var(--cream);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 2rem;
}
.how-collage {
  position: relative;
  width: 100%;
  height: 580px;
  flex-shrink: 0;
}
.how-photo-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: auto;
  max-height: 520px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}
.how-photo-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: auto;
  max-height: 380px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  z-index: 2;
}
.acc-steps { margin-top: 2.5rem; display: flex; flex-direction: column; }
.acc-step {
  display: grid; grid-template-columns: 48px 1fr; gap: 1.5rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--border); align-items: start;
}
.acc-step:first-child { border-top: 1px solid var(--border); }
.step-num { font-family: var(--font-title); font-size: 1.8rem; font-style: italic; color: var(--mauve); opacity: .55; line-height: 1; }
.step-title { font-size: .9rem; font-weight: 500; color: var(--text); margin-bottom: .3rem; }
.step-desc { font-size: .85rem; font-weight: 300; line-height: 1.75; color: var(--muted); }

/* ============================================================
   12. ABOUT (index snippet + about page) — BEIGE palette
   ============================================================ */
#a-propos, .about-section {
  padding: 9rem 5vw;
  background: #f1e6d9;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem;
  align-items: center;
  position: relative; overflow: hidden;
}
.about-bg-word {
  position: absolute; right: -1rem; bottom: -5rem;
  font-family: var(--font-title); font-size: 18rem; font-style: italic;
  color: rgba(97,16,68,.04); pointer-events: none;
  white-space: nowrap; line-height: 1; user-select: none;
}
#a-propos .section-label, .about-section .section-label { color: var(--amber); }
#a-propos h2.display, .about-section h2.display,
#a-propos .display, .about-section .display { color: var(--text); }
#a-propos h2.display em, .about-section h2.display em,
#a-propos .display em, .about-section .display em { color: var(--burgundy); }
#a-propos p.lead, .about-section p.lead { color: var(--muted); }

.about-copy { display: flex; flex-direction: column; gap: 1.5rem; position: relative; z-index: 1; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--r-xl); display: block; will-change: transform;
}
.about-extra-img {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 42%; aspect-ratio: 1;
  object-fit: cover; object-position: center;
  border-radius: var(--r-lg);
  border: 5px solid #f1e6d9;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

/* ============================================================
   13. TESTIMONIALS — HORIZONTAL CAROUSEL
   ============================================================ */
#temoignages, .temoignages {
  padding: 8rem 0 8rem 5vw;
  background: var(--off-white);
  overflow: hidden;
}
.temo-header { margin-bottom: 3rem; padding-right: 5vw; }

.temo-carousel-wrap { position: relative; }
.temo-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 5vw;
  padding-bottom: .5rem;
  cursor: grab;
}
.temo-track::-webkit-scrollbar { display: none; }
.temo-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.temo-card {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 420px);
  scroll-snap-align: start;
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: .5rem;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
}
.temo-card:hover { transform: translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,.08); }

.temo-q {
  font-family: var(--font-title); font-size: 3.5rem; line-height: .7;
  color: var(--mauve); opacity: .25; margin-bottom: 1rem; display: block;
}
.temo-text {
  font-family: var(--font-title); font-size: 1rem; font-style: italic;
  line-height: 1.72; color: var(--text); flex: 1;
}
.temo-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; }
.temo-author { font-size: .72rem; font-weight: 500; color: var(--muted); }
.temo-stars { color: var(--amber); font-size: .65rem; letter-spacing: 3px; }

/* Carousel controls */
.temo-controls {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 2rem; padding-right: 5vw;
}
.temo-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text);
  transition: all .25s; font-size: 1rem;
}
.temo-btn:hover { background: var(--burgundy); border-color: var(--burgundy); color: white; }

/* ============================================================
   14. FAQ
   ============================================================ */
#faqs, .faq-section {
  padding: 9rem 5vw;
  background: var(--cream);
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  margin: 2rem;
  display: grid; grid-template-columns: 5fr 7fr; gap: 6rem;
  align-items: start;
}
.faq-left { position: sticky; top: 90px; }
.faq-left h2 { margin-bottom: 1.5rem; }
.faq-left p.lead { font-size: .95rem; margin-bottom: 2rem; }
.faq-logo {
  height: 80px; width: auto;
  display: block; margin: 0 auto 1rem;
  opacity: 1;
}
.faq-bg-fleur {
  position: absolute; top: 0; right: -100px;
  width: 500px; opacity: 0.08;
  pointer-events: none; z-index: 0;
  transform-origin: center;
  animation: floatFleur 14s ease-in-out infinite;
}

details { border-bottom: 1px solid var(--border); }
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; padding: 1.6rem 0; cursor: pointer;
  font-size: .9rem; font-weight: 500; color: var(--text);
  gap: 1.5rem; transition: color .25s;
}
summary:hover { color: var(--burgundy); }
summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 100px;
  border: 1.5px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--burgundy); font-weight: 300;
  transition: all .3s; line-height: 0;
}
details[open] .faq-icon {
  background: var(--burgundy); border-color: var(--burgundy);
  color: white; transform: rotate(45deg);
}
.faq-answer {
  font-size: .875rem; font-weight: 300; line-height: 1.82;
  color: var(--muted); padding-bottom: 1.6rem; max-width: 540px;
}

/* ============================================================
   15. CONTACT
   ============================================================ */
#contact, .contact-section {
  background: var(--cream);
  padding: 9rem 5vw;
  position: relative; overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 2rem;
}
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem;
  align-items: start; position: relative; z-index: 1;
}
.contact-left .section-label { color: var(--amber); }
.contact-left h2.display, .contact-left .display { color: var(--text); }
.contact-left h1.display { color: var(--burgundy); }
.contact-left h1.display em { color: var(--burgundy-dark); font-style: italic; }
.contact-left h2.display em, .contact-left .display em { color: var(--burgundy); }
.contact-left p.lead { color: var(--muted); font-size: .95rem; margin-top: 1.5rem; }
.contact-details { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; }
.c-detail { display: flex; align-items: center; gap: 1rem; }
.c-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(97,16,68,.1); display: flex;
  align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0;
}
.c-text { font-size: .84rem; color: var(--muted); font-weight: 300; }
.c-text strong { display: block; color: var(--text); font-weight: 500; margin-bottom: .1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-field { display: flex; flex-direction: column; gap: .4rem; }
.f-field > label:not(.f-check-label) { font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.f-field input, .f-field select, .f-field textarea {
  background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--r); padding: .85rem 1.1rem;
  color: var(--text); font-family: var(--font-body);
  font-size: .875rem; font-weight: 300; outline: none; transition: all .25s; width: 100%;
}
.f-field input::placeholder, .f-field textarea::placeholder { color: rgba(26,16,24,.3); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  border-color: var(--burgundy); background: white;
  box-shadow: 0 0 0 3px rgba(97,16,68,.12);
}
.f-field select option { background: white; color: var(--text); }
.f-field textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  background: var(--burgundy); color: white;
  padding: 1rem 2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: .78rem; font-weight: 500; letter-spacing: .06em;
  border: none; cursor: pointer; transition: all .3s; margin-top: .5rem;
}
.btn-submit:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(97,16,68,.35); }
.form-notice { font-size: .75rem; color: var(--muted); line-height: 1.6; }
.form-notice a { color: var(--burgundy); text-decoration: underline; }

/* Custom RGPD checkbox */
.f-check-label {
  display: flex; align-items: flex-start; gap: .75rem;
  cursor: pointer; font-size: .78rem; line-height: 1.6;
  color: var(--muted); font-weight: 300;
  position: relative;
}
.f-check-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.f-check-box {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1.5px solid rgba(97,16,68,.3);
  border-radius: 5px; background: transparent;
  display: flex; align-items: center; justify-content: center;
  margin-top: .15rem; transition: all .2s;
}
.f-check-label input:checked ~ .f-check-box {
  background: var(--burgundy); border-color: var(--burgundy);
}
.f-check-box::after { content: ''; display: none; }
.f-check-label input:checked ~ .f-check-box::after {
  display: block; width: 5px; height: 9px;
  border: 1.5px solid white; border-top: none; border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* ============================================================
   16. SESSIONS PAGE
   ============================================================ */
.sessions-hero {
  padding: calc(var(--nav-h) + 5rem) 5vw 5rem;
  background: var(--off-white); text-align: center;
}
.sessions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; padding: 4rem 5vw; background: var(--off-white);
}
.session-card {
  background: var(--cream); border-radius: var(--r-lg); padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  cursor: pointer;
}
.session-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(97,16,68,.14);
}
.session-card--featured { background: var(--burgundy); color: white; }
.session-card--featured .session-price,
.session-card--featured p { color: rgba(255,255,255,.8); }
.session-card--featured .session-title { color: white; }
.session-badge { font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); display: inline-block; margin-bottom: .5rem; }
.session-title { font-family: var(--font-title); font-size: 1.5rem; color: var(--text); margin-bottom: .5rem; }
.session-price { font-family: var(--font-title); font-size: 2.2rem; color: var(--burgundy); font-weight: 400; }
.session-duration { font-size: .72rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.session-desc { font-size: .875rem; font-weight: 300; line-height: 1.75; color: var(--muted); flex: 1; }
.session-card--featured .session-desc { color: rgba(255,255,255,.6); }

.process-section { padding: 6rem 5vw; background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; margin-top: 3rem; }
.process-step { text-align: center; }
.process-num { font-family: var(--font-title); font-size: 4rem; font-style: italic; color: var(--mauve); opacity: .35; line-height: 1; display: block; margin-bottom: 1rem; }
.process-step h3 { font-size: 1rem; font-weight: 500; color: var(--text); margin-bottom: .5rem; }
.process-step p { font-size: .875rem; font-weight: 300; line-height: 1.75; color: var(--muted); }

/* Booking section — warm beige instead of dark */
.booking-section {
  padding: 6rem 5vw;
  background: var(--warm);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 2rem;
}
.booking-section .section-label { color: var(--amber); }
.booking-section .display { color: var(--text); }
.booking-section .display em { color: var(--burgundy); }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; align-items: start; }
.booking-intro p { color: var(--muted); font-size: .9rem; line-height: 1.8; margin-top: 1rem; }

.mini-calendar {
  background: white; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.cal-month-name { font-family: var(--font-title); font-size: 1rem; font-style: italic; color: var(--text); }
.cal-nav-btn {
  background: none; border: 1px solid var(--border); border-radius: 8px;
  color: var(--muted); width: 32px; height: 32px; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  transition: all .2s; font-size: .9rem;
}
.cal-nav-btn:hover { border-color: var(--amber); color: var(--amber); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: .5rem; }
.cal-weekday { text-align: center; font-size: .6rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: .4rem 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 300; color: rgba(26,16,24,.3); border-radius: 8px; cursor: default; transition: all .2s; }
.cal-day.available { color: var(--burgundy); cursor: pointer; background: rgba(97,16,68,.10); font-weight: 500; border: 1.5px solid rgba(97,16,68,.18); }
.cal-day.available:hover { background: rgba(233,139,31,.15); color: var(--amber); }
.cal-day.selected { background: var(--amber); color: white; }
.cal-day.past { opacity: .3; }
.cal-day.empty { background: none; }
.time-slots { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.time-slot { font-size: .75rem; padding: .5rem 1rem; border-radius: 8px; background: white; border: 1px solid var(--border); color: var(--text); cursor: pointer; transition: all .2s; }
.time-slot:hover { border-color: var(--amber); color: var(--amber); }
.time-slot.selected { background: var(--amber); border-color: var(--amber); color: white; }

.booking-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.booking-form .f-field input, .booking-form .f-field select, .booking-form .f-field textarea {
  background: white; border: 1px solid var(--border); border-radius: var(--r);
  padding: .85rem 1.1rem; color: var(--text); font-family: var(--font-body);
  font-size: .875rem; font-weight: 300; outline: none; transition: all .25s; width: 100%;
}
.booking-form .f-field input:focus, .booking-form .f-field select:focus, .booking-form .f-field textarea:focus { border-color: var(--amber); }
.booking-form .f-field label { font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.booking-selection-summary { padding: 1rem 1.2rem; background: rgba(233,139,31,.08); border: 1px solid rgba(233,139,31,.25); border-radius: var(--r); font-size: .8rem; color: var(--text); display: none; }
.booking-selection-summary.show { display: block; }

/* ============================================================
   17. FOOTER
   ============================================================ */
footer {
  background: #420b2e !important;
  padding: 0 5vw;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: 1rem;
}
.footer-logo {
  color: white !important; text-decoration: none;
  display: flex; align-items: center;
}
.footer-logo img {
  height: 36px; width: auto;
  filter: none;
}
footer p { font-size: .7rem; color: rgba(255,255,255,.6) !important; margin: 0; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .72rem; color: rgba(255,255,255,.7) !important; text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: white !important; }

/* ============================================================
   18. ABOUT PAGE SPECIFICS
   ============================================================ */
.about-hero-page {
  padding: calc(var(--nav-h) + 4rem) 5vw 0;
  background: #f1e6d9;
}
.about-values-section {
  padding: 7rem 5vw;
  background: #faf8f5;
}
.about-cta-section {
  padding: 6rem 5vw;
  background: var(--cream);
  text-align: center;
}

/* ============================================================
   19. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 2rem; left: 2rem; right: 2rem;
  max-width: 520px;
  background: var(--dark); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 1.5rem;
  z-index: 500;
  transform: translateY(200%); transition: transform .5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner { display: flex; flex-direction: column; gap: 1.2rem; }
.cookie-banner__text p { font-size: .78rem; color: rgba(244,237,228,.45); line-height: 1.7; }
.cookie-banner__text a { color: rgba(244,237,228,.6); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .75rem; justify-content: flex-end; }

/* ============================================================
   20. FAB — supprimé
   ============================================================ */
.fab { display: none; }

/* ============================================================
   21. VALUE CARDS (about.php)
   ============================================================ */
.value-card {
  background: #faf8f5;
  padding: 1.8rem;
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
  transition: box-shadow .3s ease, transform .3s ease;
}
.values-grid .value-card { border-radius: 16px !important; overflow: hidden; }
.value-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 28px; height: 28px;
  border-top: 1.5px solid rgba(97,16,68,.3);
  border-right: 1.5px solid rgba(97,16,68,.3);
  transition: border-color .3s;
}
.value-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 28px;
  border-bottom: 1.5px solid rgba(97,16,68,.3);
  border-left: 1.5px solid rgba(97,16,68,.3);
  transition: border-color .3s;
}
.value-card:hover::before, .value-card:hover::after {
  border-color: rgba(97,16,68,.7);
}
.value-card:hover {
  box-shadow: 0 8px 28px rgba(97,16,68,.09);
  transform: translateY(-3px);
}

/* ============================================================
   22. BOOKING MODAL
   ============================================================ */
html.modal-open,
html.modal-open body { overflow: hidden; }

.booking-modal {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  background: rgba(26,16,24,.55);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  overflow: hidden;
}
.booking-modal.open { opacity: 1; pointer-events: all; }
.booking-modal__inner {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 3rem;
  width: 100%; max-width: 680px;
  max-height: 85vh; overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.booking-modal.open .booking-modal__inner { transform: translateY(0); }
.booking-modal__close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; font-size: 1.3rem;
  color: var(--muted); cursor: pointer; line-height: 1;
  transition: color .2s;
}
.booking-modal__close:hover { color: var(--text); }
.booking-modal__title { font-family: var(--font-title); font-size: 1.8rem; margin-bottom: 1.8rem; color: var(--text); }
.booking-modal__title em { color: var(--burgundy); font-style: italic; }

/* Session type selector in modal */
.bm-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: .75rem; margin-bottom: 2rem; }
.bm-type {
  padding: 1rem; border-radius: var(--r);
  border: 1.5px solid var(--border); background: white;
  cursor: pointer; text-align: left; transition: all .2s;
}
.bm-type:hover, .bm-type.selected { border-color: var(--burgundy); background: rgba(97,16,68,.04); }
.bm-type__name { font-size: .85rem; font-weight: 500; color: var(--text); display: block; }
.bm-type__price { font-family: var(--font-title); font-size: 1.1rem; color: var(--burgundy); display: block; margin-top: .25rem; }

/* Price display */
.bm-price-display {
  background: var(--cream); border-radius: var(--r);
  padding: 1rem 1.5rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; transition: opacity .3s;
}
.bm-price-display.show { opacity: 1; }
.bm-price-display__amount { font-family: var(--font-title); font-size: 2rem; color: var(--burgundy); }
.bm-price-display__label { font-size: .8rem; color: var(--muted); }

/* Stripe button */
.btn-stripe {
  background: var(--burgundy); color: white;
  padding: 1rem 2.5rem; border-radius: 100px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 500; letter-spacing: .05em;
  border: none; cursor: pointer; transition: all .3s;
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 1rem; width: 100%; justify-content: center;
}
.btn-stripe:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(97,16,68,.25); }
.btn-stripe:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ============================================================
   23. ANIMATIONS KEYFRAMES
   ============================================================ */
@keyframes drawLotus {
  from { stroke-dashoffset: 300; }
  to   { stroke-dashoffset: 0; }
}
@keyframes lotusAppear {
  to { opacity: 1; }
}
@keyframes lotusOscillate {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}
@keyframes organicRotate {
  0%, 100% { transform: rotate(-3deg) scale(1); }
  50%       { transform: rotate(3deg) scale(1.02); }
}
@keyframes lotusReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes floatFleur {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-15px) rotate(2deg); }
}

/* ============================================================
   24. FILIGRANE FLEUR (global — toutes pages)
   ============================================================ */
.fili-fleur {
  position: fixed;
  bottom: -50px; right: -80px;
  width: 550px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  animation: floatFleur 12s ease-in-out infinite;
  will-change: transform;
}

/* ============================================================
   ILLUSTRATIONS
   ============================================================ */
.illus { position:absolute; opacity:0; transform:translateX(200px); transition:opacity 1.5s ease-out, transform 1.5s ease-out; pointer-events:none; z-index:10; }
.illus.show { opacity:1; transform:translateX(0); }

/* ============================================================
   21. RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  /* ── Nav mobile ── */
  .nav__links {
    display: none;
  }
  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(250,248,245,.98);
    backdrop-filter: blur(24px) saturate(1.8);
    padding: 1.8rem 6vw 2.2rem;
    gap: 0;
    border-bottom: 1px solid rgba(97,16,68,.12);
    box-shadow: 0 12px 40px rgba(26,16,24,.10);
    z-index: 199;
    list-style: none;
    animation: navSlideDown .22s cubic-bezier(.25,.46,.45,.94) forwards;
  }
  .nav__links--open li {
    border-bottom: 1px solid rgba(97,16,68,.07);
  }
  .nav__links--open li:last-child {
    border-bottom: none;
  }
  .nav__links--open .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: .95rem;
    letter-spacing: .06em;
  }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav__hamburger { display: flex; }
  .nav__hamburger span { transition: transform .28s ease, opacity .28s ease; }
  .nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── Illus hero → hors-écran sur mobile, on les masque ── */
  #hero .illus { display: none; }

  /* ── Layout ── */
  #hero, .hero { grid-template-columns: 1fr; }
  .hero-right { height: 60vw; position: relative; }
  .parallax-intro { grid-template-columns: 1fr; }
  .pi-images { height: 60vw; }
  .besoins-inner { grid-template-columns: 1fr; gap: 3rem; }
  #accompagnement, #a-propos, .about-section, .contact-layout { grid-template-columns: 1fr; gap: 4rem; }
  #faqs, .faq-section { grid-template-columns: 1fr; gap: 3rem; margin: 1rem; }
  .faq-left { position: static; }
  .how-collage { height: 320px; }
  .how-photo-main { width: 100%; max-height: 260px; }
  .how-photo-secondary { display: none; }
  .booking-layout { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .about-extra-img { display: none; }
  #accompagnement { border-radius: 0; margin-top: 0; }
}

@media (max-width: 960px) {
  .booking-modal__inner { padding: 2rem 1.5rem; border-radius: var(--r-lg); }
  .bm-types { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .f-row { grid-template-columns: 1fr; }
  .sessions-grid { grid-template-columns: 1fr; }
  .tag { flex: 0 0 calc(50% - 0.5rem); }
  #faqs, .faq-section { margin: 0; border-radius: 0; }
  .hero-name { gap: 1rem; align-items: center; }
  .hero-lotus-img { height: 90px !important; width: auto; }
  .hero-name-first { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-name-last { font-size: clamp(1.2rem, 5vw, 2rem); }
  .hero-lotus-img { height: 90px; }
  .pi-stats-row { flex-wrap: wrap; gap: 1.5rem; }
  .pi-stat-sep { display: none; }
  .pi-stat { padding: 0; }
  .temo-card { width: min(85vw, 380px); }
}
