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

:root {
  --white:       #ffffff;
  --bg:          #ffffff;
  --text:        #454F5E;
  --text-dark:   #0F172A;
  --text-soft:   #7a8694;
  --brand:       #680c8a;
  --brand-hover: #5511F8;
  --cta-bg:      #680c8a;
  --cta-hover:   #4a0865;
  --border:      rgba(109, 109, 197, 0.20);
  --max:         860px;
  --bg-image:    url('images/background.png');
}

html { scroll-behavior: smooth; }

/* Fixed background layer (mobile parallax fallback) */
.bg-fixed {
  display: none;
}

@media (max-width: 820px) {
  .bg-fixed {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}

/* ─── HEADER / NAV ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(104,12,138,0.07);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--brand);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--brand);
  padding: 7px 16px;
  border-radius: 40px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--brand-hover);
  background: rgba(101, 40, 247, 0.06);
}
.main-nav a.active {
  color: var(--text-dark);
  position: relative;
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 1.5px;
  background: var(--brand);
  border-radius: 1px;
  opacity: 0.5;
}
.main-nav .nav-cta {
  margin-left: 16px;
}
.main-nav .nav-cta a {
  background: var(--cta-bg);
  color: var(--white);
  padding: 9px 24px;
  font-size: 13px;
  letter-spacing: 0.03em;
}
.main-nav .nav-cta a:hover {
  background: var(--cta-hover);
  color: var(--white);
}

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s;
}

/* Mobile menu overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--brand);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--brand-hover); }
.mobile-nav .nav-cta-mobile {
  background: var(--cta-bg);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 18px;
}
.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: 'Playfair Display', serif;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  animation: fadeUp 0.8s ease both;
}

/* Hero split: text + aside */
.hero-split {
  display: flex;
  gap: 64px;
  align-items: center;
  text-align: left;
  max-width: 1060px;
}
.hero-split .hero-content {
  flex: 1;
  min-width: 0;
}
.hero-split .hero-content .hero-eyebrow { justify-content: flex-start; }
.hero-split .hero-content .hero-heading { text-align: left; }
.hero-split .hero-content .hero-body { margin-left: 0; margin-right: 0; }
.hero-split .hero-aside {
  width: 320px;
  flex-shrink: 0;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 0.5px;
  background: var(--brand);
  opacity: 0.4;
}
.eyebrow-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.8;
}

/* Headings */
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--text-dark);
  margin-bottom: 36px;
}

/* Body paragraphs */
.hero-body {
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-body p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 12px;
}
.hero-body p:last-child { margin-bottom: 0; }
.hero-body .opening {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

/* Separator */
.hero-separator {
  width: 1px;
  height: 32px;
  background: rgba(104, 12, 138, 0.2);
  margin: 32px auto;
}

/* Distance note */
.hero-note {
  font-size: 14px;
  font-style: italic;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.hero-note span {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 8px 2px;
  opacity: 0.4;
}

/* ─── CTA BUTTON ─── */
.btn-cta {
  display: inline-block;
  text-decoration: none;
  background: var(--cta-bg);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 16px 44px;
  border-radius: 4px;
  transition: background 0.22s, transform 0.15s;
  box-shadow: 0 2px 16px rgba(104,12,138,0.22);
}
.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(104,12,138,0.30);
}

/* ─── PAGE CONTENT (inner pages) ─── */
.page-section {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.page-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
  pointer-events: none;
  z-index: 0;
}
.page-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}

.page-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.page-body p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.page-body p:last-child { margin-bottom: 0; }

/* Reason list */
.reason-list {
  list-style: none;
  margin: 24px 0;
}
.reason-list li {
  font-size: 17px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.reason-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.5;
}

/* Step cards */
.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
}
.step-number {
  position: absolute;
  top: -20px;
  right: -8px;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(104, 12, 138, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.step-desc {
  font-size: 17px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* About layout */
.about-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.about-portrait {
  width: 280px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid var(--border);
  object-fit: cover;
}

/* Testimonial cards */
.testimonial-card {
  position: relative;
  padding: 32px;
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
}
.testimonial-card .quote-mark {
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.15;
  line-height: 1;
  font-style: normal;
}

/* Marquee */
.marquee-strip {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-word {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--brand);
  opacity: 0.4;
}
.marquee-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.2;
}

/* Price block */
.price-block {
  text-align: center;
  margin: 40px 0;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 4px;
}
.price-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

/* Disclaimer */
.disclaimer {
  font-size: 14px;
  font-style: italic;
  color: var(--text-soft);
  margin: 32px 0;
  line-height: 1.8;
}

/* Contact form */
.contact-form { max-width: 500px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  width: 100%;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--brand);
}
.form-textarea { resize: vertical; }
.btn-submit {
  display: inline-block;
  background: var(--cta-bg);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 16px 44px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
  box-shadow: 0 2px 16px rgba(104,12,138,0.22);
  margin-top: 12px;
}
.btn-submit:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

/* Legal page */
.legal-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-body a {
  color: var(--brand);
  text-decoration: none;
}
.legal-body a:hover { color: var(--brand-hover); }

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border);
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 28px 40px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  pointer-events: none;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
}
.footer-links a {
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--brand);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand-hover); }
.footer-copy {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: color 0.2s;
}
.footer-social:hover { color: var(--brand-hover); }

/* ─── CALENDLY INLINE EMBED ─── */
.r-calendly {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}
.r-calendly .calendly-inline-widget {
  width: 100%;
}
@media (max-width: 768px) {
  .r-calendly .calendly-inline-widget {
    height: 450px !important;
  }
}

/* ─── AUDIO PLAYER ─── */
.audio-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
}
.audio-card .audio-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(104, 12, 138, 0.06);
}
.audio-card .audio-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.audio-card .audio-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.audio-card .audio-desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}
.audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.audio-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(104,12,138,0.25);
}
.audio-play-btn:hover {
  background: var(--cta-hover);
  transform: scale(1.05);
}
.audio-progress {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.audio-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--brand);
  border-radius: 2px;
  transition: width 0.3s linear;
}
.audio-time {
  font-size: 13px;
  color: var(--text-soft);
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ─── HEADER MINI PLAYER ─── */
.header-mini-player {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  padding: 4px 14px 4px 4px;
  border-radius: 40px;
  background: rgba(104, 12, 138, 0.06);
  border: 1px solid rgba(104, 12, 138, 0.1);
  opacity: 0;
  transform: translateX(-12px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header-mini-player.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.header-mini-player__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.header-mini-player__btn:hover {
  background: var(--cta-hover);
  transform: scale(1.08);
}
.header-mini-player__title {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--brand);
  white-space: nowrap;
  letter-spacing: 0.01em;
  opacity: 0.7;
}
/* Pulsing dot when playing */
.header-mini-player__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.header-mini-player.playing .header-mini-player__pulse {
  opacity: 1;
  animation: miniPulse 1.5s ease-in-out infinite;
}
@keyframes miniPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ─── LAYOUTS ─── */

/* Side-by-side layout (portrait + text, etc.) */
.split-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  text-align: left;
  max-width: 860px;
  width: 100%;
}
.split-layout .split-visual {
  width: 280px;
  flex-shrink: 0;
}
.split-layout .split-visual img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border);
  object-fit: cover;
}
.split-layout .split-text {
  flex: 1;
  min-width: 0;
}
.split-layout .split-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Three-column row (steps, features) */
.three-col {
  display: flex;
  gap: 28px;
  text-align: left;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.three-col .col {
  flex: 1;
  padding: 32px;
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
}
.three-col .col-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.15;
  margin-bottom: 12px;
  line-height: 1;
}
.three-col .col-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.three-col .col p {
  font-size: 16px;
  line-height: 1.75;
}

/* Two-column quotes */
.two-col-quotes {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}
.two-col-quotes .quote-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  padding: 32px;
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--border);
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  position: relative;
}
.two-col-quotes .quote-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.15;
  line-height: 1;
  font-style: normal;
  display: block;
  margin-bottom: 8px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SCROLL ANIMATIONS (canonical) ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-slide-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-slide-left.visible,
.reveal-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── SÉANCES SECTION ─── */

.s-section {
  position: relative;
  overflow: hidden;
}
.s-section--textured {
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.s-section--textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.76);
  pointer-events: none;
  z-index: 0;
}
.s-section--white {
  background: var(--white);
}
.s-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 48px;
}

.s-opening {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-opening .s-section__inner {
  max-width: 720px;
}
.s-opening__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.s-opening__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--brand);
  opacity: 0.7;
  margin-bottom: 48px;
}
.s-opening__text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.s-divider {
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.25;
  margin: 0 auto;
}

.s-approach {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.s-approach__left {
  flex: 1;
  min-width: 0;
}
.s-approach__right {
  width: 380px;
  flex-shrink: 0;
}
.s-approach__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.6;
  margin-bottom: 24px;
}
.s-approach__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.3;
}
.s-approach__text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.s-reasons {
  border-left: 2px solid rgba(104,12,138,0.12);
  padding-left: 32px;
}
.s-reasons__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.s-reasons__list {
  list-style: none;
}
.s-reasons__list li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 16px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.s-reasons__list li:last-child { border-bottom: none; }
.s-reasons__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.35;
}
.s-reasons__list.visible li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.s-reasons__list.visible li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.s-reasons__list.visible li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
.s-reasons__list.visible li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.4s; }

.s-closing {
  text-align: center;
}
.s-closing .s-section__inner {
  max-width: 640px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.s-closing__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 48px;
  position: relative;
}
.s-closing__quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.25;
  margin: 0 auto 32px;
}

/* ─── DÉROULEMENT (uses hero + three-col from global) ─── */

/* ─── QUI SUIS-JE SECTION ─── */

.q-section {
  position: relative;
  overflow: hidden;
}
.q-section--textured {
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.q-section--textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.76);
  pointer-events: none;
  z-index: 0;
}
.q-section--white {
  background: var(--white);
}
.q-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 48px;
}

.q-opening {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-opening .q-section__inner {
  max-width: 720px;
}
.q-opening__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.q-opening__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--brand);
  opacity: 0.7;
}

.q-portrait {
  display: flex;
  gap: 72px;
  align-items: center;
}
.q-portrait__image {
  width: 340px;
  flex-shrink: 0;
}
.q-portrait__image img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 683 / 1024;
}
.q-portrait__text {
  flex: 1;
  min-width: 0;
}
.q-portrait__name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.q-portrait__role {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.55;
  margin-bottom: 32px;
}
.q-portrait__text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 14px;
}

.q-philosophy .q-section__inner {
  max-width: 760px;
}
.q-pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.55;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  padding: 0 20px;
}
.q-pull-quote::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.25;
  margin: 0 auto 36px;
}
.q-philosophy__body {
  columns: 2;
  column-gap: 48px;
}
.q-philosophy__body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
  break-inside: avoid;
}

.q-closing {
  text-align: center;
}
.q-closing .q-section__inner {
  max-width: 640px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.q-closing__note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 44px;
}
.q-closing__note::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.25;
  margin: 0 auto 32px;
}

/* ─── TÉMOIGNAGES SECTION ─── */

.t-section {
  position: relative;
  overflow: hidden;
}
.t-section--textured {
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.t-section--textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.76);
  pointer-events: none;
  z-index: 0;
}
.t-section--white {
  background: var(--white);
}
.t-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 48px;
}

.t-opening {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-opening .t-section__inner {
  max-width: 720px;
}
.t-opening__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.t-opening__sub {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}
.t-opening__note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-soft);
}

.t-quotes {
  padding-top: 60px;
  padding-bottom: 60px;
}
.t-quote {
  max-width: 580px;
  margin-bottom: 80px;
  position: relative;
}
.t-quote:last-child { margin-bottom: 0; }

.t-quote--left { margin-right: auto; margin-left: 0; }
.t-quote--right { margin-left: auto; margin-right: 0; }

.t-quote__mark {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
  opacity: 0.08;
  position: absolute;
  top: -36px;
  pointer-events: none;
  user-select: none;
}
.t-quote--left .t-quote__mark { left: -8px; }
.t-quote--right .t-quote__mark { right: -8px; }

.t-quote__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-dark);
  position: relative;
}

.t-quote__line {
  width: 32px;
  height: 1px;
  background: var(--brand);
  opacity: 0.18;
  margin-top: 28px;
}
.t-quote--right .t-quote__line { margin-left: auto; }

.t-closing {
  text-align: center;
}
.t-closing .t-section__inner {
  max-width: 640px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.t-closing__note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 44px;
}
.t-closing__note::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.25;
  margin: 0 auto 32px;
}

/* ─── RÉSERVER SECTION ─── */

.r-section {
  position: relative;
  overflow: hidden;
}
.r-section--textured {
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.r-section--textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.76);
  pointer-events: none;
  z-index: 0;
}
.r-section--white {
  background: var(--white);
}
.r-section--soft {
  background: #faf8fc;
}
.r-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 48px;
}

.r-opening {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.r-opening .r-section__inner { max-width: 720px; }
.r-opening__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.r-opening__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--brand);
  opacity: 0.7;
  margin-bottom: 48px;
}
.r-opening__text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.r-price {
  text-align: center;
}
.r-price .r-section__inner { max-width: 640px; padding: 72px 48px; }
.r-price__amount {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 6px;
}
.r-price__label {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 32px;
}
.r-price__body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 12px;
}
.r-price__divider {
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.2;
  margin: 32px auto;
}
.r-price__disclaimer {
  font-size: 14px;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 40px;
}

.r-guide__intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.r-guide__intro-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.r-guide__intro p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
}

.r-steps {
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
}
.r-step {
  flex: 1;
  padding: 32px 28px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}
.r-step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(104, 12, 138, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.r-step__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.r-step__number {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.3;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.r-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.r-step__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.r-tips {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.r-tips__left {
  flex: 1;
  min-width: 0;
}
.r-tips__right {
  width: 360px;
  flex-shrink: 0;
  padding: 36px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--border);
}
.r-tips__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}
.r-tip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.r-tip-item:last-child { margin-bottom: 0; }
.r-tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(104, 12, 138, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.r-tip-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.r-tip-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.r-tip-text strong {
  color: var(--text-dark);
  font-weight: 600;
}

.r-checklist__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.r-check-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.r-check-item:last-child { margin-bottom: 0; }
.r-check-mark {
  color: var(--brand);
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ─── CONTACT SECTION ─── */

.c-section {
  position: relative;
  overflow: hidden;
}
.c-section--textured {
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.c-section--textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.76);
  pointer-events: none;
  z-index: 0;
}
.c-section--white {
  background: var(--white);
}
.c-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 48px;
}

.c-opening {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-opening .c-section__inner {
  max-width: 680px;
}
.c-opening__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.c-opening__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--brand);
  opacity: 0.7;
}

.c-split {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.c-split__left {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
}
.c-split__right {
  width: 440px;
  flex-shrink: 0;
}

.c-info__text p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}
.c-info__divider {
  width: 40px;
  height: 1px;
  background: var(--brand);
  opacity: 0.2;
  margin: 36px 0;
}
.c-info__detail {
  margin-bottom: 20px;
}
.c-info__detail-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.55;
  margin-bottom: 6px;
}
.c-info__detail-value {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--text-dark);
}
.c-info__detail-value a {
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}
.c-info__detail-value a:hover {
  border-color: var(--brand);
}

.c-form__row {
  display: flex;
  gap: 16px;
}
.c-form__group {
  margin-bottom: 24px;
  flex: 1;
}
.c-form__label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.c-form__input,
.c-form__textarea {
  width: 100%;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text);
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 0;
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.c-form__input:focus,
.c-form__textarea:focus {
  border-color: var(--brand);
}
.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.5;
  font-style: italic;
}
.c-form__textarea {
  resize: vertical;
  min-height: 120px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px;
  margin-top: 4px;
}
.c-form__textarea:focus {
  border-color: var(--brand);
}
.c-form__submit {
  margin-top: 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 820px) {
  /* On mobile, the .bg-fixed div handles the background.
     Remove bg-image from sections so the fixed div shows through the overlay. */
  .hero,
  .page-section,
  .site-footer,
  .s-section--textured,
  .q-section--textured,
  .t-section--textured,
  .r-section--textured,
  .c-section--textured {
    background-image: none;
    background-attachment: scroll;
  }

  .header-inner { padding: 0 24px; }
  .main-nav { display: none; }
  .burger { display: flex; }

  .header-mini-player__title { display: none; }
  .header-mini-player__pulse { display: none; }
  .header-mini-player { padding: 4px; margin-left: 12px; }

  .hero { padding: 60px 24px; min-height: auto; }
  .hero-split { flex-direction: column; gap: 40px; text-align: center; }
  .hero-split .hero-content .hero-eyebrow { justify-content: center; }
  .hero-split .hero-content .hero-heading { text-align: center; }
  .hero-split .hero-aside { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-heading { font-size: 30px; }
  .hero-body p { font-size: 15.5px; }
  .hero-body .opening { font-size: 17px; }

  .page-section { padding: 60px 24px; }
  .page-heading { font-size: 28px; }

  .about-layout { flex-direction: column; }
  .about-portrait { width: 100%; max-width: 320px; }

  .split-layout { flex-direction: column; gap: 32px; }
  .split-layout .split-visual { width: 100%; max-width: 280px; margin: 0 auto; }

  .three-col { flex-direction: column; }

  .two-col-quotes .quote-card { flex: 1 1 100%; }

  .step-card { padding: 28px; }
  .step-number { font-size: 6rem; }

  .site-footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Séances */
  .s-section__inner { padding: 64px 24px; }
  .s-opening__heading { font-size: 32px; }
  .s-approach { flex-direction: column; gap: 48px; }
  .s-approach__right { width: 100%; }
  .s-reasons { border-left: none; padding-left: 0; border-top: 2px solid rgba(104,12,138,0.12); padding-top: 32px; }

  /* Qui suis-je */
  .q-section__inner { padding: 64px 24px; }
  .q-opening__heading { font-size: 32px; }
  .q-portrait { flex-direction: column; gap: 40px; text-align: center; }
  .q-portrait__image { width: 220px; margin: 0 auto; }
  .q-portrait__role { margin-bottom: 24px; }
  .q-philosophy__body { columns: 1; }

  /* Témoignages */
  .t-section__inner { padding: 64px 24px; }
  .t-opening__heading { font-size: 32px; }
  .t-quote { max-width: 100%; }
  .t-quote--left,
  .t-quote--right { margin-left: 0; margin-right: 0; }
  .t-quote--right .t-quote__mark { right: auto; left: -8px; }
  .t-quote--right .t-quote__line { margin-left: 0; }
  .t-quote__text { font-size: 18px; }
  .t-quote__mark { font-size: 72px; top: -28px; }

  /* Réserver */
  .r-section__inner { padding: 64px 24px; }
  .r-opening__heading { font-size: 32px; }
  .r-steps { flex-direction: column; }
  .r-tips { flex-direction: column; gap: 32px; }
  .r-tips__right { width: 100%; }

  /* Contact */
  .c-section__inner { padding: 64px 24px; }
  .c-opening__heading { font-size: 32px; }
  .c-split { flex-direction: column; gap: 48px; }
  .c-split__right { width: 100%; }
  .c-form__row { flex-direction: column; gap: 0; }
}
