/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --primary:   #1C1917;
  --secondary: #141410;
  --cta:       #CA8A04;
  --cta-light: #D4A017;
  --bg:        #FAFAF9;
  --text:      #0C0A09;
  --muted:     #78716C;
  --cream:     #F5F0E8;
  --borderl:   rgba(12,10,9,.07);
  --borderg:   rgba(202,138,4,.12);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--cta); outline-offset: 3px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: -.02em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cta); text-decoration: none; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 72px;
  background: rgba(12,10,9,.92);
  backdrop-filter: blur(32px) saturate(1.5);
  border-bottom: 1px solid var(--borderg);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--bg); text-decoration: none;
}

/* WP menu reset */
.site-nav .nav-menu {
  display: flex; gap: 48px; list-style: none;
  margin: 0; padding: 0;
}
.site-nav .nav-menu a {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(250,250,249,.45); text-decoration: none; transition: color .3s;
}
.site-nav .nav-menu a:hover,
.site-nav .nav-menu .current-menu-item > a { color: var(--cta); }

.nav-cta {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  padding: 11px 30px; border: 1px solid rgba(202,138,4,.5);
  color: var(--cta); text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--cta); color: var(--primary); border-color: var(--cta); }

/* ═══════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════ */
.btn-gold {
  display: inline-block; padding: 16px 44px;
  background: var(--cta); color: var(--primary);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; position: relative; overflow: hidden;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: transform .3s;
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cta-light); transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.btn-gold:hover { transform: translateY(-2px); color: var(--primary); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span, .btn-gold > *:not(::before) { position: relative; z-index: 1; }

.btn-ghost {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; background: none; border: none; cursor: pointer;
  border-bottom: 1px solid rgba(12,10,9,.2); padding-bottom: 2px;
  font-family: 'Inter', sans-serif;
  transition: color .3s, border-color .3s;
}
.btn-ghost:hover { color: var(--cta); border-color: var(--cta); }

.btn-border-dark {
  display: inline-block; padding: 16px 40px;
  border: 1px solid rgba(12,10,9,.3); color: var(--text);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; transition: background .3s, color .3s;
  font-family: 'Inter', sans-serif;
  min-height: 44px; display: inline-flex; align-items: center;
}
.btn-border-dark:hover { background: var(--text); color: var(--bg); }

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb {
  padding: 100px 72px 0;
  font-size: 11px; letter-spacing: .05em; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--cta); }
.breadcrumb span { margin: 0 8px; opacity: .4; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--secondary);
  border-top: 1px solid var(--borderg);
  padding: 56px 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.foot-logo {
  font-family: 'Playfair Display', serif;
  font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--bg);
}
.foot-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.foot-links a {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250,250,249,.25); text-decoration: none; transition: color .3s;
}
.foot-links a:hover { color: var(--cta); }
.foot-copy { font-size: 11px; color: rgba(250,250,249,.18); }

/* ═══════════════════════════════════════════
   HOMEPAGE — HERO
═══════════════════════════════════════════ */
.home body { background: var(--primary); color: var(--bg); }

.cur {
  width: 8px; height: 8px;
  background: var(--cta); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transition: transform .2s ease, width .3s ease, height .3s ease;
}
.cur-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(202,138,4,.4); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transition: border-color .3s;
}
.cur.hovered { transform: scale(3); }
.cur-ring.hovered { transform: scale(1.5); border-color: rgba(202,138,4,.8); }

@media (hover: hover) and (pointer: fine) { .home body { cursor: none; } }

#canvas-bg {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; opacity: .7;
}

.home .site-nav {
  background: transparent;
  border-bottom: none;
  transition: all .6s cubic-bezier(.16,1,.3,1);
}
.home .site-nav.solid {
  padding: 18px 72px;
  background: rgba(12,10,9,.88);
  backdrop-filter: blur(32px) saturate(1.5);
  border-bottom: 1px solid rgba(202,138,4,.1);
}
.home .nav-logo { opacity: 0; }
.home .site-nav .nav-menu a { opacity: 0; }
.home .nav-cta { opacity: 0; }

.hero {
  height: 100vh; min-height: 700px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 72px;
  position: relative; overflow: hidden; z-index: 1;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; letter-spacing: .45em; text-transform: uppercase;
  color: var(--cta); margin-bottom: 36px; overflow: hidden;
}
.hero-eyebrow-line { display: block; width: 32px; height: 1px; background: var(--cta); opacity: .6; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(46px, 5.5vw, 84px);
  font-weight: 400; line-height: 1.05; letter-spacing: -.02em;
  color: var(--bg); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--cta); }
.hero-sub {
  font-size: 14px; line-height: 1.9; font-weight: 300;
  color: rgba(250,250,249,.45); max-width: 400px; margin-bottom: 52px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; opacity: 0; }

.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
}
.book-wrapper {
  position: relative; perspective: 1200px; perspective-origin: 50% 50%;
  width: 520px; height: 360px;
}
.book-floater { width: 100%; height: 100%; filter: drop-shadow(0 32px 60px rgba(0,0,0,.72)) drop-shadow(0 8px 20px rgba(202,138,4,.13)); will-change: transform; }
.book-flipper { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; will-change: transform; }
.book-face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.book-face-front { background: center/contain no-repeat; }
.book-face-back  { background: center/contain no-repeat; transform: rotateY(180deg); }
.book-info {
  position: absolute; bottom: -56px; left: 50%; transform: translateX(-50%);
  text-align: center; white-space: nowrap;
  transition: all .5s cubic-bezier(.16,1,.3,1);
}
.book-info-edition {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--cta); display: block; margin-bottom: 4px;
}
.book-info-price { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--bg); }
.book-hint {
  position: absolute; top: -36px; left: 50%; transform: translateX(-50%);
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(250,250,249,.3);
  display: flex; align-items: center; gap: 8px;
  animation: hintPulse 2.5s ease-in-out infinite;
}
.book-hint::before, .book-hint::after { content: ''; display: block; width: 20px; height: 1px; background: rgba(202,138,4,.3); }
@keyframes hintPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

.hero-scroll {
  position: absolute; bottom: 44px; left: 72px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; opacity: 0;
}
.hero-scroll span { font-size: 9px; letter-spacing: .4em; text-transform: uppercase; color: rgba(250,250,249,.25); }
.scroll-bar { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--cta), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ── STATS ── */
.stats {
  position: relative; z-index: 1;
  background: rgba(20,18,15,.95);
  border-top: 1px solid rgba(202,138,4,.08);
  border-bottom: 1px solid rgba(202,138,4,.08);
  padding: 64px 72px;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(202,138,4,.08); }
.stat:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 400; line-height: 1; color: var(--cta); margin-bottom: 12px; }
.stat-label { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,250,249,.3); }

/* ── SECTIONS ── */
section.reveal { opacity: 0; transform: translateY(60px); }
.ch-tag { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--cta); margin-bottom: 20px; }
.ch-title { font-family: 'Playfair Display', serif; font-size: clamp(32px,3.5vw,52px); font-weight: 400; line-height: 1.15; color: var(--text); margin-bottom: 28px; }
.ch-title em { font-style: italic; }
.ch-body { font-size: 14px; line-height: 2; color: var(--muted); font-weight: 300; }
.ch-body p + p { margin-top: 20px; }
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px,2.5vw,36px); font-weight: 400; font-style: italic;
  line-height: 1.45; color: var(--text); padding-left: 32px; position: relative;
}
.pull-quote::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--cta); }

/* ── MANIFESTE ── */
.manifeste { position: relative; z-index: 1; background: var(--bg); padding: 160px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: center; }

/* ── FEATURES ── */
.features { position: relative; z-index: 1; background: var(--primary); padding: 140px 72px; }
.features-header { text-align: center; margin-bottom: 80px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(202,138,4,.08); max-width: 1100px; margin: 0 auto; }
.feat { background: var(--primary); padding: 56px 48px; transition: background .4s; }
.feat:hover { background: rgba(202,138,4,.04); }
.feat-num { font-family: 'Playfair Display', serif; font-size: 13px; color: var(--cta); letter-spacing: .2em; margin-bottom: 24px; }
.feat-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; color: var(--bg); margin-bottom: 14px; line-height: 1.25; }
.feat-desc { font-size: 13px; line-height: 1.85; color: rgba(250,250,249,.35); font-weight: 300; }

/* ── FABRICATION ── */
.fabrication { position: relative; z-index: 1; background: var(--cream); padding: 140px 72px; }
.fab-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.fab-item { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(12,10,9,.07); }
.fab-item:first-child { border-top: 1px solid rgba(12,10,9,.07); }
.fab-num { font-family: 'Playfair Display', serif; font-size: 11px; color: var(--cta); letter-spacing: .2em; flex-shrink: 0; padding-top: 2px; }
.fab-text-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.fab-text-desc { font-size: 13px; line-height: 1.8; color: var(--muted); font-weight: 300; }
.fab-premium-card { background: var(--primary); padding: 56px 52px; position: relative; overflow: hidden; }
.fab-premium-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(202,138,4,.08) 0%, transparent 65%); }
.fab-premium-eyebrow { font-size: 9px; letter-spacing: .4em; text-transform: uppercase; color: var(--cta); margin-bottom: 24px; display: block; }
.fab-premium-title { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; line-height: 1.2; color: var(--bg); margin-bottom: 32px; }
.fab-premium-title em { font-style: italic; color: var(--cta); }
.fab-premium-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; padding: 0; }
.fab-premium-list li { font-size: 13px; font-weight: 300; color: rgba(250,250,249,.45); display: flex; align-items: center; gap: 12px; }
.fab-premium-list li::before { content: ''; width: 16px; height: 1px; background: var(--cta); flex-shrink: 0; }

/* ── TÉMOIGNAGES ── */
.temoignages { position: relative; z-index: 1; background: var(--bg); padding: 140px 72px; overflow: hidden; }
.temoignages::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(12,10,9,.07); }
.temo-header { text-align: center; margin-bottom: 80px; }
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 1100px; margin: 0 auto; }
.temo { background: var(--bg); padding: 52px 44px; border: 1px solid rgba(12,10,9,.06); display: flex; flex-direction: column; gap: 28px; transition: border-color .3s, box-shadow .3s; }
.temo:hover { border-color: rgba(202,138,4,.2); box-shadow: 0 8px 32px rgba(202,138,4,.06); }
.temo-quote { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; font-style: italic; line-height: 1.65; color: var(--text); flex: 1; }
.temo-quote::before { content: '\201C'; color: var(--cta); margin-right: 2px; }
.temo-quote::after  { content: '\201D'; color: var(--cta); margin-left: 2px; }
.temo-meta { display: flex; flex-direction: column; gap: 4px; }
.temo-name { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--text); }
.temo-role { font-size: 11px; color: var(--muted); font-weight: 300; }
.temo-mark { width: 24px; height: 1px; background: var(--cta); opacity: .6; }

/* ── ÉDITIONS ── */
.editions { position: relative; z-index: 1; background: var(--cream); padding: 140px 72px; }
.editions-header { text-align: center; margin-bottom: 80px; }
.editions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 1100px; margin: 0 auto; }
.ed { padding: 0; overflow: hidden; perspective: 1000px; }
.ed-light { background: var(--bg); border: 1px solid rgba(12,10,9,.07); }
.ed-dark  { background: var(--primary); }
.ed-photo-wrap { width: 100%; height: 340px; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.ed-light .ed-photo-wrap { background: var(--cream); }
.ed-dark  .ed-photo-wrap { background: #111; }
.ed-photo { width: 100%; height: 100%; background-size: contain; background-position: center; background-repeat: no-repeat; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.ed:hover .ed-photo { transform: scale(1.06); }
.ed-content { padding: 52px 56px 64px; }
.tilt-card { transform-style: preserve-3d; transition: transform .15s ease; }
.ed-badge { display: inline-block; font-size: 9px; letter-spacing: .35em; text-transform: uppercase; padding: 6px 14px; border: 1px solid; margin-bottom: 36px; }
.ed-light .ed-badge { color: var(--muted); border-color: rgba(12,10,9,.15); }
.ed-dark  .ed-badge { color: var(--cta); border-color: rgba(202,138,4,.35); }
.ed-name { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 400; line-height: 1.1; margin-bottom: 20px; }
.ed-light .ed-name { color: var(--text); }
.ed-dark  .ed-name { color: var(--bg); }
.ed-desc { font-size: 13px; line-height: 1.9; font-weight: 300; margin-bottom: 40px; }
.ed-light .ed-desc { color: var(--muted); }
.ed-dark  .ed-desc { color: rgba(250,250,249,.4); }
.ed-list { list-style: none; margin-bottom: 48px; padding: 0; }
.ed-list li { font-size: 12px; padding: 11px 0; border-bottom: 1px solid; display: flex; align-items: center; gap: 14px; }
.ed-light .ed-list li { color: var(--muted); border-color: rgba(12,10,9,.07); }
.ed-dark  .ed-list li { color: rgba(250,250,249,.35); border-color: rgba(255,255,255,.06); }
.ed-list li::before { content: ''; width: 18px; height: 1px; background: var(--cta); flex-shrink: 0; }
.ed-price { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 400; margin-bottom: 36px; }
.ed-light .ed-price { color: var(--text); }
.ed-dark  .ed-price { color: var(--cta); }

/* ── 30 ANS ── */
.ed-30ans { position: relative; overflow: hidden; max-width: 1100px; margin: 2px auto 0; background: #0C0A09; display: grid; grid-template-columns: 1fr 2fr; }
.ed-30ans::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 40% 80% at 20% 50%, rgba(202,138,4,.07) 0%, transparent 60%); pointer-events: none; }
.ed-30ans-photo { background: #111; display: flex; align-items: center; justify-content: center; padding: 40px; min-height: 280px; }
.ed-30ans-photo img { width: 100%; max-width: 200px; filter: drop-shadow(0 16px 40px rgba(202,138,4,.2)); }
.ed-30ans-content { padding: 56px 64px; display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.ed-30ans-info { flex: 1; min-width: 200px; }
.ed-30ans-actions { flex-shrink: 0; text-align: right; }
.ed-30ans-badge { display: inline-block; font-size: 9px; letter-spacing: .35em; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(202,138,4,.35); color: var(--cta); margin-bottom: 20px; }
.ed-30ans-name { font-family: 'Playfair Display', serif; font-size: clamp(24px,2.5vw,36px); font-weight: 400; line-height: 1.15; color: var(--bg); margin-bottom: 14px; }
.ed-30ans-name em { font-style: italic; color: var(--cta); }
.ed-30ans-desc { font-size: 13px; line-height: 1.9; font-weight: 300; color: rgba(250,250,249,.35); max-width: 380px; }
.ed-30ans-price { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; color: var(--cta); margin-bottom: 6px; line-height: 1; }
.ed-30ans-price-note { font-size: 11px; color: rgba(250,250,249,.25); letter-spacing: .05em; margin-bottom: 28px; display: block; }

/* ── PRO BANNER ── */
.pro-banner { position: relative; overflow: hidden; background: rgba(28,25,23,.04); border: 1px solid rgba(12,10,9,.08); padding: 56px 64px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; max-width: 1100px; margin: 2px auto 0; }
.pro-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(202,138,4,.03) 0%, transparent 60%); }

/* ── FAQ ── */
.faq { position: relative; z-index: 1; background: var(--bg); padding: 120px 72px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-header { margin-bottom: 56px; }
.faq-item { border-bottom: 1px solid rgba(12,10,9,.07); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--text); transition: color .3s; }
.faq-q:hover { color: var(--cta); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; color: var(--cta); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s; }
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { font-size: 14px; line-height: 1.9; color: var(--muted); font-weight: 300; max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .35s; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ── CTA SECTION ── */
.cta-section { position: relative; z-index: 1; background: var(--primary); padding: 200px 72px; text-align: center; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(202,138,4,.07) 0%, transparent 65%); }
.cta-eyebrow { font-size: 10px; letter-spacing: .45em; text-transform: uppercase; color: var(--cta); margin-bottom: 32px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(40px,5.5vw,76px); font-weight: 400; line-height: 1; color: var(--bg); max-width: 680px; margin: 0 auto 24px; }
.cta-title em { font-style: italic; color: var(--cta); }
.cta-sub { font-size: 13px; color: rgba(250,250,249,.35); margin-bottom: 64px; font-weight: 300; letter-spacing: .05em; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 28px; }

/* ── COUNTDOWN ── */
.countdown-30ans { position: relative; z-index: 1; background: #0C0A09; border-top: 1px solid rgba(202,138,4,.12); padding: 140px 72px; overflow: hidden; }
.countdown-30ans::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(202,138,4,.09) 0%, transparent 65%); pointer-events: none; }
.cd-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cd-eyebrow { font-size: 10px; letter-spacing: .45em; text-transform: uppercase; color: var(--cta); margin-bottom: 20px; }
.cd-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 3.8vw, 56px); font-weight: 400; line-height: 1.1; color: var(--bg); margin-bottom: 20px; letter-spacing: -.02em; }
.cd-title em { font-style: italic; color: var(--cta); }
.cd-sub { font-size: 13px; line-height: 1.9; font-weight: 300; color: rgba(250,250,249,.38); max-width: 380px; margin-bottom: 48px; }
.cd-timer { display: flex; align-items: center; gap: 8px; margin-bottom: 48px; }
.cd-unit { text-align: center; min-width: 72px; }
.cd-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 400; line-height: 1; color: var(--bg); display: block; transition: opacity .15s; }
.cd-label { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(250,250,249,.25); margin-top: 8px; display: block; }
.cd-sep { font-family: 'Playfair Display', serif; font-size: 40px; color: rgba(202,138,4,.35); line-height: 1; padding-bottom: 20px; user-select: none; }
.cd-price-block { display: flex; align-items: baseline; gap: 14px; margin-bottom: 32px; }
.cd-price-launch { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; color: var(--cta); line-height: 1; }
.cd-price-note { font-size: 11px; letter-spacing: .08em; color: rgba(250,250,249,.28); font-weight: 300; }
.cd-right { display: flex; justify-content: center; align-items: center; }
.cd-book-wrap { position: relative; width: 340px; filter: drop-shadow(0 40px 80px rgba(180,0,0,.35)) drop-shadow(0 8px 24px rgba(0,0,0,.8)); animation: floatBook30 7s ease-in-out infinite; }
@keyframes floatBook30 { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
.cd-book-img { width: 100%; display: block; border-radius: 4px; }
.cd-book-glow { position: absolute; inset: -30px; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(202,138,4,.18) 0%, transparent 70%); z-index: -1; pointer-events: none; animation: glowPulse30 4s ease-in-out infinite; }
@keyframes glowPulse30 { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* ═══════════════════════════════════════════
   WOOCOMMERCE — WRAPPER & LAYOUT
═══════════════════════════════════════════ */

/* Wrapper principal — donne le clearance du nav fixe */
.wc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 72px 140px;
  min-height: 70vh;
}

/* Breadcrumb WC */
.wc-breadcrumb .woocommerce-breadcrumb {
  font-size: 12px; color: var(--muted); letter-spacing: .06em;
  margin-bottom: 48px;
}
.wc-breadcrumb .woocommerce-breadcrumb a { color: var(--muted); text-decoration: none; }
.wc-breadcrumb .woocommerce-breadcrumb a:hover { color: var(--cta); }

/* ── BOUTIQUE (shop archive) ── */
.woocommerce-shop .woocommerce-products-header__title,
.woocommerce-shop h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 400;
  letter-spacing: -.02em; color: var(--text);
  margin-bottom: 12px;
}
.woocommerce-result-count {
  font-size: 12px; color: var(--muted); letter-spacing: .06em; margin-bottom: 40px;
}
.woocommerce-ordering select {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: .1em;
  border: 1px solid var(--borderl); background: var(--bg); color: var(--muted);
  padding: 8px 12px; border-radius: 0;
}

/* Grille produits */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none !important;
  margin: 0 !important; padding: 0 !important;
}
.woocommerce ul.products li.product {
  background: var(--cream);
  border: 1px solid var(--borderl);
  padding: 0; margin: 0 !important;
  transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column;
}
.woocommerce ul.products li.product:hover { border-color: rgba(202,138,4,.35); }
.woocommerce ul.products li.product a img {
  width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 400;
  color: var(--text); padding: 20px 20px 4px; line-height: 1.3;
}
.woocommerce ul.products li.product .price {
  font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cta) !important;
  padding: 0 20px 16px;
}
.woocommerce ul.products li.product .button {
  margin: auto 20px 20px; display: block; text-align: center;
}

/* ── PRODUIT SINGLE ── */
/* Layout 2 colonnes via flexbox sur les classes natives WooCommerce */
body.single-product .product {
  display: flex;
  flex-wrap: wrap;
  gap: 0 80px;
  align-items: flex-start;
}
body.single-product .product .woocommerce-notices-wrapper {
  flex: 0 0 100%; order: 0;
}
body.single-product .product .woocommerce-product-gallery {
  flex: 0 0 calc(50% - 40px);
  order: 1;
  position: sticky; top: 100px;
}
body.single-product .product .summary.entry-summary {
  flex: 0 0 calc(50% - 40px);
  order: 2;
  padding-top: 8px;
}
body.single-product .product .woocommerce-tabs {
  flex: 0 0 100%; order: 3; margin-top: 64px;
}
body.single-product .related.products,
body.single-product .up-sells.products {
  flex: 0 0 100%; order: 4;
}

body.single-product .woocommerce-product-gallery__image img { width: 100%; display: block; }

body.single-product .product_title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(22px, 2.5vw, 38px) !important;
  font-weight: 400 !important; letter-spacing: -.02em !important;
  color: var(--text) !important; line-height: 1.15 !important;
  margin-bottom: 8px !important;
}
body.single-product .woocommerce-product-details__short-description {
  font-size: 14px; line-height: 1.75; color: var(--muted); font-weight: 300; margin-top: 16px;
}
body.single-product p.price {
  font-family: 'Playfair Display', serif !important;
  font-size: 32px !important; color: var(--text) !important; margin: 24px 0 !important;
}
body.single-product form.cart {
  display: flex; gap: 16px; align-items: center; margin-top: 8px;
}
body.single-product form.cart .qty {
  border: 1px solid var(--borderl); font-size: 14px;
  padding: 14px 16px; width: 72px; text-align: center;
  font-family: 'Inter', sans-serif; background: var(--bg); border-radius: 0;
}
body.single-product .product_meta {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--borderl);
  font-size: 12px; color: var(--muted); letter-spacing: .06em;
}

/* Onglets */
body.single-product .woocommerce-tabs ul.tabs {
  list-style: none; padding: 0; margin: 0 0 32px;
  border-bottom: 1px solid var(--borderl); display: flex; gap: 32px;
}
body.single-product .woocommerce-tabs ul.tabs li {
  margin: 0; padding: 0 0 16px; font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
body.single-product .woocommerce-tabs ul.tabs li.active { color: var(--text); border-bottom-color: var(--cta); }
body.single-product .woocommerce-tabs .panel {
  font-size: 14px; line-height: 1.85; color: var(--muted); font-weight: 300; max-width: 680px;
}

/* Produits liés */
body.single-product .related.products h2,
body.single-product .up-sells.products h2 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400;
  color: var(--text); margin-bottom: 32px;
  border-top: 1px solid var(--borderl); padding-top: 48px;
}

/* ── RESPONSIVE WC ── */
@media (max-width: 900px) {
  .wc-wrap { padding: 100px 24px 80px; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; }
  body.single-product .product .woocommerce-product-gallery,
  body.single-product .product .summary.entry-summary {
    flex: 0 0 100%; order: unset;
  }
  body.single-product .product .woocommerce-product-gallery { position: static; }
}
@media (max-width: 600px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════
   WOOCOMMERCE — STYLES
═══════════════════════════════════════════ */
.woocommerce-page .woocommerce,
.woocommerce { font-family: 'Inter', sans-serif; }

.woocommerce .price,
.woocommerce .woocommerce-Price-amount,
.price .amount {
  font-family: 'Playfair Display', serif;
  color: var(--text); font-size: 24px; font-weight: 400;
}

.woocommerce-message,
.woocommerce-info {
  background: var(--cream); border-top-color: var(--cta);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 13px;
}
.woocommerce-error { border-top-color: #DC2626; background: rgba(220,38,38,.05); }

/* Boutons WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  background: var(--cta); color: var(--primary);
  border: none; border-radius: 0; padding: 16px 28px;
  transition: background .25s; box-shadow: none;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce #respond input#submit:hover { background: var(--cta-light); color: var(--primary); }

/* Produit single */
.woocommerce div.product .product_title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,3.5vw,48px); font-weight: 400;
  letter-spacing: -.02em; color: var(--text); line-height: 1.15;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.65;
}

/* Cart */
.woocommerce-cart .woocommerce-cart-form table.cart th {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
  border-bottom: 1px solid var(--borderl); padding: 16px 0;
}
.woocommerce-cart .woocommerce-cart-form table.cart td {
  border-bottom: 1px solid var(--borderl); padding: 24px 12px; color: var(--text);
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-name a {
  color: var(--text); font-weight: 400; text-decoration: none;
}
.woocommerce-cart .woocommerce-cart-form table.cart td.product-price,
.woocommerce-cart .woocommerce-cart-form table.cart td.product-subtotal {
  font-family: 'Playfair Display', serif; font-size: 20px;
}
.cart_totals {
  background: var(--cream); border: 1px solid var(--borderl);
  padding: 36px; border-radius: 0;
}
.cart_totals h2 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 24px; }
.cart_totals table.shop_table td,
.cart_totals table.shop_table th {
  border: none; border-bottom: 1px solid var(--borderl);
  font-size: 13px; color: var(--muted); padding: 10px 0;
}
.cart_totals table.shop_table tr.order-total td,
.cart_totals table.shop_table tr.order-total th {
  font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text); border-bottom: none;
}

/* Checkout */
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400;
  color: var(--text); border-bottom: 1px solid var(--borderl);
  padding-bottom: 16px; margin-bottom: 28px;
}
.woocommerce-checkout .form-row label {
  font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); font-weight: 400;
  margin-bottom: 6px; display: block;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--text); background: var(--bg);
  border: 1px solid var(--borderl); border-radius: 0;
  padding: 14px 16px; width: 100%; transition: border-color .2s; box-shadow: none;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus { border-color: var(--cta); outline: none; box-shadow: none; }
.woocommerce-checkout #payment { background: var(--cream); border-radius: 0; border: 1px solid var(--borderl); }
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--borderl); }
#place_order { width: 100%; padding: 18px; font-size: 10px; letter-spacing: .3em; }

/* Order review */
.woocommerce-checkout #order_review table th,
.woocommerce-checkout #order_review table td {
  border-bottom: 1px solid var(--borderl); font-size: 13px; padding: 12px 0; color: var(--muted);
}
.woocommerce-checkout #order_review table .order-total td,
.woocommerce-checkout #order_review table .order-total th {
  font-family: 'Playfair Display', serif; font-size: 20px; color: var(--text); font-weight: 400;
}

/* Inputs globaux */
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="password"], textarea, select {
  font-family: 'Inter', sans-serif;
  border: 1px solid var(--borderl); border-radius: 0;
  background: var(--bg); color: var(--text); box-shadow: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--cta); box-shadow: none; outline: none;
}

/* ═══════════════════════════════════════════
   PAGES INTÉRIEURES
═══════════════════════════════════════════ */
.page-inner {
  max-width: 760px; margin: 0 auto;
  padding: 40px 72px 120px;
}
.page-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px); font-weight: 400;
  color: var(--text); margin-bottom: 8px; letter-spacing: -.02em;
}
.page-inner p, .page-inner li {
  font-size: 14px; line-height: 1.9; color: var(--muted); font-weight: 300;
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .book-flipper { animation: none !important; transition: none !important; }
  .book-hint    { animation: none !important; }
  .scroll-bar   { animation: none !important; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .site-nav .nav-menu { display: none; }
  .home .site-nav.solid { padding: 14px 24px; }
  .breadcrumb { padding: 88px 24px 0; }

  .hero { grid-template-columns: 1fr; text-align: center; padding: 120px 24px 80px; height: auto; min-height: 100vh; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .hero-right { margin-top: 48px; }
  .book-wrapper { width: 320px; height: 220px; }
  .hero-scroll { left: 24px; }

  .stats { grid-template-columns: 1fr 1fr; padding: 48px 24px; }
  .stat { border-right: none; border-bottom: 1px solid rgba(202,138,4,.08); padding: 32px 16px; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(202,138,4,.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .manifeste { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .fabrication { padding: 80px 24px; }
  .fab-inner { grid-template-columns: 1fr; gap: 48px; }
  .temoignages { padding: 80px 24px; }
  .temo-grid { grid-template-columns: 1fr; }
  .editions { padding: 80px 24px; }
  .editions-grid { grid-template-columns: 1fr; }
  .ed-content { padding: 40px 32px 48px; }
  .ed-30ans { grid-template-columns: 1fr; }
  .ed-30ans-content { padding: 40px 32px; gap: 40px; }
  .ed-30ans-actions { text-align: left; }
  .pro-banner { padding: 40px 32px; flex-direction: column; }
  .faq { padding: 80px 24px; }
  .cta-section { padding: 120px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .countdown-30ans { padding: 80px 24px; }
  .cd-inner { grid-template-columns: 1fr; gap: 48px; }
  .cd-right { order: -1; }
  .cd-book-wrap { width: 220px; }
  .cd-num { font-size: 38px; }
  .cd-unit { min-width: 52px; }

  .site-footer { flex-direction: column; gap: 28px; text-align: center; padding: 40px 24px; }
  .foot-links { flex-wrap: wrap; justify-content: center; }
  .page-inner { padding: 32px 24px 80px; }

  .btn-gold, .btn-border-dark, .btn-ghost, .nav-cta {
    min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 38px; }
  .book-wrapper { width: 280px; height: 190px; }
  .stat-number { font-size: 40px; }
  .cd-sep { font-size: 28px; }
}

/* ── LAYOUT PRODUIT OVERRIDE — force 2 colonnes sans dépendance ──────────── */
body.single-product .product,
body.single-product article.product,
body.single-product div.product {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 60px !important;
  align-items: flex-start !important;
  padding: 40px 80px 80px !important;
  max-width: 1320px;
  margin: 0 auto;
}
body.single-product .woocommerce-product-gallery {
  flex: 0 0 46% !important;
  max-width: 46% !important;
  min-width: 0 !important;
  order: 1 !important;
}
body.single-product .summary.entry-summary {
  flex: 0 0 calc(54% - 60px) !important;
  max-width: calc(54% - 60px) !important;
  min-width: 0 !important;
  order: 2 !important;
}
body.single-product .woocommerce-tabs { flex: 0 0 100% !important; order: 3 !important; }
body.single-product .related.products,
body.single-product .up-sells.products { flex: 0 0 100% !important; order: 4 !important; }

/* ── THUMBNAILS GALERIE ───────────────────────────────────────────────────── */
.flex-control-nav.flex-control-thumbs {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}
.flex-control-nav.flex-control-thumbs li { margin: 0 !important; }
.flex-control-nav.flex-control-thumbs img {
  width: 64px !important;
  height: 64px !important;
  object-fit: cover !important;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity .2s;
  display: block !important;
}
.flex-control-nav.flex-control-thumbs li:hover img,
.flex-control-nav.flex-control-thumbs li.flex-active img { opacity: 1; }

@media (max-width: 768px) {
  body.single-product .woocommerce-product-gallery,
  body.single-product .summary.entry-summary {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
