/* ═══════════════════════════════════════════════
   BAOYUANHE — Feuille de styles unifiée
   index.html (boutique) + precis.html (éditorial)
═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --ink:       #1c1a14;
  --deep:      #0f1f0f;
  --sepia:     #3a2e1a;
  --jade:      #2d5a27;
  --jade-lt:   #4a7a42;
  --gold:      #c9a84c;
  --gold-lt:   #e8c87a;
  --rust:      #8b3a1e;
  --white:     #fdfcfa;
  --mist:      #f9f5ec;
  --parchment: #f5efdf;
  --cream:     #f7f3ed;
  --aged:      #ede4cc;
  --aged2:     #e3d8bd;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── BASE ── */
body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

body.precis {
  font-family: 'Libre Baskerville', serif;
  background: var(--parchment);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--jade); }

/* ── NOISE OVERLAY (precis) ── */
body.precis::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ════════════════════════════════
   SPLASH
════════════════════════════════ */
.splash {
  position: fixed; inset: 0; z-index: 999;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.splash::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(45,90,39,0.18) 0%, transparent 70%);
}

.splash::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.25;
}

.splash.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}

.splash-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

.splash-dragon-wrap {
  margin-bottom: 2.8rem;
}

.dragon-logo-img {
  width: min(320px, 85vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.splash-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--cream);
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: splashFadeUp 0.4s ease forwards 0.6s;
}

.splash-slogan {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 200; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(201,168,76,0.75);
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: splashFadeUp 0.4s ease forwards 1.0s;
}

.splash-btn {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.45);
  padding: 1rem 4rem;
  font-family: 'Jost', sans-serif; font-size: 0.88rem;
  font-weight: 300; letter-spacing: 0.35em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s, border-color 0.3s, color 0.3s;
  opacity: 0;
  animation: splashFadeUp 0.4s ease forwards 1.4s;
}

.splash-btn:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  color: var(--gold-lt);
}

@keyframes splashScale  { from { opacity: 0; transform: scale(0.75); } to { opacity: 1; transform: scale(1); } }
@keyframes splashFade   { from { opacity: 0; } to { opacity: 1; } }
@keyframes splashFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.splash-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.splash-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(45,90,39,.18);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 4s ease-out infinite;
}
.splash-ring:nth-child(2) { animation-delay: 1.3s; }
.splash-ring:nth-child(3) { animation-delay: 2.6s; }

@keyframes ripple {
  0%   { transform: translate(-50%,-50%) scale(.8); opacity: .5; }
  100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; }
}

/* ════════════════════════════════
   NAV — partagé
════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 3rem;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,90,39,0.12);
}

body.precis nav {
  background: rgba(245,239,223,0.94);
  border-bottom-color: rgba(201,168,76,0.25);
}

/* Nav boutique */
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.logo-dragon { height: 48px; width: auto; display: block; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; letter-spacing: 0.15em;
  color: var(--jade); text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-size: 0.75rem; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--jade); transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--jade); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 1.2rem; }

.cart-btn {
  background: var(--jade); color: var(--white);
  border: none; padding: 0.5rem 1.3rem;
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s; position: relative;
}
.cart-btn:hover { background: var(--jade-lt); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--deep);
  width: 16px; height: 16px; border-radius: 50%;
  font-size: 0.6rem; display: flex; align-items: center; justify-content: center; font-weight: 400;
}

/* Nav précis */
.nav-back {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--jade);
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; transition: gap 0.3s;
}
.nav-back:hover { gap: 0.3rem; }
.nav-back-arrow { font-size: 1rem; }

.nav-brand {
  font-family: 'IM Fell English', serif;
  font-size: 1.1rem; color: var(--sepia); letter-spacing: 0.05em; text-align: center;
}
.nav-brand small {
  display: block; font-family: 'Jost', sans-serif;
  font-size: 0.6rem; font-weight: 200; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-top: 2px;
}
.nav-progress {
  font-family: 'Jost', sans-serif; font-size: 0.65rem;
  font-weight: 300; letter-spacing: 0.1em; color: #9a8a6a;
}

/* ════════════════════════════════
   BOUTIQUE — Hero
════════════════════════════════ */
.hero-shop {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px; overflow: hidden;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}

.hero-eyebrow {
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--jade); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 40px; height: 1px; background: var(--jade);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300; line-height: 1.05; color: var(--deep); margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--jade); }

.hero-chinese {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem; font-weight: 300; color: var(--jade-lt);
  letter-spacing: 0.3em; margin-bottom: 2rem;
}

.hero-desc {
  font-size: 0.9rem; font-weight: 300; line-height: 1.8;
  color: #4a5a4a; max-width: 440px; margin-bottom: 3rem;
}

.hero-cta { display: flex; gap: 1rem; align-items: center; }

.hero-right { position: relative; overflow: hidden; background: var(--parchment); }

.hero-visual {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(45,90,39,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
  display: flex; align-items: center; justify-content: center;
}

.hero-ornament { position: relative; width: 380px; height: 380px; }

.circle-outer {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(45,90,39,0.2); animation: slowRotate 40s linear infinite;
}
.circle-mid {
  position: absolute; inset: 30px; border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.3); animation: slowRotate 25s linear infinite reverse;
}
.circle-inner {
  position: absolute; inset: 80px; border-radius: 50%;
  border: 1px solid rgba(45,90,39,0.15);
}

.hero-herb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); text-align: center;
}
.herb-icon { font-size: 5rem; opacity: 0.6; }

.hero-badges {
  position: absolute; bottom: 3rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 3rem;
}
.badge { text-align: center; }
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--jade); display: block;
}
.badge-label {
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.12em;
  text-transform: uppercase; color: #6a7a6a;
}

/* ── BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--jade); transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── MENU MOBILE ── */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(15,31,15,0.6);
  z-index: 149; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; bottom: 0; width: 75%; max-width: 300px;
  background: var(--deep); z-index: 150;
  display: flex; flex-direction: column; justify-content: center;
  padding: 3rem 2.5rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { right: 0; }

.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(240,237,232,0.4);
  font-size: 1.1rem; cursor: pointer; transition: color 0.2s;
}
.mobile-close:hover { color: var(--gold); }

.mobile-links { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.mobile-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--cream);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-links a:hover { color: var(--gold); }

/* ── BOUTONS partagés ── */
.btn-primary {
  background: var(--jade); color: var(--white); border: none; padding: 0.9rem 2.5rem;
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--jade-lt); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--jade); border: 1px solid var(--jade); padding: 0.9rem 2.5rem;
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--jade); color: var(--white); }

/* ── MARQUEE ── */
.marquee-strip { background: var(--jade); padding: 0.8rem 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 4rem; animation: marquee 25s linear infinite; white-space: nowrap;
}
.marquee-item {
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(253,252,250,0.85); display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0;
}
.marquee-item::before { content: '❧'; color: var(--gold-lt); font-size: 0.8rem; }

/* ── SECTIONS COMMUNES ── */
section { padding: 6rem 5rem; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--jade); margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; color: var(--deep); line-height: 1.2;
}
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1.2rem auto;
}
.divider-line { width: 60px; height: 1px; background: var(--jade); opacity: 0.4; }
.divider-icon { color: var(--jade); opacity: 0.6; font-size: 1rem; }

/* ── CATÉGORIES ── */
.categories { background: var(--mist); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.cat-card {
  background: var(--white); padding: 2.5rem 1.5rem; text-align: center; cursor: pointer;
  transition: all 0.4s; border: 1px solid transparent; position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--jade); transform: scaleX(0); transition: transform 0.3s;
}
.cat-card:hover { border-color: rgba(45,90,39,0.15); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,31,15,0.08); }
.cat-card:hover::before { transform: scaleX(1); }

.cat-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; filter: grayscale(0.3); }
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--deep); margin-bottom: 0.4rem;
}
.cat-chinese {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.75rem; color: var(--jade); letter-spacing: 0.2em; margin-bottom: 0.8rem; display: block;
}
.cat-count { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.1em; color: #8a9a8a; text-transform: uppercase; }

/* ── PRODUITS ── */
.products { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.product-card { cursor: pointer; transition: all 0.3s; position: relative; }
.product-card:hover { transform: translateY(-6px); }

.product-img {
  aspect-ratio: 4/5; background: var(--parchment);
  position: relative; overflow: hidden; margin-bottom: 1.2rem;
}
.product-img-inner {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 5rem; transition: transform 0.5s;
}
.product-card:hover .product-img-inner { transform: scale(1.05); }

.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--jade); color: var(--white);
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.7rem;
}
.product-badge.gold { background: var(--gold); color: var(--deep); }

.product-actions {
  position: absolute; bottom: -50px; left: 0; right: 0;
  padding: 0 1rem 1rem; transition: bottom 0.3s; display: flex; gap: 0.5rem;
}
.product-card:hover .product-actions { bottom: 0; }

.add-to-cart {
  flex: 1; background: var(--jade); color: var(--white); border: none; padding: 0.7rem;
  font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.add-to-cart:hover { background: var(--jade-lt); }

.wishlist-btn {
  background: var(--white); border: 1px solid rgba(45,90,39,0.3);
  padding: 0.7rem 0.9rem; cursor: pointer; font-size: 0.9rem; transition: all 0.2s;
}
.wishlist-btn:hover { background: var(--parchment); }

.product-info { padding: 0 0.2rem; }
.product-category {
  font-size: 0.62rem; font-weight: 300; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--jade); margin-bottom: 0.4rem;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--deep); margin-bottom: 0.2rem;
}
.product-chinese {
  font-family: 'Noto Serif SC', serif;
  font-size: 0.72rem; color: #8a9a8a; letter-spacing: 0.2em; margin-bottom: 0.6rem; display: block;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300; color: var(--jade);
}
.product-price-old { font-size: 0.85rem; color: #aaa; text-decoration: line-through; margin-left: 0.5rem; }

/* ── PHILOSOPHIE ── */
.philosophy {
  background: var(--deep); color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0; min-height: 60vh;
}
.philo-left {
  padding: 6rem 5rem; display: flex; flex-direction: column;
  justify-content: center; position: relative;
}
.philo-left::after {
  content: ''; position: absolute; right: 0; top: 4rem; bottom: 4rem;
  width: 1px; background: rgba(255,255,255,0.08);
}
.philo-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem;
}
.philo-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }

.philo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.5rem); font-weight: 300;
  line-height: 1.15; margin-bottom: 1.5rem; color: var(--cream);
}
.philo-text {
  font-size: 0.88rem; font-weight: 300; line-height: 1.9;
  color: rgba(240,237,232,0.7); margin-bottom: 2rem;
}
.philo-principles { display: flex; flex-direction: column; gap: 1rem; }
.principle { display: flex; align-items: flex-start; gap: 1rem; }
.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--gold); line-height: 1; flex-shrink: 0;
}
.principle-text { font-size: 0.82rem; font-weight: 300; line-height: 1.6; color: rgba(240,237,232,0.75); }
.text-cream { color: var(--cream); }

.philo-right {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(45,90,39,0.15) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.philo-symbol { text-align: center; position: relative; }
.philo-chars {
  font-family: 'Noto Serif SC', serif; font-size: 8rem; line-height: 1;
  color: rgba(201,168,76,0.15); letter-spacing: 0.1em; display: block;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); white-space: nowrap;
}
.philo-ring {
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.philo-ring::before {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.15);
}
.philo-ring-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic;
  font-weight: 300; color: rgba(240,237,232,0.5); text-align: center; line-height: 1.6;
}
.philo-ring-author { font-size: 0.8rem; color: var(--gold); opacity: 0.7; }

/* ── BÉNÉFICES ── */
.benefits { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.benefit { text-align: center; padding: 2rem 1rem; }
.benefit-icon {
  width: 56px; height: 56px; margin: 0 auto 1.2rem;
  border: 1px solid var(--jade); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--jade);
}
.benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--deep); margin-bottom: 0.5rem;
}
.benefit-text { font-size: 0.8rem; font-weight: 300; line-height: 1.7; color: #6a7a6a; }

/* ── TÉMOIGNAGES ── */
.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial {
  padding: 2.5rem; background: var(--mist);
  border-left: 2px solid var(--jade); position: relative;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  color: var(--jade); opacity: 0.3; line-height: 0.5; margin-bottom: 1rem; display: block;
}
.testimonial-text {
  font-size: 0.88rem; font-weight: 300; line-height: 1.8;
  color: var(--ink); font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.7rem; font-weight: 300; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--jade);
}
.stars { color: var(--gold); font-size: 0.7rem; margin-bottom: 0.8rem; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--jade); padding: 5rem; text-align: center; }
.newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300;
  color: var(--white); margin-bottom: 0.8rem;
}
.newsletter-sub {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(253,252,250,0.75); margin-bottom: 2.5rem;
}
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1; padding: 0.9rem 1.5rem; border: none;
  background: rgba(255,255,255,0.15); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 300;
  letter-spacing: 0.05em; outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-btn {
  background: var(--gold); color: var(--deep); border: none; padding: 0.9rem 1.8rem;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-lt); }

/* ── FOOTER ── */
footer { background: var(--deep); color: rgba(240,237,232,0.65); padding: 5rem 5rem 2.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand .logo-text { color: var(--cream); font-size: 1rem; }
.footer-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 1.8;
  margin: 1.2rem 0; max-width: 280px; color: rgba(240,237,232,0.5);
}
.footer-social { display: flex; gap: 0.8rem; }
.social-btn {
  width: 34px; height: 34px; border: 1px solid rgba(240,237,232,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; font-size: 0.85rem;
  color: rgba(240,237,232,0.5); text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  text-decoration: none; color: rgba(240,237,232,0.5);
  font-size: 0.8rem; font-weight: 300; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.72rem; font-weight: 300; letter-spacing: 0.05em; color: rgba(240,237,232,0.35); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.72rem; font-weight: 300; color: rgba(240,237,232,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ── PANIER ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(15,31,15,0.5);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0; width: min(420px, 100vw);
  background: var(--white); z-index: 201;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-header {
  padding: 2rem; border-bottom: 1px solid var(--parchment);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--deep);
}
.cart-close {
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--ink); padding: 0.3rem; transition: color 0.2s;
}
.cart-close:hover { color: var(--jade); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }

.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--parchment); align-items: flex-start;
}
.cart-item-img {
  width: 70px; height: 80px; background: var(--parchment);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 400; color: var(--deep); margin-bottom: 0.3rem;
}
.cart-item-price { font-size: 0.85rem; color: var(--jade); }
.cart-item-qty { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }

.qty-btn {
  width: 24px; height: 24px; border: 1px solid var(--jade);
  background: none; cursor: pointer; font-size: 0.9rem; color: var(--jade);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.qty-btn:hover { background: var(--jade); color: var(--white); }
.qty-num { font-size: 0.82rem; min-width: 20px; text-align: center; }

.cart-remove {
  background: none; border: none; cursor: pointer;
  color: #ccc; font-size: 0.9rem; transition: color 0.2s;
}
.cart-remove:hover { color: #e74c3c; }

.cart-footer { padding: 1.5rem 2rem 2rem; border-top: 1px solid var(--parchment); }
.cart-total {
  display: flex; justify-content: space-between; margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--parchment);
}
.cart-total-label {
  font-size: 0.75rem; font-weight: 300; letter-spacing: 0.1em;
  text-transform: uppercase; color: #8a9a8a;
}
.cart-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; color: var(--jade);
}
.cart-shipping-msg { font-size: 0.72rem; color: #8a9a8a; margin-bottom: 1rem; text-align: center; }
.cart-shipping-msg--free { font-size: 0.72rem; color: var(--jade); margin-bottom: 1rem; text-align: center; }

.checkout-btn {
  width: 100%; background: var(--jade); color: var(--white); border: none; padding: 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s; margin-bottom: 0.8rem;
}
.checkout-btn:hover { background: var(--jade-lt); }

.continue-btn {
  width: 100%; background: transparent; color: var(--jade);
  border: 1px solid var(--jade); padding: 0.8rem;
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.continue-btn:hover { background: var(--mist); }

.empty-cart { text-align: center; padding: 4rem 2rem; color: #8a9a8a; }
.empty-cart-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.empty-cart-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; margin-bottom: 0.5rem;
}
.empty-cart-hint { font-size: 0.8rem; color: #aaa; }

/* ════════════════════════════════
   PRÉCIS — Hero
════════════════════════════════ */
.hero-precis {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; padding-top: 80px; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45,90,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(184,150,60,0.05) 0%, transparent 60%),
    var(--parchment);
}

.hero-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Noto Serif SC', serif; font-size: 32vw; font-weight: 200;
  color: rgba(45,90,39,0.04); line-height: 1;
  user-select: none; pointer-events: none; white-space: nowrap;
}

.hero-frame {
  position: absolute; inset: 3rem;
  border: 1px solid rgba(184,150,60,0.2); pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
  content: ''; position: absolute; width: 40px; height: 40px;
  border-color: var(--gold); border-style: solid; opacity: 0.5;
}
.hero-frame::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero-frame::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; padding: 0 2rem; }

.hero-seal {
  width: 90px; height: 90px; margin: 0 auto 2.5rem;
  border-radius: 50%; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: sealPulse 4s ease-in-out infinite;
}
.hero-seal::before {
  content: ''; position: absolute; inset: 6px; border-radius: 50%;
  border: 1px dashed rgba(184,150,60,0.4);
}
.seal-chars {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.6rem; font-weight: 300; color: var(--gold); letter-spacing: 0.05em;
}

.hero-overline {
  font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 200;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; display: block;
}

.hero-title-precis {
  font-family: 'IM Fell English', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.1; color: var(--sepia); margin-bottom: 0.5rem;
}
.hero-title-precis em { color: var(--jade); font-style: italic; }

.hero-subtitle {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem; font-weight: 200; color: var(--jade);
  letter-spacing: 0.4em; margin-bottom: 2rem;
}

.hero-desc-precis {
  font-size: 1rem; font-weight: 400; line-height: 1.9; color: #5a4e38;
  max-width: 580px; margin: 0 auto 3rem; font-style: italic;
}

.hero-cta-precis {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
}

.btn-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-decoration: none; color: var(--jade); font-family: 'Jost', sans-serif;
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; transition: opacity 0.3s;
}
.btn-scroll:hover { opacity: 0.7; }

.scroll-arrow {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--jade), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

.hero-date {
  position: absolute; bottom: 2rem; right: 3rem;
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 200;
  letter-spacing: 0.15em; color: #9a8a6a; writing-mode: vertical-rl;
}

/* ════════════════════════════════
   PRÉCIS — Chapitres
════════════════════════════════ */
.chapter { position: relative; z-index: 1; padding: 7rem 0; }
.chapter-inner { max-width: 1100px; margin: 0 auto; padding: 0 4rem; }

.ch-header {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 2rem; margin-bottom: 5rem;
}
.ch-line { height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.ch-line.right { background: linear-gradient(to left, transparent, var(--gold)); }
.ch-label { text-align: center; }

.ch-num {
  font-family: 'Noto Serif SC', serif; font-size: 2.5rem; font-weight: 200;
  color: rgba(184,150,60,0.25); line-height: 1; display: block;
}
.ch-eyebrow {
  font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.4rem;
}
.ch-title {
  font-family: 'IM Fell English', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; color: var(--sepia); line-height: 1.2;
}

/* Origines */
.origins { background: var(--mist); }
.origins-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 5rem; align-items: start; }
.origins-text p { font-size: 0.96rem; line-height: 2; color: #4a3e28; margin-bottom: 1.5rem; }
.origins-text p:first-child::first-letter {
  font-family: 'IM Fell English', serif; font-size: 4.5rem; line-height: 0.8;
  float: left; margin-right: 0.1em; margin-top: 0.1em; color: var(--jade); font-weight: 400;
}

.pull-quote {
  border-left: 3px solid var(--gold); padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0; background: rgba(184,150,60,0.04);
}
.pull-quote p {
  font-family: 'IM Fell English', serif; font-style: italic;
  font-size: 1.15rem; line-height: 1.7; color: var(--sepia); margin: 0;
}
.pull-quote cite {
  display: block; margin-top: 0.8rem; font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.15em; color: var(--gold); font-style: normal;
}
.pull-quote--centered { max-width: 700px; margin-left: auto; margin-right: auto; }

.origins-aside { position: sticky; top: 120px; }

/* Timeline */
.timeline { display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 1.5rem; padding-bottom: 2.5rem; position: relative; }
.timeline-item:not(:last-child)::after {
  content: ''; position: absolute; left: 24px; top: 50px; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--gold) 40%, transparent); opacity: 0.3;
}
.tl-dot {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--gold); display: flex; align-items: center;
  justify-content: center; background: var(--white);
}
.tl-char { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; font-weight: 300; color: var(--gold); }
.tl-year {
  font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase;
  display: block; margin-bottom: 0.3rem;
}
.tl-title { font-family: 'IM Fell English', serif; font-size: 1rem; color: var(--sepia); margin-bottom: 0.3rem; }
.tl-text { font-size: 0.8rem; line-height: 1.7; color: #7a6a4a; }

/* Fondements */
.foundations { background: var(--parchment); }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.principle-card {
  background: var(--white); padding: 2.5rem; position: relative;
  overflow: hidden; border: 1px solid rgba(184,150,60,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.principle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,26,20,0.08); }
.principle-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--jade), var(--gold));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.principle-card:hover::before { transform: scaleX(1); }
.pc-chinese {
  font-family: 'Noto Serif SC', serif; font-size: 3.5rem; font-weight: 200;
  color: rgba(45,90,39,0.12); line-height: 1; margin-bottom: 1rem; display: block;
}
.pc-num {
  font-family: 'IM Fell English', serif; font-style: italic; font-size: 0.75rem;
  color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 0.6rem;
}
.pc-title { font-family: 'IM Fell English', serif; font-size: 1.3rem; color: var(--sepia); margin-bottom: 1rem; }
.pc-text { font-size: 0.83rem; line-height: 1.85; color: #5a4e38; }

/* Cinq Éléments */
.five-elements { background: var(--aged); }
.elements-intro {
  max-width: 680px; margin: 0 auto 5rem; text-align: center;
  font-size: 0.95rem; line-height: 1.9; color: #4a3e28; font-style: italic;
}
.elements-overflow { overflow-x: auto; }

.wu-xing { position: relative; width: 500px; height: 500px; margin: 0 auto 5rem; }
.wu-xing-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.element-node {
  position: absolute; width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.3s;
  border: 1px solid rgba(184,150,60,0.3); background: var(--white);
}
.element-node:hover { transform: scale(1.08); }
.el-fire  { top: 0;    left: 50%; transform: translateX(-50%); background: #fff8f5; }
.el-earth { top: 38%;  right: 0%;  background: #fdfaf0; }
.el-metal { top: 78%;  right: 12%; background: #f8f8f8; }
.el-water { top: 78%;  left: 12%;  background: #f5f8ff; }
.el-wood  { top: 38%;  left: 0%;   background: #f5fff5; }

.el-node-char { font-family: 'Noto Serif SC', serif; font-size: 1.8rem; font-weight: 300; line-height: 1; }
.el-fire  .el-node-char { color: #c0392b; }
.el-earth .el-node-char { color: #b8963c; }
.el-metal .el-node-char { color: #7a8a8a; }
.el-water .el-node-char { color: #2980b9; }
.el-wood  .el-node-char { color: #27ae60; }

.el-node-name {
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase; color: #9a8a6a; margin-top: 4px;
}

.elements-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.elements-table th {
  font-family: 'Jost', sans-serif; font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  padding: 0.8rem 1.2rem; border-bottom: 1px solid rgba(184,150,60,0.3); text-align: left;
}
.elements-table td {
  padding: 1rem 1.2rem; border-bottom: 1px solid rgba(184,150,60,0.1);
  color: #4a3e28; line-height: 1.5; vertical-align: middle;
}
.elements-table tr:hover td { background: rgba(184,150,60,0.04); }

.el-tag {
  display: inline-block; padding: 0.2rem 0.7rem; border-radius: 1px;
  font-family: 'Noto Serif SC', serif; font-size: 1rem; font-weight: 300; margin-right: 0.3rem;
}
.el-tag.fire  { color: #c0392b; background: rgba(192,57,43,0.06); }
.el-tag.earth { color: #b8963c; background: rgba(184,150,60,0.08); }
.el-tag.metal { color: #7a8a8a; background: rgba(122,138,138,0.07); }
.el-tag.water { color: #2980b9; background: rgba(41,128,185,0.06); }
.el-tag.wood  { color: #27ae60; background: rgba(39,174,96,0.07); }

/* Matière Médicale */
.materia { background: var(--mist); }
.materia-intro {
  max-width: 700px; margin: 0 auto 4rem; text-align: center;
  font-size: 0.93rem; line-height: 1.9; color: #5a4e38; font-style: italic;
}
.herbs-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.herb-entry {
  background: var(--white); padding: 3rem; position: relative;
  transition: background 0.3s; display: flex; gap: 2rem; align-items: flex-start;
  border-bottom: 1px solid rgba(184,150,60,0.1);
}
.herb-entry:hover { background: var(--aged); }
.herb-entry:nth-child(odd) { border-right: 1px solid rgba(184,150,60,0.1); }
.herb-glyph { font-size: 3.5rem; flex-shrink: 0; line-height: 1; filter: saturate(0.6) brightness(0.9); }
.herb-latin {
  font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 0.3rem;
}
.herb-name { font-family: 'IM Fell English', serif; font-size: 1.3rem; color: var(--sepia); margin-bottom: 0.2rem; }
.herb-chinese {
  font-family: 'Noto Serif SC', serif; font-size: 0.85rem; font-weight: 300;
  color: var(--jade); letter-spacing: 0.2em; display: block; margin-bottom: 0.8rem;
}
.herb-desc { font-size: 0.8rem; line-height: 1.8; color: #6a5a40; margin-bottom: 1rem; }
.herb-props { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.herb-prop {
  font-family: 'Jost', sans-serif; font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.08em; padding: 0.25rem 0.7rem;
  border: 1px solid rgba(45,90,39,0.25); color: var(--jade);
}

/* Diagnostic */
.diagnosis { background: var(--parchment); }
.diag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.diag-card {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--white); border: 1px solid rgba(184,150,60,0.12); position: relative;
}
.diag-card::after {
  content: attr(data-num); position: absolute; top: 0.8rem; right: 1rem;
  font-family: 'Jost', sans-serif; font-size: 0.55rem; font-weight: 200;
  letter-spacing: 0.1em; color: rgba(184,150,60,0.4);
}
.diag-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.diag-char {
  font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 300;
  color: rgba(45,90,39,0.15); line-height: 1; display: block; margin-bottom: 0.8rem;
}
.diag-title { font-family: 'IM Fell English', serif; font-size: 1.1rem; color: var(--sepia); margin-bottom: 0.6rem; }
.diag-text { font-size: 0.78rem; line-height: 1.75; color: #6a5a40; }

/* Formulations */
.formulations { background: var(--aged2); }
.formula-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.formula-scroll {
  background: var(--white); padding: 3rem;
  border: 1px solid rgba(184,150,60,0.2); position: relative;
}
.formula-scroll::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--jade), var(--gold));
}
.fs-title { font-family: 'IM Fell English', serif; font-style: italic; font-size: 1.4rem; color: var(--sepia); margin-bottom: 0.3rem; }
.fs-chinese {
  font-family: 'Noto Serif SC', serif; font-size: 0.9rem; font-weight: 300;
  color: var(--jade); letter-spacing: 0.2em; display: block; margin-bottom: 1.5rem;
}
.fs-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.5rem; opacity: 0.4;
}
.ingredients-list { list-style: none; margin-bottom: 1.5rem; }
.ingredients-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.5rem 0; border-bottom: 1px dotted rgba(184,150,60,0.2);
  font-size: 0.83rem; color: #4a3e28;
}
.ing-name { font-family: 'IM Fell English', serif; }
.ing-chinese { font-family: 'Noto Serif SC', serif; font-size: 0.75rem; color: var(--jade); }
.ing-dose { font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 300; color: var(--gold); }
.formula-note {
  font-size: 0.78rem; font-style: italic; line-height: 1.7; color: #7a6a4a;
  border-left: 2px solid var(--gold); padding-left: 1rem;
}
.formula-right p { font-size: 0.92rem; line-height: 2; color: #4a3e28; margin-bottom: 1.5rem; }
.steps-list { counter-reset: steps; list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.steps-list li {
  counter-increment: steps; display: flex; gap: 1.2rem; align-items: flex-start;
  font-size: 0.85rem; line-height: 1.8; color: #5a4e38;
}
.steps-list li::before {
  content: counter(steps); flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: 'IM Fell English', serif; font-style: italic; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* Clôture */
.closing {
  background: var(--sepia); color: var(--parchment);
  padding: 8rem 0; text-align: center; position: relative; overflow: hidden;
}
.closing-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Noto Serif SC', serif; font-size: 40vw; font-weight: 200;
  color: rgba(255,255,255,0.02); line-height: 1; user-select: none; pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.closing-seal {
  width: 80px; height: 80px; margin: 0 auto 2rem; border-radius: 50%;
  border: 1px solid rgba(184,150,60,0.4);
  display: flex; align-items: center; justify-content: center;
}
.closing-char { font-family: 'Noto Serif SC', serif; font-size: 2rem; font-weight: 300; color: var(--gold); }
.closing-title {
  font-family: 'IM Fell English', serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400;
  color: var(--aged); line-height: 1.2; margin-bottom: 1.5rem;
}
.closing-text {
  font-size: 0.95rem; line-height: 2; color: rgba(237,228,204,0.7);
  font-style: italic; margin-bottom: 3rem;
}
.closing-cta {
  display: inline-block; background: var(--gold); color: var(--sepia);
  padding: 1rem 3rem; text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 300;
  letter-spacing: 0.2em; text-transform: uppercase; transition: background 0.3s;
}
.closing-cta:hover { background: var(--gold-lt); }


/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes slowRotate { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes marquee    { from { transform: translateX(0); }  to { transform: translateX(-50%); } }
@keyframes sealPulse  {
  0%,100% { box-shadow: 0 0 0 0 rgba(184,150,60,0.15); }
  50%     { box-shadow: 0 0 0 12px rgba(184,150,60,0); }
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

.fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.8s ease forwards; }
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

.reveal       { opacity: 0; transform: translateY(30px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }


  .hero-shop { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 3rem 2rem; text-align: center; align-items: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-desc { max-width: 100%; }
  .hero-cta { flex-wrap: wrap; justify-content: center; }
  .hero-frame { inset: 1rem; }

  section { padding: 4rem 2rem; }
  .chapter { padding: 4rem 0; }
  .chapter-inner { padding: 0 1.5rem; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .philosophy { grid-template-columns: 1fr; }
  .philo-right { display: none; }
  .philo-left { padding: 4rem 2rem; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .newsletter { padding: 3rem 2rem; }
  .newsletter-form { flex-direction: column; }
  footer { padding: 3rem 2rem 2rem; }

  .origins-layout { grid-template-columns: 1fr; }
  .origins-aside { position: static; }
  .principles-grid { grid-template-columns: 1fr; }
  .wu-xing { width: 300px; height: 300px; }
  .element-node { width: 75px; height: 75px; }
  .el-node-char { font-size: 1.2rem; }
  .herbs-showcase { grid-template-columns: 1fr; }
  .herb-entry:nth-child(odd) { border-right: none; }
  .diag-grid { grid-template-columns: repeat(2, 1fr); }
  .formula-showcase { grid-template-columns: 1fr; }
}

@media (hover: none) {
  .product-actions { bottom: 0; }
  .product-card:hover { transform: none; }
  .product-card:hover .product-img-inner { transform: none; }
}

@media (max-width: 480px) {
  .splash-btn { padding: 1rem 2.5rem; }

  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .diag-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }

  .wu-xing { width: 240px; height: 240px; }
  .element-node { width: 55px; height: 55px; }
  .el-node-char { font-size: 0.9rem; }

  .chapter-inner { padding: 0 1rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { justify-content: center; }

  .cart-drawer { right: -100vw; width: 100vw; }
}

/* ══ BILAN SANTÉ ══ */
.bilan-section { background: var(--parchment); padding: 6rem 5rem; }
.bilan-intro { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; font-size: 0.9rem; line-height: 1.85; color: #4a5a4a; font-weight: 300; }

.quiz-progress-bar { max-width: 680px; margin: 0 auto 2.5rem; }
.progress-steps { display: flex; justify-content: space-between; margin-bottom: 0.6rem; }
.progress-step { font-size: 0.62rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; transition: color 0.3s; }
.progress-step.active { color: var(--jade); }
.progress-track { height: 2px; background: var(--parchment); border: 1px solid rgba(45,90,39,0.15); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(to right, var(--jade), var(--gold)); transition: width 0.5s ease; width: 14%; }

.quiz-card { max-width: 680px; margin: 0 auto; background: var(--white); border: 1px solid rgba(45,90,39,0.12); padding: 3rem; position: relative; }
.quiz-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--jade), var(--gold)); }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-q-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.75rem; color: var(--gold); letter-spacing: 0.15em; display: block; margin-bottom: 0.5rem; }
.quiz-q-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--deep); margin-bottom: 0.4rem; line-height: 1.3; }
.quiz-q-sub { font-size: 0.78rem; font-weight: 300; color: #8a9a8a; margin-bottom: 2rem; display: block; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 2rem; }
.quiz-options.cols-1 { grid-template-columns: 1fr; }
.quiz-opt { border: 1px solid rgba(45,90,39,0.2); padding: 0.9rem 1.2rem; cursor: pointer; transition: all 0.25s; text-align: left; background: transparent; font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 300; color: var(--ink); display: flex; align-items: center; gap: 0.8rem; }
.quiz-opt:hover { border-color: var(--jade); background: var(--mist); }
.quiz-opt.selected { border-color: var(--jade); background: rgba(45,90,39,0.06); color: var(--jade); }
.quiz-opt.selected .opt-check { background: var(--jade); border-color: var(--jade); color: #fff; }
.opt-check { width: 20px; height: 20px; border: 1px solid rgba(45,90,39,0.3); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; transition: all 0.2s; }
.quiz-opt-emoji { font-size: 1.1rem; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.quiz-btn-back { background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 300; letter-spacing: 0.1em; color: #9a9a9a; text-transform: uppercase; transition: color 0.2s; padding: 0; }
.quiz-btn-back:hover { color: var(--jade); }
.quiz-btn-next { background: var(--jade); color: var(--white); border: none; padding: 0.75rem 2rem; font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.quiz-btn-next:hover { background: var(--jade-light); }
.quiz-btn-next:disabled { background: #ccc; cursor: not-allowed; }

.quiz-result { display: none; }
.quiz-result.active { display: block; }
.result-profile { text-align: center; padding: 1rem 0 2rem; }
.result-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.result-label { font-family: 'Jost', sans-serif; font-size: 0.65rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.result-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--deep); margin-bottom: 0.3rem; }
.result-chinese { font-family: 'Noto Serif SC', serif; font-size: 0.9rem; color: var(--jade); letter-spacing: 0.2em; display: block; margin-bottom: 1.2rem; }
.result-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.85; color: #5a6a5a; max-width: 480px; margin: 0 auto 2rem; }
.result-products { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.result-product-tag { border: 1px solid var(--jade); color: var(--jade); padding: 0.4rem 1rem; font-size: 0.72rem; font-weight: 300; letter-spacing: 0.08em; }
.result-divider { height: 1px; background: rgba(45,90,39,0.12); margin: 2rem 0; }

/* ══ VISIOCONFÉRENCE ══ */
.visio-section { background: var(--deep); padding: 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.visio-eyebrow { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.visio-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.visio-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 1.2rem; }
.visio-title em { color: var(--gold); font-style: italic; }
.visio-text { font-size: 0.87rem; font-weight: 300; line-height: 1.85; color: rgba(247,243,237,0.65); margin-bottom: 2rem; }
.visio-features { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; }
.visio-feature { display: flex; align-items: center; gap: 0.9rem; font-size: 0.83rem; font-weight: 300; color: rgba(247,243,237,0.75); }
.visio-feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.booking-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); padding: 2.5rem; }
.booking-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: var(--cream); margin-bottom: 1.8rem; text-align: center; }
.booking-field { margin-bottom: 1.2rem; }
.booking-label { font-size: 0.65rem; font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.booking-input, .booking-select, .booking-textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.2); color: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.83rem; font-weight: 300; padding: 0.75rem 1rem; outline: none; transition: border-color 0.3s; -webkit-appearance: none; }
.booking-input::placeholder, .booking-textarea::placeholder { color: rgba(247,243,237,0.3); }
.booking-input:focus, .booking-select:focus, .booking-textarea:focus { border-color: var(--gold); }
.booking-select option { background: var(--deep); color: var(--cream); }
.booking-textarea { resize: vertical; min-height: 80px; }
.booking-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.slot-btn { border: 1px solid rgba(201,168,76,0.2); background: transparent; color: rgba(247,243,237,0.6); padding: 0.5rem 0.3rem; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 300; cursor: pointer; transition: all 0.2s; text-align: center; }
.slot-btn:hover { border-color: var(--gold); color: var(--gold); }
.slot-btn.selected { background: var(--gold); color: var(--deep); border-color: var(--gold); }
.booking-submit { width: 100%; background: var(--gold); color: var(--deep); border: none; padding: 1rem; font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.booking-submit:hover { background: var(--gold-light); }
.booking-note { text-align: center; font-size: 0.7rem; font-weight: 300; color: rgba(247,243,237,0.35); margin-top: 1rem; line-height: 1.6; }
.booking-confirm { display: none; text-align: center; padding: 2rem 0; }
.booking-confirm.show { display: block; }
.confirm-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.confirm-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--cream); margin-bottom: 0.5rem; }
.confirm-text { font-size: 0.82rem; font-weight: 300; color: rgba(247,243,237,0.6); line-height: 1.7; }

@media (max-width: 900px) {
  .bilan-section { padding: 4rem 1.5rem; }
  .quiz-options { grid-template-columns: 1fr; }
  .visio-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .booking-slots { grid-template-columns: repeat(2, 1fr); }
}
