/* ============================================================
   NIGELLE D'OR — MAIN STYLESHEET
   Direction : crème dominant · sections claires/sombres alternées
   Palette officielle Nigelle OS — Tome 2 §8
   ============================================================ */

:root {
  /* Couleurs officielles */
  --black:       #0D0B09;  /* noir profond chaud (sections sombres) */
  --ink:         #16120C;  /* texte principal sur fond clair */
  --gold:        #C9A84C;  /* or — accent discret */
  --gold-deep:   #B8923A;
  --cream:       #F2EDE3;  /* fond dominant */
  --paper:       #FBF8F1;  /* sections/cartes légèrement plus claires */
  --violet:      #3A1747;  /* ambiance savon/lavande */
  --violet-deep: #2A1233;

  /* Texte */
  --on-light:        #16120C;
  --on-light-muted:  rgba(22,18,12,0.62);
  --on-light-faint:  rgba(22,18,12,0.40);
  --on-dark:         #F2EDE3;
  --on-dark-muted:   rgba(242,237,227,0.66);

  /* Lignes */
  --line:        rgba(22,18,12,0.12);
  --line-soft:   rgba(22,18,12,0.07);
  --line-dark:   rgba(242,237,227,0.14);
  --line-gold:   rgba(201,168,76,0.40);

  --radius: 2px;
  --radius-pill: 100px;

  --nav-h: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
  --gutter: 48px;

  /* ── Alias de compatibilité (anciens noms → thème clair) ──
     Utilisés par woocommerce.css et quelques templates. */
  --black-soft:   var(--paper);
  --text-dark:    var(--ink);
  --text-body:    var(--ink);
  --text-muted:   var(--on-light-muted);
  --text-light:   var(--on-light-muted);
  --border-dark:  var(--line);
  --border-light: var(--line);
  --border-gold:  var(--line-gold);
  --gold-pale:    rgba(201,168,76,0.10);
  --gold-light:   var(--gold-deep);
  --cream-dark:   #E8E1D3;
  --radius-sm:    2px;
  --space-lg:     64px;
  --space-xl:     112px;
}

/* Alias de classe : .label = .eyebrow (markup existant footer/WC/pages) */
.label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--on-light-muted);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-light);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHIE ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 300; line-height: 1.12; letter-spacing: -0.015em; color: inherit; }
h1 { font-size: clamp(44px, 6vw, 80px); }
h2 { font-size: clamp(30px, 4vw, 50px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
p  { line-height: 1.75; }

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-light-muted);
}
.eyebrow--gold { color: var(--gold); }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }

.section-intro { max-width: 640px; margin-bottom: 64px; }
.section-intro .eyebrow { margin-bottom: 18px; display: block; }
.section-intro h2 { margin-bottom: 0; }
.section-intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead { font-size: 17px; color: var(--on-light-muted); margin-top: 20px; }

/* ── BOUTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn-sm { padding: 12px 22px; font-size: 11px; }
.btn-full { width: 100%; }

/* Principal sur fond clair : noir profond, texte crème */
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #2a2218; transform: translateY(-1px); }

/* Or — utilisé surtout sur sections sombres */
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* Secondaire : trait fin */
.btn-line { background: transparent; border: 1px solid var(--on-dark-muted); color: var(--on-dark); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }
.btn-line--dark { border-color: var(--line); color: var(--ink); }
.btn-line--dark:hover { border-color: var(--ink); color: var(--ink); }

/* ── HEADER / NAV ──────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
#site-header.scrolled {
  background: rgba(242,237,227,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line-soft);
  height: 64px;
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.nav-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-brand .nav-logo,
.nav-brand .custom-logo {
  width: 48px !important; height: 48px !important;
  max-width: 48px !important; max-height: 48px !important;
  object-fit: contain !important; display: block !important;
}
#site-header.scrolled .nav-brand .nav-logo,
#site-header.scrolled .nav-brand .custom-logo { width: 40px !important; height: 40px !important; }
.nav-brand-name {
  font-size: 15px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
}

.nav-links-wrap { flex: 1; display: flex; justify-content: center; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  font-size: 12px; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
  position: relative; padding-bottom: 3px; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-icon-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--ink); cursor: pointer; transition: color 0.2s;
}
.nav-icon-btn:hover { color: var(--gold-deep); }
.cart-count {
  position: absolute; top: 4px; right: 2px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 600; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center; line-height: 1;
  opacity: 0; transform: scale(0); transition: all 0.2s var(--ease);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; height: 1.5px; background: var(--ink); transition: all 0.3s var(--ease); transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--cream); padding: calc(var(--nav-h) + 32px) var(--gutter) 48px;
  flex-direction: column; overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile-list { display: flex; flex-direction: column; }
.nav-mobile-list li { border-bottom: 1px solid var(--line); }
.nav-mobile-list a {
  display: block; padding: 22px 0; font-size: 26px; font-weight: 300;
  letter-spacing: -0.01em; color: var(--ink); transition: color 0.2s;
}
.nav-mobile-list a:hover { color: var(--gold-deep); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero { background: var(--cream); padding-top: var(--nav-h); }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px;
  align-items: center; min-height: calc(100vh - var(--nav-h));
  padding: 64px 0;
}
.hero-text { max-width: 540px; }
.hero .eyebrow { display: block; margin-bottom: 28px; }
.hero h1 { margin-bottom: 30px; }
.hero-accent { color: var(--gold-deep); font-style: italic; }
.hero-lead { font-size: 19px; line-height: 1.7; color: var(--on-light-muted); max-width: 420px; margin-bottom: 44px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn-line { border-color: var(--line); color: var(--ink); }
.hero-cta .btn-line:hover { border-color: var(--ink); color: var(--ink); }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(22,18,12,0.35);
}

/* ── PRODUITS ──────────────────────────────────────────────── */
.products { background: var(--paper); padding: 120px 0; }
.product-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pcard {
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.pcard:hover { box-shadow: 0 24px 48px -28px rgba(22,18,12,0.30); transform: translateY(-3px); }
.pcard-media { display: block; aspect-ratio: 4/3; overflow: hidden; background: #ece5d6; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.04); }
.pcard-body { padding: 36px; }
.pcard-name { font-size: 24px; font-weight: 300; margin-bottom: 12px; }
.pcard-name a { transition: color 0.2s; }
.pcard-name a:hover { color: var(--gold-deep); }
.pcard-desc { font-size: 15px; color: var(--on-light-muted); margin-bottom: 28px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pcard-price { font-size: 22px; font-weight: 300; color: var(--ink); }
.pcard-price del { color: var(--on-light-faint); font-size: 16px; margin-right: 6px; }
.pcard-price ins { text-decoration: none; }

/* ── POURQUOI LA NIGELLE ───────────────────────────────────── */
.why { background: var(--cream); padding: 120px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.why-item { border-top: 1px solid var(--line); padding-top: 28px; }
.why-num { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; color: var(--gold-deep); display: block; margin-bottom: 20px; }
.why-item h3 { font-size: 22px; margin-bottom: 14px; }
.why-item p { font-size: 15px; color: var(--on-light-muted); }

/* ── ROUTINE (section sombre) ──────────────────────────────── */
.routine {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(58,23,71,0.45) 0%, rgba(58,23,71,0) 55%),
    var(--black);
  color: var(--on-dark);
  padding: 120px 0;
}
.routine-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.routine-text { max-width: 460px; }
.routine-text .eyebrow { display: block; margin-bottom: 24px; }
.routine-text h2 { margin-bottom: 22px; }
.routine-text p { font-size: 17px; color: var(--on-dark-muted); margin-bottom: 38px; }
.routine-visual img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); }

/* ── BIENTÔT DISPONIBLE (aperçu) ───────────────────────────── */
.coming-preview { background: var(--paper); padding: 120px 0; text-align: center; }
.coming-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  max-width: 720px; margin: 0 auto 48px;
}
.coming-list li {
  font-size: 13px; font-weight: 400; letter-spacing: 0.08em;
  color: var(--on-light-muted);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 12px 26px;
}
.coming-preview-cta { margin-top: 8px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--cream); padding: 120px 0; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { margin-top: 8px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 0; cursor: pointer; text-align: left;
  font-size: 18px; font-weight: 400; color: var(--ink); transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-deep); }
.faq-icon { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq-icon::before { width: 16px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 16px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 0 28px; font-size: 15px; line-height: 1.8; color: var(--on-light-muted); max-width: 660px; }

/* ── NEWSLETTER (sobre, sur fond clair) ────────────────────── */
.newsletter-section { background: var(--cream); padding: 100px 0; border-top: 1px solid var(--line-soft); }
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-section .label, .newsletter-section .eyebrow { display: block; margin-bottom: 16px; color: var(--on-light-muted); }
.newsletter-section h2 { margin-bottom: 14px; }
.newsletter-desc { font-size: 16px; color: var(--on-light-muted); margin-bottom: 36px; }
.newsletter-form {
  display: flex; max-width: 460px; margin: 0 auto;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper);
}
.newsletter-form input { flex: 1; padding: 17px 20px; font-size: 15px; color: var(--ink); background: transparent; }
.newsletter-form input::placeholder { color: var(--on-light-faint); }
.newsletter-form button {
  padding: 17px 28px; background: var(--ink); color: var(--cream);
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s; white-space: nowrap;
}
.newsletter-form button:hover { background: #2a2218; }
.newsletter-feedback { min-height: 20px; margin-top: 16px; font-size: 14px; color: var(--ink); }
.newsletter-feedback--err { color: #9a3b2e; }
.newsletter-note { margin-top: 12px; font-size: 12px; color: var(--on-light-faint); }

/* ── FOOTER (clair) ────────────────────────────────────────── */
#site-footer { background: var(--cream); color: var(--on-light); padding: 80px 0 40px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--line-soft); }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; color: var(--on-light-muted); max-width: 280px; }
.footer-col h6 { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; color: var(--on-light-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-deep); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 32px; font-size: 13px; color: var(--on-light-faint); flex-wrap: wrap; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-deep); }

/* ── DRAWER PANIER ─────────────────────────────────────────── */
.cart-drawer-overlay { position: fixed; inset: 0; background: rgba(22,18,12,0.35); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.cart-drawer-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; width: min(420px, 100vw); height: 100vh; background: var(--cream); border-left: 1px solid var(--line); z-index: 301; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s var(--ease); }
.cart-drawer.open { transform: none; }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.cart-drawer-title { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; }
.cart-drawer-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; color: var(--on-light-muted); transition: all 0.2s; }
.cart-drawer-close:hover { color: var(--ink); border-color: var(--ink); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.cart-drawer-empty { text-align: center; padding: 60px 20px; color: var(--on-light-muted); font-size: 14px; }
.cart-drawer-empty svg { margin: 0 auto 16px; opacity: 0.35; }
.cart-drawer-footer { padding: 20px 28px 28px; border-top: 1px solid var(--line); }
.cart-drawer-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: 14px; }
.cart-drawer-subtotal span:last-child { font-size: 19px; font-weight: 300; }

/* ── REVEAL ────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── SHOP / PRODUIT (light) ────────────────────────────────── */
.shop-header { padding: calc(var(--nav-h) + 72px) 0 56px; background: var(--cream); text-align: center; }
.shop-header .eyebrow, .shop-header .label { display: block; margin-bottom: 14px; }
.shop-header h1 { margin-bottom: 14px; }
.shop-header p { font-size: 16px; color: var(--on-light-muted); max-width: 460px; margin: 0 auto; }
.shop-grid-wrapper { padding: 24px 0 110px; background: var(--paper); }

/* Fiche produit */
.single-product-section { padding-top: var(--nav-h); background: var(--cream); }
.single-product-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; }
.product-gallery-col { position: sticky; top: var(--nav-h); background: var(--paper); padding: 48px; }
.product-info-col { padding: 72px 56px 96px; }
.product-category { display: block; margin-bottom: 12px; color: var(--on-light-muted); }
.product-title { font-size: clamp(26px, 3vw, 40px); font-weight: 300; margin: 10px 0 18px; }
.product-short-desc { font-size: 16px; line-height: 1.8; color: var(--on-light-muted); margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.product-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.rating-count { font-size: 13px; color: var(--on-light-muted); }
.product-purchase-block { margin-bottom: 22px; }
.product-reassurance { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; padding: 22px; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.reassurance-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--on-light-muted); }
.reassurance-item svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }
.product-breadcrumb { font-size: 12px; color: var(--on-light-muted); margin-bottom: 20px; }
.product-breadcrumb a:hover { color: var(--gold-deep); }
.product-tabs-section { background: var(--paper); border-top: 1px solid var(--line); padding: 72px 0; }
.product-why-nigelle { background: var(--cream); padding: 90px 0; }
.why-grid + .why-grid, .product-why-nigelle .why-grid { grid-template-columns: 1fr 1fr; gap: 56px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: 0; padding: 40px 0 64px; text-align: left; }
  .hero-visual img { aspect-ratio: 16/11; }
  .product-pair { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .routine-inner { grid-template-columns: 1fr; gap: 40px; }
  .single-product-inner { grid-template-columns: 1fr; }
  .product-gallery-col { position: relative; top: auto; padding: 32px; }
  .product-info-col { padding: 48px 32px 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .products, .why, .routine, .coming-preview, .faq { padding: 80px 0; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(38px, 11vw, 52px); }
  .newsletter-form { flex-direction: column; border: none; background: transparent; gap: 10px; }
  .newsletter-form input { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
  .newsletter-form button { border-radius: var(--radius); padding: 16px; }
}

/* Lien titre liste d'articles */
.post-list-link { transition: color 0.2s; }
.post-list-link:hover { color: var(--gold-deep); }

/* ── UTILITAIRE PAGES (page.php, single, archive, 404) ─────── */
.wc-page { padding: calc(var(--nav-h) + 64px) 0 110px; background: var(--cream); min-height: 60vh; }
.page-title { font-size: clamp(28px,3.5vw,46px); font-weight: 300; margin-bottom: 40px; }
.page-content { font-size: 16px; line-height: 1.85; color: var(--on-light-muted); }
.section { padding: 100px 0; }
.section--soft { background: var(--paper); }

/* ── PAGE BIENTÔT DISPONIBLE ───────────────────────────────── */
.coming-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-bottom: 80px;
}
.coming-card {
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 40px 32px;
  display: flex; flex-direction: column; align-items: flex-start; min-height: 220px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.coming-card:hover { box-shadow: 0 20px 40px -26px rgba(22,18,12,0.25); transform: translateY(-2px); }
.coming-badge {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--line-gold); border-radius: var(--radius-pill);
  padding: 6px 14px; margin-bottom: 24px;
}
.coming-name { font-size: 22px; font-weight: 300; margin-bottom: 10px; }
.coming-desc { font-size: 15px; line-height: 1.7; color: var(--on-light-muted); margin-bottom: 24px; flex: 1; }
.coming-cta { margin-top: auto; }

.waitlist { max-width: 540px; margin: 0 auto; text-align: center; padding: 24px 0 8px; }
.waitlist h2 { margin: 14px 0 12px; }
.waitlist-desc { font-size: 16px; color: var(--on-light-muted); margin-bottom: 32px; }

@media (max-width: 1024px) { .coming-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .coming-grid { grid-template-columns: 1fr; } }
