/* ============================================================
   AuthentiC Thérapies – Anne Bonvin
   Design: Luxury organic, serif + Jost, sage/cream/gold palette
   ============================================================ */

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

:root {
  --sage: #8A9E84;
  --sage-light: #B5C8B0;
  --sage-dark: #5C7A56;
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --dark: #1C1C1A;
  --dark-soft: #2E2E2B;
  --gold: #C4A054;
  --gold-light: #D4B878;
  --light: #FAF7F2;
  --text-muted: rgba(28,28,26,0.62);
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.section-label.light { color: var(--sage-light); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--sage-light); }
.divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-header .divider { margin: 0 auto 2rem; }
.section-intro { font-size: 0.97rem; color: var(--text-muted); font-weight: 300; }

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--sage-dark); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(28,28,26,0.35);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { color: var(--sage-dark); border-color: var(--sage-dark); }

.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--sage); color: var(--light); }

/* ── GRAIN OVERLAY ──────────────────────────────────────────── */
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(250,247,242,0);
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(28,28,26,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
}
.logo span { color: var(--sage); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.nav-links a:hover { opacity: 1; }
.nav-links a.nav-cta {
  opacity: 1;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--sage);
  color: var(--sage-dark);
  transition: all var(--transition);
}
.nav-links a.nav-cta:hover { background: var(--sage); color: var(--light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--dark); transition: all 0.3s; }
.nav-close { display: none; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--light);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C8DBC4 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #D4B878 0%, transparent 70%);
  bottom: -80px; left: 100px;
  opacity: 0.2;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 3rem 6rem 5rem;
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  display: block;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.8rem;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 420px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.hero-side {
  position: relative;
  z-index: 2;
  padding: 9rem 4rem 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: var(--cream);
  padding: 3rem;
  position: relative;
  max-width: 380px;
  width: 100%;
  border-left: 3px solid var(--gold);
  box-shadow: 24px 24px 0 var(--cream-dark);
}
.hero-card-symbol {
  font-size: 6rem;
  color: rgba(138,158,132,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
}
.hero-card-badge { margin-bottom: 1.5rem; }
.badge-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.badge-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.hero-card-quote {
  border-top: 1px solid rgba(28,28,26,0.1);
  padding-top: 1.2rem;
}
.hero-card-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  z-index: 2;
  opacity: 0.4;
  transition: opacity var(--transition);
}
.scroll-hint:hover { opacity: 0.8; }
.scroll-line { width: 1px; height: 50px; background: var(--dark); }
.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  writing-mode: vertical-rl;
}

/* ── À PROPOS ───────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--cream);
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}
.about-text strong { color: var(--dark); font-weight: 500; }
.book-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.book-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(138,158,132,0.07);
  border-left: 2px solid var(--sage);
}
.book-icon { font-size: 1.2rem; flex-shrink: 0; }
.book-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.book-item strong { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.book-item span { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }
.about-right { padding-top: 1rem; }
.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.about-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pillar {
  padding: 1.3rem;
  border: 1px solid rgba(28,28,26,0.08);
  background: var(--light);
  transition: border-color var(--transition), transform var(--transition);
}
.pillar:hover { border-color: var(--sage); transform: translateY(-2px); }
.pillar-icon { font-size: 1.3rem; display: block; margin-bottom: 0.6rem; }
.pillar h4 { font-size: 0.85rem; font-weight: 500; color: var(--dark); margin-bottom: 0.4rem; line-height: 1.3; }
.pillar p { font-size: 0.78rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* ── MISSION ────────────────────────────────────────────────── */
.mission {
  padding: 6rem 0;
  background: var(--dark-soft);
  position: relative;
  overflow: hidden;
}
.mission-bg { opacity: 0.15; }
.mission .container { position: relative; z-index: 2; text-align: center; }
.mission-text {
  font-size: 1rem;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  line-height: 1.9;
}
.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 2.5rem;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.45); letter-spacing: 0.05em; }

/* ── SERVICES ───────────────────────────────────────────────── */
.services { padding: 7rem 0; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(28,28,26,0.07);
}
.service-card {
  background: var(--light);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
  position: relative;
}
.service-card:hover { background: var(--cream); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(138,158,132,0.15);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.service-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.service-link {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.service-link:hover { color: var(--gold); }

/* ── ORACLES ────────────────────────────────────────────────── */
.oracles, .ouvrages { padding: 12rem 0; background: var(--light); }
.oracles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.oracle-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
  transition: transform var(--transition);
}
.oracle-card:hover { transform: translateY(-4px); }
.oracle-cover {
  font-size: 4rem;
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.oracle-img {
  flex-shrink: 0;
  width: 180px;
  height: 240px;
  object-fit: contain;
  align-self: center;
}
.oracle-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.oracle-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ── TÉMOIGNAGES ────────────────────────────────────────────── */
.testimonials { padding: 7rem 0; background: var(--light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.testi-card {
  padding: 2rem;
  background: var(--cream);
  border-top: 2px solid var(--sage-light);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(138,158,132,0.15);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testi-card p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
}
.testi-card span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--sage-dark);
  font-weight: 500;
  text-transform: uppercase;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact { padding: 7rem 0; background: var(--cream); }
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-item strong { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.contact-item span { font-size: 0.82rem; color: var(--text-muted); }

.contact-form-wrap {
  background: var(--light);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(28,28,26,0.12);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(138,158,132,0.12);
  border-left: 3px solid var(--sage);
  font-size: 0.88rem;
  color: var(--sage-dark);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-inner--simple {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 0;
}

.footer-brand .logo { color: var(--cream); margin-bottom: 0.8rem; display: block; }
.footer-brand p { font-size: 0.85rem; color: rgba(245,240,232,0.4); font-weight: 300; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-contact p { font-size: 0.85rem; color: rgba(245,240,232,0.45); font-weight: 300; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(245,240,232,0.25); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
/* iPad portrait uniquement (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-inner { padding: 1rem 1.2rem; }
  .logo { font-size: 1.05rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.65rem; letter-spacing: 0.1em; }
  .nav-links a.nav-cta { padding: 0.45rem 0.9rem; white-space: nowrap; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 8rem 2rem 3rem; }
  .hero-side { padding: 2rem; justify-content: flex-start; }
  .hero-card { max-width: 100%; }
  .scroll-hint { display: none; }
  .mission-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; z-index: 1100; position: relative; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1050;
    overflow: hidden;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; opacity: 1; letter-spacing: 0.1em; }

  /* Bouton fermeture ✕ dans le menu mobile */
  .nav-close {
    display: none !important;
    position: fixed;
    top: 1.2rem;
    right: 1.4rem;
    z-index: 1200;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--dark);
    line-height: 1;
    padding: 0.5rem;
  }
  .nav-close.visible { display: block !important; }
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .pillars { grid-template-columns: 1fr; }
  .oracles-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 7rem 1.5rem 2rem; }
  .about, .services, .oracles, .testimonials, .contact { padding: 5rem 0; }
  .mission-stats { grid-template-columns: repeat(2, 1fr); }

  /* Carrousel mobile */
  .carousel-wrapper { gap: 0.5rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1rem; flex-shrink: 0; }
  .carousel-slide { padding: 0 0.25rem; }
  .book-card {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.2rem;
    text-align: center;
  }
  .book-img-wrap {
    width: 140px;
    height: 180px;
  }
  .book-details h3 { font-size: 1.3rem; text-align: center; }
  .book-details p { font-size: 0.85rem; text-align: center; word-break: normal; overflow-wrap: break-word; hyphens: none; }
  .book-details .btn-outline-dark { display: block; text-align: center; margin: 0 auto; }
  .carousel-track-container { min-width: 0; overflow: hidden; }
  .book-card { max-width: 100%; box-sizing: border-box; }
  .book-details { width: 100%; min-width: 0; }

  /* Grille 9 livres mobile */
  .oracle-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  .oracle-img {
    width: 140px;
    height: 180px;
  }
}
/* ── CAROUSEL LIVRES ───────────────────────────────────────── */
.oracles { padding: 7rem 0; background: var(--dark-soft); }
.oracles .section-label { color: var(--sage-light); }
.oracles .section-title { color: var(--dark); }
.oracles .section-title em { color: var(--dark); }
.oracles .divider { background: var(--gold); margin: 0 auto 2rem; }

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}
.carousel-track-container {
  overflow: hidden;
  flex: 1;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.book-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: rgba(245,240,232,0.05);
  border-left: 3px solid var(--gold);
  padding: 3rem;
  max-width: 750px;
  margin: 0 auto;
}
.book-img-wrap {
  flex-shrink: 0;
  width: 180px;
  height: 240px;
  background: rgba(245,240,232,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.book-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.book-details p {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.55);
  font-weight: 300;
  line-height: 1.85;
}
.carousel-btn {
  background: none;
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245,240,232,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  padding: 0;
}
.carousel-dot.active { background: var(--gold); }
.carousel-cta {
  text-align: center;
  margin-top: 3rem;
}
/* ── SECTION OUVRAGES (carrousel) ───────────────────────────── */
.ouvrages {
  padding: 10rem 0 8rem;
  background: var(--cream);
}
.ouvrages .section-label { color: var(--sage-light); }
.ouvrages .section-title { color: var(--dark); }
.ouvrages .section-title em { color: var(--dark); }
.ouvrages .divider { margin: 0 auto 3rem; }

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.carousel-track-container { overflow: hidden; flex: 1; }
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide { min-width: 100%; padding: 0 0.5rem; }

.book-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: var(--light);
  border-left: 3px solid var(--gold);
  padding: 3rem;
  max-width: 780px;
  margin: 0 auto;
}
.book-img-wrap {
  flex-shrink: 0;
  width: 180px;
  height: 240px;
  background: var(--cream-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.book-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.book-details p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.btn-outline-dark {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--dark);
  color: var(--dark);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: all var(--transition);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--cream); }

.carousel-btn {
  background: none;
  border: 1px solid rgba(28,28,26,0.2);
  color: var(--dark);
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--sage); border-color: var(--sage); color: var(--light); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(28,28,26,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  padding: 0;
}
.carousel-dot.active { background: var(--gold); }
.carousel-cta { text-align: center; margin-top: 3rem; }

/* ── GRILLE 9 LIVRES ────────────────────────────────────────── */
.ouvrages-grid-section {
  padding: 8rem 0 3rem;
background: var(--light);
}
.ouvrages-grid-section .section-label {
  color: var(--sage-light);
}
.ouvrages-grid-section .section-title {
  color: var(--dark);
}
.ouvrages-grid-section .section-title em {
  color: var(--dark);
}
.ouvrages-grid-section .divider {
  background: var(--gold);
}

/* ── MOBILE BOOKS (iPhone uniquement) ───────────────────────── */
.mobile-books { display: none; }

@media (max-width: 480px) {
  /* Cacher le carrousel sur iPhone */
  .carousel-wrapper,
  .carousel-dots { display: none; }

  /* Afficher les cartes mobiles */
  .mobile-books {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .mobile-book-card {
    background: var(--light);
    border-bottom: 2px solid var(--gold);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s;
    padding-bottom: 0.2rem;
  }

  .mobile-book-card:active { transform: scale(0.98); }

  .mobile-book-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    margin-bottom: 0.9rem;
  }

  .mobile-book-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.3;
    padding: 0 0.6rem 0.5rem;
  }

  .mobile-book-btn {
    display: block;
    width: calc(100% - 1.2rem);
    margin: auto 0.6rem 0.6rem;
    padding: 0.6rem;
    background: none;
    color: var(--sage-dark);
    border: 1px solid var(--sage);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    text-align: center;
    transition: all 0.2s;
  }

  .mobile-book-btn:hover { background: var(--sage); color: var(--light); }
}

/* ── SECTION OUVRAGES (grille 9 livres) ─────────────────────── */
.section-ouvrages {
  padding: 8rem 0;
  background: var(--light);
}
.section-ouvrages .section-label { color: var(--sage-light); }
.section-ouvrages .section-title { color: var(--dark); }
.section-ouvrages .section-title em { color: var(--dark); }
.section-ouvrages .divider { margin: 0 auto 3rem; }

/* ── SECTION ORACLES (carrousel) ────────────────────────────── */
.section-oracles {
  padding: 8rem 0;
  background: var(--cream);
}
.section-oracles .section-label { color: var(--sage-light); }
.section-oracles .section-title { color: var(--dark); }
.section-oracles .section-title em { color: var(--dark); }
.section-oracles .divider { margin: 0 auto 3rem; }
