/* ==========================================================================
   LES CITRONS D'ÈZE — Design System
   Direction : éditoriale, solaire, slow-made
   ========================================================================== */

/* --- 0. FONTS (locales) ------------------------------------------------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces.woff2') format('woff2-variations'),
       url('../fonts/Fraunces.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces-Italic.woff2') format('woff2-variations'),
       url('../fonts/Fraunces-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans.woff2') format('woff2-variations'),
       url('../fonts/PlusJakartaSans.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-Italic.woff2') format('woff2-variations'),
       url('../fonts/PlusJakartaSans-Italic.woff2') format('woff2');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

/* --- 1. TOKENS ----------------------------------------------------------- */
:root {
  /* Couleurs — palette signature */
  --citron: #F5D63A;          /* jaune citron éclatant */
  --citron-clair: #FBE787;
  --citron-pale: #FAF1C8;
  --outremer: #0E2A47;        /* bleu Méditerranée profond */
  --outremer-clair: #1B3A5C;
  --azur: #4A7FB5;
  --ivoire: #F6F0E4;          /* crème principal */
  --ivoire-clair: #FAF6EC;
  --ivoire-fonce: #EDE5D2;
  --terre: #C97B5A;           /* terre cuite accent */
  --feuille: #6B8E5A;         /* vert feuille accent */
  --encre: #1A1A1A;
  --gris: #6B6B6B;
  --gris-clair: #B8B8B8;

  /* Tokens sémantiques — pilotés par data-theme */
  --bg: var(--ivoire);
  --bg-alt: var(--ivoire-clair);
  --bg-deep: var(--outremer);
  --bg-card: #FFFFFF;
  --text: var(--outremer);
  --text-soft: var(--gris);
  --text-inverse: var(--ivoire);
  --border: var(--ivoire-fonce);
  --border-soft: rgba(14, 42, 71, 0.08);
  --shadow-card: 0 1px 30px rgba(14, 42, 71, 0.05);
  --surface-glass: rgba(246, 240, 228, 0.92);

  /* Typographie */
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

  /* Échelle typographique fluide */
  --fs-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --fs-sm: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --fs-md: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  --fs-lg: clamp(1.35rem, 1.15rem + 0.8vw, 1.65rem);
  --fs-xl: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  --fs-2xl: clamp(2.5rem, 1.8rem + 3vw, 4.5rem);
  --fs-3xl: clamp(3.5rem, 2.4rem + 5vw, 7.5rem);
  --fs-4xl: clamp(4rem, 2.5rem + 7vw, 10rem);

  /* Espacement */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 9rem;
  --sp-11: 12rem;

  /* Layout */
  --max-w: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 22px;

  /* Easings & durations */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.25s;
  --t-base: 0.5s;
  --t-slow: 0.9s;
}

/* ===== MODE NUIT — Palette WCAG AA ===== */
/*
   Cibles de contraste vérifiées :
   - text (#FBF6EB) sur bg (#0F1E33)        : ~14.5:1   AAA
   - text-soft (#C5CDD8) sur bg             : ~9.4:1    AAA
   - terre (#ECB39A) sur bg                 : ~7.8:1    AAA
   - citron (#F5D63A) sur bg                : ~11.2:1   AAA
   - terre (#ECB39A) sur bg-alt (#192C49)   : ~7.0:1    AAA
*/
[data-theme="dark"] {
  --ivoire: #0F1E33;
  --ivoire-clair: #192C49;
  --ivoire-fonce: rgba(251, 246, 235, 0.20);
  --outremer: #FBF6EB;
  --outremer-clair: #ECE2C8;
  --encre: #FBF6EB;
  --gris: #C5CDD8;
  --gris-clair: #8C97A4;
  --terre: #ECB39A;
  --feuille: #A5C490;
  --azur: #A3C2E0;

  --bg: #0F1E33;
  --bg-alt: #192C49;
  --bg-deep: #081830;
  --bg-card: #1F345A;
  --text: #FBF6EB;
  --text-soft: #C5CDD8;
  --text-inverse: #0F1E33;
  --border: rgba(251, 246, 235, 0.20);
  --border-soft: rgba(251, 246, 235, 0.10);
  --shadow-card: 0 1px 30px rgba(0, 0, 0, 0.4);
  --surface-glass: rgba(15, 30, 51, 0.92);
}

/* Transition de thème fluide */
html { transition: background-color 0.4s var(--ease); }
body, .nav, .footer, .cart-drawer, .product-card, .article-card,
.collection-card, .sf-card, .shop-chip, .accordion-item, .recipe-card,
section, header, main, aside, footer {
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

/* Focus visible — accessibilité clavier */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--citron);
  outline-offset: 3px;
  border-radius: 3px;
}
button:focus-visible, a:focus-visible {
  outline-color: var(--citron);
}

/* --- 2. RESET ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--encre);
  background: var(--ivoire);
  overflow-x: hidden;
  /* Texture grain très subtile */
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img, picture, video, svg { max-width: 100%; display: block; }
img { height: auto; }

button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--citron); color: var(--outremer); }

/* --- 3. TYPOGRAPHIE ----------------------------------------------------- */
.display, h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  /* Optical sizing pour Fraunces — SOFT à 0 pour un rendu plus net et architectural */
  font-variation-settings: "opsz" 144, "SOFT" 0;
}

.display-xl { font-size: var(--fs-4xl); letter-spacing: -0.035em; }
.display-lg { font-size: var(--fs-3xl); letter-spacing: -0.03em; }
.display-md { font-size: var(--fs-2xl); letter-spacing: -0.025em; }
.display-sm { font-size: var(--fs-xl); letter-spacing: -0.02em; }

/* Désactive l'italique par défaut sur <em> ; la mise en valeur passe par graisse + couleur. */
em {
  font-style: normal;
  font-weight: 300;
  color: var(--terre);
}

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--outremer);
}

.eyebrow--citron { color: var(--citron); }
.eyebrow--ivoire { color: var(--ivoire); }

.lead {
  font-family: var(--display);
  font-size: var(--fs-lg);
  line-height: 1.45;
  font-weight: 400;
  color: var(--outremer);
}

p { line-height: 1.65; }

/* --- 4. LAYOUT ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow { max-width: 900px; }
.container--wide { max-width: 1680px; }

.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--snug { padding-block: clamp(2.5rem, 5vw, 5rem); }
.section--airy { padding-block: clamp(5rem, 10vw, 9rem); }

/* --- 5. NAVIGATION ------------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.25rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  transition: background var(--t-base) var(--ease), padding var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.nav.is-scrolled {
  background: var(--surface-glass);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding-block: 0.85rem;
  box-shadow: 0 1px 0 var(--border-soft);
}

.nav__left, .nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav__right { justify-content: flex-end; }

.nav__brand {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0;
  transition: transform var(--t-base) var(--ease);
}

/* On masque le libellé "Les Citrons d'Èze" — le logo seul fait office de marque */
.nav__brand > span { display: none; }

.nav__brand-mark {
  width: 62px; height: 62px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--t-base) var(--ease);
  /* Halo doux derrière le logo pour le détacher du fond image sur le hero */
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.18);
}

.nav.is-scrolled .nav__brand-mark {
  width: 52px; height: 52px;
  box-shadow: none;
}

.nav__brand:hover .nav__brand-mark { transform: rotate(-12deg); }

.nav__link {
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ivoire);
  transition: color var(--t-fast) var(--ease);
  position: relative;
  padding: 0.4rem 0;
}

/* État scrollé : nav avec fond clair, on force le texte en bleu nuit pour la lisibilité */
.nav.is-scrolled .nav__link,
.nav.is-scrolled a.nav__link { color: var(--text); }

/* Page courante : conserve l'accent terracotta dans tous les états */
.nav__link.is-current,
.nav.is-scrolled .nav__link.is-current { color: var(--terre); }

.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--t-base) var(--ease), left var(--t-base) var(--ease);
}

.nav__link:hover::after { width: 100%; left: 0; }

/* Pill switch FR / EN */
.nav__lang {
  position: relative;
  display: inline-flex;
  background: rgba(246, 240, 228, 0.12);
  border: 1px solid rgba(246, 240, 228, 0.22);
  border-radius: 999px;
  padding: 2px;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav.is-scrolled .nav__lang {
  background: rgba(14, 42, 71, 0.06);
  border-color: var(--border);
}

.nav__lang button {
  position: relative;
  z-index: 2;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  color: var(--ivoire);
  opacity: 0.65;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: opacity var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.nav.is-scrolled .nav__lang button { color: var(--text); }

.nav__lang button.is-active {
  opacity: 1;
  color: var(--outremer);
}

[data-theme="dark"] .nav__lang button.is-active { color: var(--ivoire); }

.nav__lang__slider {
  position: absolute;
  top: 2px;
  bottom: 2px;
  width: calc(50% - 2px);
  background: var(--citron);
  border-radius: 999px;
  transition: transform 0.35s var(--ease);
  z-index: 1;
}

.nav__lang.is-en .nav__lang__slider { transform: translateX(100%); }

/* Bouton mode jour / nuit */
.nav__theme {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(246, 240, 228, 0.12);
  border: 1px solid rgba(246, 240, 228, 0.22);
  color: var(--ivoire);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.nav.is-scrolled .nav__theme {
  background: rgba(14, 42, 71, 0.06);
  border-color: var(--border);
  color: var(--text);
}

.nav__theme:hover {
  background: var(--citron);
  color: var(--outremer);
  transform: rotate(20deg);
}

.nav__theme svg { width: 16px; height: 16px; }

/* Affichage conditionnel des icônes selon le thème */
.nav__theme .icon-sun { display: none; }
.nav__theme .icon-moon { display: block; }
[data-theme="dark"] .nav__theme .icon-sun { display: block; }
[data-theme="dark"] .nav__theme .icon-moon { display: none; }

.nav__cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivoire);
  font-weight: 500;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav.is-scrolled .nav__cart { color: var(--text); }

.nav__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--citron);
  color: var(--outremer);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
}
.nav__menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivoire);
  transition: all var(--t-fast) var(--ease);
}
.nav.is-scrolled .nav__menu-toggle span { background: var(--outremer); }

/* --- 6. BOUTONS --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 1.8rem;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 99px;
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--citron);
  color: var(--outremer);
}

.btn--primary:hover {
  background: var(--outremer);
  color: var(--citron);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--outremer);
  border: 1px solid var(--outremer);
}

.btn--outline:hover {
  background: var(--outremer);
  color: var(--ivoire);
}

.btn--ivoire {
  background: var(--ivoire);
  color: var(--outremer);
}

.btn--ivoire:hover { background: var(--citron); }

.btn__arrow {
  display: inline-block;
  transition: transform var(--t-base) var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap var(--t-base) var(--ease);
}

.link-arrow:hover { gap: 1rem; }

/* --- 7. HERO ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--ivoire);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 14s var(--ease) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,42,71,0.55) 0%, rgba(14,42,71,0.25) 25%, rgba(14,42,71,0.30) 55%, rgba(14,42,71,0.85) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(14,42,71,0.65), transparent),
    linear-gradient(90deg, rgba(14,42,71,0.35) 0%, rgba(14,42,71,0) 50%);
}

.hero__inner {
  width: 100%;
  padding-top: clamp(7rem, 14vh, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
}

.hero__content { max-width: 720px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--citron);
}

.hero__title {
  font-size: clamp(2.6rem, 1.8rem + 4.2vw, 6rem);
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ivoire);
  font-weight: 400;
}

.hero__title em {
  color: var(--citron);
  font-weight: 300;
}

.hero__sub {
  font-family: var(--sans);
  font-size: var(--fs-md);
  line-height: 1.55;
  margin-top: 2.2rem;
  max-width: 480px;
  opacity: 0.92;
  font-weight: 400;
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__meta {
  text-align: right;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  align-self: end;
  padding-bottom: 0.5rem;
}

.hero__meta strong {
  display: block;
  font-family: var(--display);
  font-size: var(--fs-md);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-top: 0.5rem;
  font-weight: 400;
  opacity: 1;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 1s 1.4s var(--ease) both;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--ivoire) 0%, transparent 100%);
  animation: scrollLine 2s infinite var(--ease);
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Animations d'entrée hero */
.hero__eyebrow,
.hero__title,
.hero__sub,
.hero__cta,
.hero__meta { animation: fadeUp 1.2s var(--ease) both; }
.hero__eyebrow { animation-delay: 0.2s; }
.hero__title { animation-delay: 0.35s; }
.hero__sub { animation-delay: 0.6s; }
.hero__cta { animation-delay: 0.85s; }
.hero__meta { animation-delay: 1s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- 8. MANIFESTE ------------------------------------------------------- */
.manifesto {
  background: var(--ivoire);
  text-align: center;
  position: relative;
}

.manifesto__inner {
  max-width: 880px;
  margin: 0 auto;
}

.manifesto__lemon {
  width: 56px;
  height: 56px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.manifesto__text {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--outremer);
  font-weight: 400;
}

.manifesto__text em {
  font-weight: 300;
  color: var(--terre);
}

.manifesto__signature {
  margin-top: 2.5rem;
  font-family: var(--display);
  font-size: var(--fs-md);
  color: var(--terre);
}

.manifesto__divider {
  width: 1px;
  height: 60px;
  background: var(--outremer);
  margin: 3rem auto 0;
  opacity: 0.3;
}

/* --- 9. PRODUITS PHARES ------------------------------------------------- */
.products {
  background: var(--ivoire);
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head__title {
  font-size: var(--fs-2xl);
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--outremer);
  max-width: 12ch;
}

.section-head__title em { color: var(--terre); font-weight: 300; }

.section-head__meta {
  text-align: right;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--outremer);
  opacity: 0.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivoire-fonce);
  aspect-ratio: 4 / 5;
  margin-bottom: 1.25rem;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product-card:hover .product-card__media img { transform: scale(1.07); }

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ivoire);
  color: var(--outremer);
  padding: 0.4rem 0.8rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 99px;
  z-index: 2;
}

.product-card__badge--citron { background: var(--citron); }

.product-card__add {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: var(--ivoire);
  color: var(--outremer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base) var(--ease);
  opacity: 0;
  transform: translateY(10px);
  z-index: 2;
  font-size: 20px;
  line-height: 1;
}

.product-card:hover .product-card__add { opacity: 1; transform: translateY(0); }

.product-card__add:hover {
  background: var(--citron);
  transform: scale(1.08);
}

.product-card__category {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--display);
  font-size: var(--fs-md);
  letter-spacing: -0.015em;
  color: var(--outremer);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--fs-sm);
  color: var(--gris);
}

.product-card__price {
  font-weight: 600;
  color: var(--outremer);
}

.products__footer {
  text-align: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

/* --- 10. LE DOMAINE ----------------------------------------------------- */
.domaine {
  background: var(--outremer);
  color: var(--ivoire);
  position: relative;
  overflow: hidden;
}

.domaine__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.domaine__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}

.domaine__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* parallaxe via JS */
  will-change: transform;
}

.domaine__media-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--citron);
  color: var(--outremer);
  padding: 0.6rem 1.1rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 99px;
}

.domaine__content { max-width: 540px; }

.domaine__title {
  font-size: var(--fs-2xl);
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 1.2rem 0 1.8rem;
}

.domaine__title em { color: var(--citron); font-weight: 300; }

.domaine__lead {
  font-family: var(--display);
  font-size: var(--fs-lg);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--ivoire);
}

.domaine__body {
  font-size: var(--fs-base);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.domaine__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(246, 240, 228, 0.18);
}

.domaine__stat-number {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 1.5vw, 2.8rem);
  color: var(--citron);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.domaine__stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  opacity: 0.8;
}

.domaine__cta { margin-top: 1rem; }

.domaine .btn--outline { color: var(--ivoire); border-color: var(--ivoire); }
.domaine .btn--outline:hover { background: var(--citron); color: var(--outremer); border-color: var(--citron); }

/* Décoration */
.domaine::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 214, 58, 0.18), transparent 70%);
  pointer-events: none;
}

/* --- 11. COLLECTIONS ---------------------------------------------------- */
.collections {
  background: var(--ivoire);
  position: relative;
}

.collections__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}

.collections__intro h2 {
  font-size: var(--fs-2xl);
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--outremer);
}

.collections__intro h2 em { color: var(--terre); font-weight: 300; }

.collections__intro p {
  font-family: var(--display);
  font-size: var(--fs-md);
  color: var(--outremer);
  opacity: 0.7;
  line-height: 1.5;
  max-width: 420px;
  justify-self: end;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  background: var(--outremer);
  isolation: isolate;
}

.collection-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  z-index: -1;
}

.collection-card:hover .collection-card__img { transform: scale(1.08); }

.collection-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,71,0) 30%, rgba(14,42,71,0.85) 100%);
  z-index: 0;
}

.collection-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  color: var(--ivoire);
  z-index: 1;
}

.collection-card__num {
  font-family: var(--display);
  font-size: var(--fs-sm);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.collection-card__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.3rem);
  letter-spacing: -0.025em;
  margin: 0.4rem 0 0.8rem;
  line-height: 1;
}

.collection-card__title em { color: var(--citron); font-weight: 300; }

.collection-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
  transition: gap var(--t-base) var(--ease);
}

.collection-card:hover .collection-card__cta { gap: 1rem; }

/* --- 12. JOURNAL -------------------------------------------------------- */
.journal {
  background: var(--ivoire-clair);
  position: relative;
}

.journal-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 4fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.article-card { position: relative; }

.article-card--featured { grid-row: span 2; }

.article-card__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  background: var(--ivoire-fonce);
}

.article-card--featured .article-card__media { aspect-ratio: 5 / 6; }
.article-card:not(.article-card--featured) .article-card__media { aspect-ratio: 4 / 3; }

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.article-card:hover .article-card__media img { transform: scale(1.05); }

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.article-card__meta span:not(:last-child)::after {
  content: '·';
  margin-left: 0.8rem;
  color: var(--gris-clair);
}

.article-card__title {
  font-family: var(--display);
  font-size: var(--fs-lg);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--outremer);
  margin-bottom: 0.6rem;
}

.article-card--featured .article-card__title { font-size: var(--fs-xl); }

.article-card__excerpt {
  font-size: var(--fs-base);
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.article-card__link {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--outremer);
  border-bottom: 1px solid var(--outremer);
  padding-bottom: 2px;
}

/* --- 13. VALEURS (RIBBON) ----------------------------------------------- */
.values {
  background: var(--citron);
  color: var(--outremer);
  overflow: hidden;
  padding-block: 0;
}

.values__inner {
  display: flex;
  gap: 3rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  width: max-content;
}

.values__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.values__item::after {
  content: '✦';
  font-style: normal;
  color: var(--outremer);
  opacity: 0.5;
  font-size: 0.7em;
  margin-left: 3rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --- 14. NEWSLETTER + INSTA --------------------------------------------- */
.newsletter {
  background: var(--outremer);
  color: var(--ivoire);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__lemon {
  width: 60px;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}

.newsletter__title {
  font-family: var(--display);
  font-size: var(--fs-2xl);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1rem;
}

.newsletter__title em { color: var(--citron); font-weight: 300; }

.newsletter__sub {
  font-family: var(--display);
  font-size: var(--fs-md);
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(246, 240, 228, 0.4);
  transition: border-color var(--t-base) var(--ease);
}

.newsletter__form:focus-within { border-color: var(--citron); }

.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 0;
  color: var(--ivoire);
  font: inherit;
  font-size: var(--fs-base);
  outline: none;
}

.newsletter__input::placeholder { color: rgba(246, 240, 228, 0.5); }

.newsletter__submit {
  padding: 1rem 0 1rem 1rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--citron);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--t-base) var(--ease);
}

.newsletter__submit:hover { gap: 0.9rem; }

.newsletter__note {
  font-size: var(--fs-xs);
  opacity: 0.55;
  margin-top: 1.5rem;
}

/* --- INSTAGRAM (refonte éditoriale) ------------------------------------ */
.instagram {
  background: var(--bg);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.instagram__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

.instagram__handle {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.6rem);
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 0.4rem;
}

.instagram__handle .ig-icon {
  width: 1.05em;
  height: 1.05em;
  color: var(--terre);
  flex-shrink: 0;
}

.instagram__handle-accent {
  color: var(--terre);
  font-weight: 300;
}

.instagram__cta {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--text);
  transition: gap var(--t-fast) var(--ease);
}

.instagram__cta:hover { gap: 1rem; }

/* Grille éditoriale : 1 image phare + 4 carrées */
.ig-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  aspect-ratio: 2.4 / 1.4;
  max-height: 620px;
}

.ig-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--ivoire-fonce);
  cursor: pointer;
}

.ig-tile--featured {
  grid-row: 1 / -1;
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ig-tile:hover img { transform: scale(1.06); }

.ig-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 42, 71, 0.88) 100%);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ivoire);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.ig-tile:hover .ig-tile__overlay { opacity: 1; }

.ig-tile__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.ig-tile__meta .ig-heart::before {
  content: '♡ ';
  margin-right: 0.2rem;
}

.ig-tile__caption {
  font-family: var(--display);
  font-size: var(--fs-base);
  line-height: 1.35;
  color: var(--ivoire);
  font-weight: 400;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease);
}

.ig-tile:hover .ig-tile__caption { transform: translateY(0); }

.ig-tile--featured .ig-tile__caption { font-size: var(--fs-md); }

@media (max-width: 900px) {
  .ig-grid {
    aspect-ratio: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    max-height: none;
  }
  .ig-tile { aspect-ratio: 1; }
  .ig-tile--featured { grid-column: span 2; aspect-ratio: 16/10; grid-row: auto; }
}

@media (max-width: 560px) {
  .instagram__head { grid-template-columns: 1fr; gap: 1rem; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
}

/* --- 15. FOOTER --------------------------------------------------------- */
.footer {
  background: var(--ivoire);
  color: var(--outremer);
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
  border-top: 1px solid var(--ivoire-fonce);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer__logo img { width: 56px; height: 56px; border-radius: 50%; }

.footer__logo span {
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.footer__tagline {
  font-family: var(--display);
  font-size: var(--fs-base);
  line-height: 1.5;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.footer__col-title {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--outremer);
}

.footer__col ul li {
  margin-bottom: 0.6rem;
  font-size: var(--fs-sm);
}

.footer__col ul li a {
  color: var(--outremer);
  opacity: 0.7;
  transition: opacity var(--t-fast) var(--ease);
}

.footer__col ul li a:hover { opacity: 1; color: var(--terre); }

.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--outremer);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base) var(--ease);
  opacity: 0.7;
}

.footer__social a:hover {
  background: var(--outremer);
  color: var(--ivoire);
  opacity: 1;
  transform: translateY(-3px);
}

.footer__bigword {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 11rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--outremer);
  opacity: 0.08;
  text-align: center;
  margin: 0 0 -0.5rem;
  font-weight: 300;
  user-select: none;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--ivoire-fonce);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.05em;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom a:hover { color: var(--terre); opacity: 1; }

/* --- 16. PANIER LATÉRAL ------------------------------------------------- */
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(440px, 100%);
  background: var(--ivoire);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 60px rgba(14, 42, 71, 0.15);
}

.cart-drawer.is-open { transform: translateX(0); }

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 71, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}

.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid var(--ivoire-fonce);
}

.cart-drawer__title {
  font-family: var(--display);
  font-size: var(--fs-lg);
  color: var(--outremer);
}

.cart-drawer__close {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--outremer);
  padding: 0.3rem;
  transition: transform var(--t-fast) var(--ease);
}

.cart-drawer__close:hover { transform: rotate(90deg); }

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

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-empty p {
  font-family: var(--display);
  color: var(--gris);
  margin-bottom: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--ivoire-fonce);
  align-items: start;
}

.cart-item__img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--ivoire-fonce);
}

.cart-item__name {
  font-family: var(--display);
  font-size: var(--fs-base);
  color: var(--outremer);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.cart-item__variant {
  font-size: var(--fs-xs);
  color: var(--gris);
  margin-bottom: 0.6rem;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-sm);
}

.cart-item__qty button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--outremer);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: background var(--t-fast) var(--ease);
}

.cart-item__qty button:hover { background: var(--outremer); color: var(--ivoire); }

.cart-item__right { text-align: right; }

.cart-item__price {
  font-weight: 600;
  color: var(--outremer);
  font-size: var(--fs-sm);
}

.cart-item__remove {
  font-size: var(--fs-xs);
  color: var(--gris);
  margin-top: 0.5rem;
  text-decoration: underline;
}

.cart-item__remove:hover { color: var(--terre); }

.cart-drawer__foot {
  padding: 1.8rem 2rem 2rem;
  background: var(--ivoire-clair);
  border-top: 1px solid var(--ivoire-fonce);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  font-family: var(--display);
  color: var(--outremer);
}

.cart-drawer__total .label { font-size: var(--fs-md); }
.cart-drawer__total .value { font-size: var(--fs-lg); font-weight: 500; }

.cart-drawer__note {
  font-size: var(--fs-xs);
  text-align: center;
  color: var(--gris);
  margin-bottom: 1.2rem;
}

.cart-drawer__checkout {
  width: 100%;
  justify-content: center;
}

/* --- 17. REVEAL ANIMATIONS --------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; }

/* --- 18. PAGE PRODUIT --------------------------------------------------- */
.product-page {
  padding-top: clamp(6rem, 12vh, 9rem);
  background: var(--ivoire);
}

.breadcrumb {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 2.5rem;
}

.breadcrumb a { color: var(--outremer); }
.breadcrumb a:hover { color: var(--terre); }

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 6rem;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-gallery__main {
  grid-column: span 2;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivoire-fonce);
}

.product-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ivoire-fonce);
  cursor: pointer;
  transition: transform var(--t-base) var(--ease);
}

.product-gallery__thumb:hover { transform: translateY(-3px); }

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product-gallery__main:hover img { transform: scale(1.04); }

.product-info { position: sticky; top: 6rem; align-self: start; }

.product-info__category {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 1rem;
}

.product-info__title {
  font-family: var(--display);
  font-size: var(--fs-2xl);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--outremer);
  margin-bottom: 1.2rem;
}

.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.product-info__price .price {
  font-family: var(--display);
  font-size: var(--fs-xl);
  color: var(--outremer);
  font-weight: 500;
}

.product-info__price .unit {
  font-size: var(--fs-sm);
  color: var(--gris);
}

.product-info__lead {
  font-family: var(--display);
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--outremer);
  opacity: 0.85;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--ivoire-fonce);
}

.product-info__variants {
  margin-bottom: 2rem;
}

.variant-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--outremer);
  margin-bottom: 0.8rem;
  display: block;
}

.variant-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.variant-options button {
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--ivoire-fonce);
  border-radius: 99px;
  font-size: var(--fs-sm);
  color: var(--outremer);
  background: var(--ivoire-clair);
  transition: all var(--t-fast) var(--ease);
}

.variant-options button:hover { border-color: var(--outremer); }

.variant-options button.is-active {
  background: var(--outremer);
  color: var(--ivoire);
  border-color: var(--outremer);
}

.product-info__actions {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--ivoire-fonce);
  border-radius: 99px;
  padding: 0 0.5rem;
}

.qty-selector button {
  width: 36px;
  height: 36px;
  font-size: 1rem;
  color: var(--outremer);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-selector input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--outremer);
  outline: none;
  -moz-appearance: textfield;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.product-info__add { flex: 1; justify-content: center; }

.product-accordion {
  border-top: 1px solid var(--ivoire-fonce);
}

.accordion-item { border-bottom: 1px solid var(--ivoire-fonce); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-family: var(--display);
  font-size: var(--fs-md);
  color: var(--outremer);
  text-align: left;
}

.accordion-trigger .plus {
  font-family: var(--sans);
  font-size: 1.2rem;
  transition: transform var(--t-base) var(--ease);
}

.accordion-item.is-open .accordion-trigger .plus { transform: rotate(45deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease);
}

.accordion-item.is-open .accordion-content { max-height: 500px; }

.accordion-content > div {
  padding: 0 0 1.5rem;
  font-size: var(--fs-sm);
  color: var(--gris);
  line-height: 1.7;
}

.accordion-content ul { margin-top: 0.5rem; }
.accordion-content ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.accordion-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--citron);
  font-size: 0.7em;
  top: 4px;
}

.product-pairings {
  background: var(--outremer);
  color: var(--ivoire);
  padding: clamp(3rem, 7vw, 6rem) 0;
  margin: 4rem calc(50% - 50vw) 0;
  width: 100vw;
}

.product-pairings__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.product-pairings h3 {
  font-family: var(--display);
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
  line-height: 1;
}

.product-pairings h3 em { color: var(--citron); font-weight: 300; }

.pairing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pairing {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(246, 240, 228, 0.08);
  border-radius: var(--radius);
  transition: background var(--t-base) var(--ease);
}

.pairing:hover { background: rgba(245, 214, 58, 0.15); }

.pairing__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--citron);
  color: var(--outremer);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.pairing__name {
  font-family: var(--display);
  font-size: var(--fs-base);
  color: var(--ivoire);
}

.producer-note {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.producer-note__quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 1rem + 1.5vw, 2.2rem);
  line-height: 1.35;
  color: var(--outremer);
  letter-spacing: -0.02em;
  max-width: 880px;
  margin: 0 auto;
  font-weight: 400;
}

.producer-note__quote::before,
.producer-note__quote::after {
  content: '"';
  color: var(--citron);
  font-size: 1.5em;
  vertical-align: -0.2em;
  line-height: 0;
  margin: 0 0.1em;
}

.producer-note__author {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
}

.producer-note__author::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--terre);
}

/* --- 19. PAGE JOURNAL --------------------------------------------------- */
.article-page {
  background: var(--ivoire);
  padding-top: clamp(6rem, 12vh, 9rem);
}

.article-head {
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.article-head__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.article-head__meta span:not(:last-child)::after {
  content: '·';
  margin-left: 0.8rem;
  color: var(--gris-clair);
}

.article-head__title {
  font-family: var(--display);
  font-size: var(--fs-3xl);
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--outremer);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.article-head__title em { color: var(--terre); font-weight: 300; }

.article-head__lead {
  font-family: var(--display);
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--outremer);
  opacity: 0.88;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.article-head__author {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--fs-sm);
  color: var(--gris);
}

.article-head__author::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gris);
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--ivoire-fonce);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.18rem);
  line-height: 1.75;
  color: #2a2a2a;
}

.article-body > p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 5.5em;
  float: left;
  line-height: 0.85;
  padding: 0.15em 0.1em 0 0;
  color: var(--terre);
  font-weight: 400;
}

.article-body p { margin-bottom: 1.6rem; }

.article-body h2 {
  font-family: var(--display);
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
  color: var(--outremer);
  margin: 3rem 0 1.2rem;
  line-height: 1.1;
}

.article-body h2 em { color: var(--terre); font-weight: 300; }

.article-body h3 {
  font-family: var(--display);
  font-size: var(--fs-lg);
  color: var(--outremer);
  margin: 2.5rem 0 1rem;
}

.article-body blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 1rem + 1vw, 1.85rem);
  line-height: 1.4;
  color: var(--outremer);
  letter-spacing: -0.015em;
  padding: 2rem 0 2rem 2rem;
  margin: 3rem -2rem;
  border-left: 3px solid var(--citron);
  background: var(--ivoire-clair);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 400;
}

.article-body blockquote cite {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terre);
  margin-top: 1rem;
}

.article-body ul, .article-body ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

.article-body ul li, .article-body ol li {
  margin-bottom: 0.6rem;
  padding-left: 0.5rem;
  list-style-position: outside;
}

.article-body ul li { list-style: none; position: relative; padding-left: 1.4rem; }
.article-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--citron);
  font-size: 0.7em;
  top: 0.5em;
}

.article-body ol { list-style: none; counter-reset: step; }
.article-body ol li {
  counter-increment: step;
  position: relative;
  padding-left: 2rem;
}

.article-body ol li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  font-family: var(--display);
  color: var(--terre);
  font-weight: 500;
}

.article-body figure {
  margin: 3rem -2rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-body figure img {
  width: 100%;
  border-radius: var(--radius);
}

.article-body figcaption {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris);
  text-align: center;
  margin-top: 0.8rem;
}

.recipe-card {
  background: var(--outremer);
  color: var(--ivoire);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius);
  margin: 3rem 0;
}

.recipe-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.recipe-card h3 {
  font-family: var(--display);
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
  color: var(--ivoire);
  margin: 0;
}

.recipe-card h3 em { color: var(--citron); font-weight: 300; }

.recipe-card__meta {
  display: flex;
  gap: 1.5rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.recipe-card__cols {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
}

.recipe-card h4 {
  font-family: var(--display);
  font-size: var(--fs-md);
  color: var(--citron);
  margin-bottom: 1rem;
}

.recipe-card ul {
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin: 0;
}

.recipe-card ul li {
  padding-left: 1.2rem;
  position: relative;
  list-style: none;
}

.recipe-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--citron);
  font-size: 1.5em;
  line-height: 1;
  top: 0;
}

.recipe-card ol {
  font-size: var(--fs-sm);
  line-height: 1.65;
  counter-reset: rstep;
  list-style: none;
  margin: 0;
}

.recipe-card ol li {
  counter-increment: rstep;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
}

.recipe-card ol li::before {
  content: counter(rstep);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--display);
  color: var(--citron);
  font-size: 1.4em;
  font-weight: 400;
}

.article-share {
  max-width: 720px;
  margin: 4rem auto 0;
  padding: 2rem 0;
  border-top: 1px solid var(--ivoire-fonce);
  border-bottom: 1px solid var(--ivoire-fonce);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.article-share__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--outremer);
  font-weight: 600;
}

.article-share__links {
  display: flex;
  gap: 0.6rem;
}

.article-share__links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--outremer);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base) var(--ease);
}

.article-share__links a:hover {
  background: var(--outremer);
  color: var(--ivoire);
}

.related-articles {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.related-articles__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem;
}

.related-articles__head h2 {
  font-family: var(--display);
  font-size: var(--fs-2xl);
  color: var(--outremer);
  letter-spacing: -0.03em;
}

.related-articles__head h2 em { color: var(--terre); font-weight: 300; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* --- 20. CURSOR PERSO --------------------------------------------------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--outremer);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width var(--t-base) var(--ease), height var(--t-base) var(--ease), background var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  mix-blend-mode: difference;
  display: none;
}

.cursor.is-hover {
  width: 50px;
  height: 50px;
  background: var(--citron);
}

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a, button, input, textarea { cursor: none; }
}

/* --- 21. RESPONSIVE ----------------------------------------------------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 2fr 1fr 1fr; }
  .footer__col:nth-child(4), .footer__col:nth-child(5) { grid-column: span 1; }
  .product-layout { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .article-card--featured { grid-column: span 2; grid-row: auto; }
  .article-card--featured .article-card__media { aspect-ratio: 16/9; }
}

@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto 1fr; padding: 1rem var(--gutter); }
  .nav__left { display: none; }
  .nav__brand { justify-self: start; }
  .nav__right { gap: 1rem; }
  .nav__right .nav__link { display: none; }
  .nav__menu-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 2rem; align-items: end; }
  .hero__meta { text-align: left; }
  .hero__media img { object-position: center 25%; }

  .domaine__grid { grid-template-columns: 1fr; }
  .domaine__media { aspect-ratio: 4/5; max-height: 70vh; }

  .collections__intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .collections__intro p { justify-self: start; }
  .collections-grid { grid-template-columns: 1fr; }
  .collection-card:nth-child(2) { margin-top: 0; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }

  .journal-grid { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: span 1; }
  .article-card--featured .article-card__media { aspect-ratio: 4/3; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; }

  .section-head { grid-template-columns: 1fr; }
  .section-head__meta { text-align: left; }

  .product-pairings__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .pairing-grid { grid-template-columns: 1fr; }

  .related-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .article-body figure, .article-body blockquote { margin-left: 0; margin-right: 0; }
  .article-body blockquote { padding-left: 1.5rem; }

  .recipe-card__cols { grid-template-columns: 1fr; gap: 1.5rem; }

  .hero__title { font-size: clamp(3rem, 9vw, 5rem); }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .section-head__title { max-width: 100%; }
  .domaine__stats { grid-template-columns: 1fr; gap: 1.2rem; padding-top: 1.5rem; margin-block: 2rem; }
  .domaine__stat-label { margin-top: 0.2rem; }
  .hero__cta { gap: 1rem; }
  .hero__cta .btn { padding: 0.9rem 1.4rem; }
  .product-info__actions { flex-direction: column; }
  .qty-selector { width: fit-content; }
}

/* --- 22. PRINT & ACCESSIBILITY ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--citron);
  outline-offset: 3px;
  border-radius: 4px;
}

.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;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--outremer);
  color: var(--ivoire);
  z-index: 180;
  display: flex;
  flex-direction: column;
  padding: 6rem var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform var(--t-slow) var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.mobile-menu nav a {
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--ivoire);
  transition: color var(--t-fast) var(--ease);
  line-height: 1.05;
}

.mobile-menu nav a:hover { color: var(--citron); }

.mobile-menu__foot {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 240, 228, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav.is-mobile-open .nav__menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); background: var(--ivoire) !important; }
.nav.is-mobile-open .nav__menu-toggle span:nth-child(2) { opacity: 0; }
.nav.is-mobile-open .nav__menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); background: var(--ivoire) !important; }
.nav.is-mobile-open .nav__brand, .nav.is-mobile-open .nav__cart, .nav.is-mobile-open .nav__lang { color: var(--ivoire); }

/* --- 25. LOADER — Arbre à citrons ------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ivoire);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

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

/* Empêche le scroll pendant le chargement */
body.is-loading { overflow: hidden; }

.loader__stage {
  position: relative;
  width: clamp(220px, 35vw, 320px);
  aspect-ratio: 1 / 1.05;
}

/* Arbre — secousse douce */
.loader__tree {
  width: 100%;
  height: 100%;
  transform-origin: 50% 92%;
  animation: treeShake 1.6s ease-in-out 0.2s 2 both;
}

@keyframes treeShake {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-2.5deg); }
  30%  { transform: rotate(1.8deg); }
  45%  { transform: rotate(-1.2deg); }
  60%  { transform: rotate(0.8deg); }
  80%  { transform: rotate(-0.4deg); }
  100% { transform: rotate(0deg); }
}

/* Citrons qui pendent dans l'arbre — disparaissent au moment où ceux qui tombent apparaissent */
.loader__tree-citron {
  transform-origin: center top;
  animation: hangSwing 1.6s ease-in-out 0.2s 2 both;
}
.loader__tree-citron--1 { animation-delay: 1.0s; animation-duration: 0.4s; animation-iteration-count: 1; animation-name: dropOff; }
.loader__tree-citron--2 { animation-delay: 1.6s; animation-duration: 0.4s; animation-iteration-count: 1; animation-name: dropOff; }
.loader__tree-citron--3 { animation-delay: 2.2s; animation-duration: 0.4s; animation-iteration-count: 1; animation-name: dropOff; }

@keyframes hangSwing {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(8deg); }
  75%      { transform: rotate(-6deg); }
}

@keyframes dropOff {
  to { opacity: 0; transform: translateY(10px); }
}

/* Citrons qui tombent en bas — couches d'animation indépendantes */
.loader__falling {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loader__falling-citron {
  position: absolute;
  width: 28px;
  height: 32px;
  opacity: 0;
}

.loader__falling-citron svg {
  width: 100%;
  height: 100%;
}

.loader__falling-citron--1 {
  top: 30%;
  left: 32%;
  animation: citronFall 1.4s cubic-bezier(0.4, 0, 0.5, 1.4) 1.0s both,
             citronBounce 0.5s ease-out 2.3s both;
}
.loader__falling-citron--2 {
  top: 36%;
  left: 50%;
  animation: citronFall 1.4s cubic-bezier(0.4, 0, 0.5, 1.4) 1.6s both,
             citronBounce 0.5s ease-out 2.9s both;
}
.loader__falling-citron--3 {
  top: 28%;
  left: 64%;
  animation: citronFall 1.4s cubic-bezier(0.4, 0, 0.5, 1.4) 2.2s both,
             citronBounce 0.5s ease-out 3.5s both;
}

@keyframes citronFall {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(180px) rotate(310deg); }
}

@keyframes citronBounce {
  0%   { transform: translateY(180px) rotate(310deg); }
  35%  { transform: translateY(170px) rotate(320deg); }
  70%  { transform: translateY(180px) rotate(322deg); }
  100% { transform: translateY(180px) rotate(322deg); }
}

.loader__brand {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--outremer);
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.loader__brand em { color: var(--terre); font-weight: 300; }

.loader__tagline {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gris);
  margin-top: -1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.7s forwards;
}

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .loader__tree, .loader__tree-citron, .loader__falling-citron, .loader__brand, .loader__tagline {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- 26. PAGE BOUTIQUE -------------------------------------------------- */
.page-head {
  padding-top: clamp(7rem, 14vh, 10rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg);
  position: relative;
}

.page-head__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 3rem;
}

.page-head__eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terre);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.page-head__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--terre);
}

.page-head__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 1.6rem + 5vw, 6rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--outremer);
  font-weight: 400;
}

.page-head__title em { color: var(--terre); font-weight: 300; }

.page-head__lead {
  font-family: var(--display);
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--outremer);
  opacity: 0.85;
  max-width: 500px;
  align-self: end;
  padding-bottom: 0.5rem;
}

.page-head__divider {
  height: 1px;
  background: var(--ivoire-fonce);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

/* Filtres / chips */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.shop-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.shop-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--ivoire-fonce);
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--outremer);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  font-weight: 500;
}

.shop-chip:hover { border-color: var(--outremer); }

.shop-chip.is-active {
  background: var(--outremer);
  color: var(--ivoire);
  border-color: var(--outremer);
}

.shop-chip__count {
  font-size: 0.7em;
  opacity: 0.6;
  font-weight: 400;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris);
}

.shop-sort select {
  font: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--outremer);
  color: var(--outremer);
  padding: 0.3rem 1.5rem 0.3rem 0.3rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%230E2A47' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.shop-banner {
  grid-column: span 3;
  background: var(--citron);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  margin: clamp(1rem, 2vw, 2rem) 0;
}

.shop-banner__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem);
  color: var(--outremer);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 400;
}

.shop-banner__title em { color: var(--outremer); font-weight: 200; }

.shop-banner__sub {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  color: var(--outremer);
  margin-top: 0.6rem;
  opacity: 0.8;
  max-width: 460px;
}

/* --- 27. PAGE DOMAINE --------------------------------------------------- */
.domaine-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.domaine-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 16s var(--ease) forwards;
}

.domaine-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14,42,71,0.4) 0%, rgba(14,42,71,0.1) 40%, rgba(14,42,71,0.7) 100%);
}

.domaine-hero__inner {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  color: var(--ivoire);
  max-width: var(--max-w);
  margin: 0 auto;
}

.domaine-hero__eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--citron);
  font-weight: 500;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.domaine-hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--citron);
}

.domaine-hero__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 1.6rem + 4vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 400;
  max-width: 18ch;
}

.domaine-hero__title em { color: var(--citron); font-weight: 300; }

.domaine-story {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.domaine-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.domaine-story__label {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 2vw, 3.5rem);
  line-height: 1;
  color: var(--outremer);
  letter-spacing: -0.03em;
  font-weight: 400;
  position: sticky;
  top: 100px;
}

.domaine-story__label em { color: var(--terre); font-weight: 300; }

.domaine-story__body {
  font-family: var(--display);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--outremer);
  max-width: 60ch;
}

.domaine-story__body p { margin-bottom: 1.4rem; }
.domaine-story__body p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  padding: 0.15em 0.15em 0 0;
  color: var(--terre);
  font-weight: 400;
}

/* Bande visuelle pleine largeur */
.domaine-band {
  position: relative;
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter));
  height: clamp(300px, 50vh, 520px);
}

.domaine-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.domaine-band__caption {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  color: var(--ivoire);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: rgba(14, 42, 71, 0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
}

/* Timeline / chronologie */
.timeline {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--outremer);
  color: var(--ivoire);
  margin: clamp(4rem, 8vw, 7rem) 0;
}

.timeline__head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.timeline__head .eyebrow { color: var(--citron); display: inline-block; margin-bottom: 1.2rem; }

.timeline__title {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 400;
  max-width: 22ch;
  margin: 0 auto;
}

.timeline__title em { color: var(--citron); font-weight: 300; }

.timeline__list {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-left: clamp(2rem, 5vw, 4rem);
}

.timeline__list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(245, 214, 58, 0.4);
}

.timeline__item {
  position: relative;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(2rem, 5vw, 4rem) - 4px);
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--citron);
  box-shadow: 0 0 0 4px var(--outremer);
}

.timeline__year {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
  color: var(--citron);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.timeline__heading {
  font-family: var(--display);
  font-size: var(--fs-lg);
  letter-spacing: -0.015em;
  margin-bottom: 0.8rem;
  color: var(--ivoire);
  font-weight: 400;
}

.timeline__text {
  font-family: var(--sans);
  line-height: 1.65;
  font-size: var(--fs-base);
  opacity: 0.85;
  max-width: 60ch;
}

/* Triptyque savoir-faire */
.savoir-faire {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.savoir-faire__intro {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.savoir-faire__intro h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--outremer);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.savoir-faire__intro h2 em { color: var(--terre); font-weight: 300; }

.savoir-faire__intro p {
  font-family: var(--display);
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--outremer);
  opacity: 0.85;
}

.savoir-faire__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.sf-card {
  position: relative;
}

.sf-card__num {
  font-family: var(--display);
  font-size: var(--fs-sm);
  color: var(--terre);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  display: block;
}

.sf-card__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.sf-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}

.sf-card:hover .sf-card__media img { transform: scale(1.05); }

.sf-card__title {
  font-family: var(--display);
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--outremer);
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.sf-card__title em { color: var(--terre); font-weight: 300; }

.sf-card__text {
  font-size: var(--fs-base);
  line-height: 1.55;
  color: var(--encre);
  max-width: 36ch;
}

/* Famille / portrait */
.famille {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--ivoire-clair);
}

.famille__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.famille__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.famille__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.famille__quote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.4rem);
  line-height: 1.35;
  color: var(--outremer);
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 2rem;
}

.famille__quote em { color: var(--terre); font-weight: 300; }

.famille__signature {
  font-family: var(--display);
  font-size: var(--fs-md);
  color: var(--outremer);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.famille__signature::before {
  content: '— ';
  color: var(--terre);
}

.famille__role {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
}

/* Chiffres-clés en bande */
.chiffres-band {
  background: var(--citron);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.chiffres-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.chiffre {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chiffre__num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5.5rem);
  line-height: 1;
  color: var(--outremer);
  letter-spacing: -0.04em;
  font-weight: 400;
}

.chiffre__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--outremer);
  margin-top: 0.7rem;
  font-weight: 500;
}

/* --- 28. RESPONSIVE — Boutique & Domaine -------------------------------- */
@media (max-width: 960px) {
  .page-head__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-head__lead { padding-bottom: 0; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-banner { grid-template-columns: 1fr; }
  .domaine-story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .domaine-story__label { position: static; }
  .savoir-faire__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .famille__grid { grid-template-columns: 1fr; }
  .chiffres-band__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .timeline__list { padding-left: 2rem; }
}

@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
}

/* État actif des liens de nav */
.nav__link.is-current {
  color: var(--terre);
}
.nav__link.is-current::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: var(--terre);
  margin-top: 3px;
}

/* --- 29. AJUSTEMENTS MODE NUIT ----------------------------------------- */

/* Grain texture quasi invisible en sombre */
[data-theme="dark"] body::before { opacity: 0.04; mix-blend-mode: lighten; }

/* Hero overlay : davantage sombre pour la lisibilité texte sur image */
[data-theme="dark"] .hero__overlay {
  background:
    linear-gradient(180deg, rgba(8,24,48,0.6) 0%, rgba(8,24,48,0.1) 25%, rgba(8,24,48,0.1) 55%, rgba(8,24,48,0.9) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(8,24,48,0.75), transparent);
}

[data-theme="dark"] .domaine-hero::before {
  background: linear-gradient(180deg, rgba(8,24,48,0.55) 0%, rgba(8,24,48,0.2) 40%, rgba(8,24,48,0.9) 100%);
}

/* Curseur custom */
[data-theme="dark"] .cursor { background: var(--citron); mix-blend-mode: normal; }

/* Ombres sur cartes pour décoller du fond */
[data-theme="dark"] .product-card__media,
[data-theme="dark"] .sf-card__media,
[data-theme="dark"] .ig-tile,
[data-theme="dark"] .famille__media,
[data-theme="dark"] .article-cover { box-shadow: var(--shadow-card); }

/* Pas de baisse de luminosité globale sur les photos — la perçue était une perte
   de lisibilité, on laisse les couleurs d'origine, juste un poil de saturation */
[data-theme="dark"] .product-card img,
[data-theme="dark"] .ig-tile img,
[data-theme="dark"] .article-card img,
[data-theme="dark"] .sf-card__media img { filter: saturate(1.05); }

/* ===== Annule les opacités qui composent mal avec le mode sombre ===== */
/* Toutes les couleurs de texte sont déjà choisies pour AAA — pas besoin d'opacité */
[data-theme="dark"] .hero__sub,
[data-theme="dark"] .hero__meta,
[data-theme="dark"] .article-card__excerpt,
[data-theme="dark"] .sf-card__text,
[data-theme="dark"] .domaine-story__body,
[data-theme="dark"] .contact-map__text,
[data-theme="dark"] .article-head__lead,
[data-theme="dark"] .product-info__lead,
[data-theme="dark"] .page-head__lead,
[data-theme="dark"] .savoir-faire__intro p,
[data-theme="dark"] .newsletter__sub,
[data-theme="dark"] .shop-banner__sub,
[data-theme="dark"] .domaine-story__body,
[data-theme="dark"] .timeline__text { opacity: 1; }

/* La famille__role et les section__meta utilisent opacity pour atténuer ;
   en sombre, on garde mais légèrement plus haut */
[data-theme="dark"] .section-head__meta { opacity: 0.85; }

/* Liens texte plus visibles en sombre */
[data-theme="dark"] a:not(.btn):not(.nav__link):not(.nav__brand):not(.product-card__media):not(.article-card__media):not(.collection-card):not(.ig-tile):not(.nav__cart) {
  color: var(--text);
}

/* Boutons primaires en sombre — citron sur outremer (qui est ivoire ici)
   donne un beau contraste, ~9:1 */
[data-theme="dark"] .btn--primary {
  background: var(--citron);
  color: #0F1E33;
  border-color: var(--citron);
}

[data-theme="dark"] .btn--primary:hover {
  background: #FBE787;
  color: #0F1E33;
}

[data-theme="dark"] .btn--outline {
  border-color: var(--text);
  color: var(--text);
}

[data-theme="dark"] .btn--outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* Newsletter — fond fixe en mode jour, fond contrasté en sombre */
.newsletter { background: var(--outremer); color: var(--ivoire); }
[data-theme="dark"] .newsletter { background: var(--bg-alt); color: var(--text); }
[data-theme="dark"] .newsletter__title { color: var(--text); }
[data-theme="dark"] .newsletter__sub { color: var(--text-soft); }
[data-theme="dark"] .newsletter__note { color: var(--text-soft); }
[data-theme="dark"] .newsletter__form { border-bottom-color: var(--border); }

/* Loader : fond ivoire fixe (l'animation est faite pour ce contraste) */
.loader { background: #F6F0E4; }
.loader__brand { color: #0E2A47; }
.loader__tagline { color: #6B6B6B; }
/* En sombre, on garde le loader clair — l'arbre brun/vert serait illisible sur sombre */

/* Footer en sombre */
[data-theme="dark"] .footer { background: var(--bg-alt); }
[data-theme="dark"] .footer__bigword { color: var(--text); opacity: 0.04; }

/* Mobile menu — déjà sombre, conserve son contraste */
[data-theme="dark"] .mobile-menu { background: var(--bg-deep); }
[data-theme="dark"] .mobile-menu nav a { color: var(--text); }

/* Section domaine */
[data-theme="dark"] .domaine { background: var(--bg-alt); }
[data-theme="dark"] .domaine::after { opacity: 0.18; }

/* Bannière shop — fond citron en sombre + texte foncé pour AAA */
[data-theme="dark"] .shop-banner { background: var(--citron); }
[data-theme="dark"] .shop-banner__title,
[data-theme="dark"] .shop-banner__sub { color: #0F1E33; }
[data-theme="dark"] .shop-banner .btn--primary {
  background: #0F1E33;
  color: var(--citron);
  border-color: #0F1E33;
}

/* Famille zone */
[data-theme="dark"] .famille { background: var(--bg-alt); }

/* Recipe card */
[data-theme="dark"] .recipe-card {
  background: var(--bg-deep);
  color: var(--text);
  border: 1px solid var(--border);
}
[data-theme="dark"] .recipe-card h3,
[data-theme="dark"] .recipe-card h4 { color: var(--text); }
[data-theme="dark"] .recipe-card ul li,
[data-theme="dark"] .recipe-card ol li { color: var(--text); }

/* Timeline — fond ivoire en sombre = bleu profond, citron pour les années */
[data-theme="dark"] .timeline { background: var(--bg-deep); color: var(--text); }
[data-theme="dark"] .timeline__heading { color: var(--text); }
[data-theme="dark"] .timeline__text { color: var(--text-soft); }
[data-theme="dark"] .timeline__item::before { box-shadow: 0 0 0 4px var(--bg-deep); }

/* Pill / chip en sombre */
[data-theme="dark"] .shop-chip {
  color: var(--text);
  border-color: var(--border);
  background: transparent;
}
[data-theme="dark"] .shop-chip:hover { border-color: var(--text); }
[data-theme="dark"] .shop-chip.is-active {
  background: var(--citron);
  color: #0F1E33;
  border-color: var(--citron);
}
[data-theme="dark"] .shop-chip__count { color: inherit; opacity: 0.7; }

/* Selection */
[data-theme="dark"] ::selection { background: var(--citron); color: #0F1E33; }

/* Cart drawer */
[data-theme="dark"] .cart-drawer { background: var(--bg-card); color: var(--text); }
[data-theme="dark"] .cart-backdrop { background: rgba(0, 0, 0, 0.6); }
[data-theme="dark"] .cart-drawer__head { border-bottom-color: var(--border); }
[data-theme="dark"] .cart-drawer__foot { border-top-color: var(--border); background: var(--bg-deep); }

/* Form fields en sombre — bordures bien visibles */
[data-theme="dark"] .form-field input,
[data-theme="dark"] .form-field select,
[data-theme="dark"] .form-field textarea {
  color: var(--text);
  border-bottom-color: var(--border);
}
[data-theme="dark"] .form-field input::placeholder,
[data-theme="dark"] .form-field textarea::placeholder { color: var(--text-soft); opacity: 1; }
[data-theme="dark"] .form-field label { color: var(--text-soft); }
[data-theme="dark"] .form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23ECB39A' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
}

/* Form submit en sombre = citron + outremer */
[data-theme="dark"] .contact-form__submit {
  background: var(--citron);
  color: #0F1E33;
}
[data-theme="dark"] .contact-form__submit:hover { background: var(--terre); color: #0F1E33; }

/* Contact info card */
[data-theme="dark"] .contact-info { background: var(--bg-alt); }
[data-theme="dark"] .contact-info__icon { background: var(--bg-deep); }

/* Contact map block */
[data-theme="dark"] .contact-map { background: var(--bg-alt); }

/* Page head + values band */
[data-theme="dark"] .values { background: var(--citron); }
[data-theme="dark"] .values__item { color: #0F1E33; }
[data-theme="dark"] .values__item::after { color: #0F1E33; }

/* Accordion contrast */
[data-theme="dark"] .accordion-item { border-bottom-color: var(--border); }
[data-theme="dark"] .accordion-trigger { color: var(--text); }
[data-theme="dark"] .accordion-content { color: var(--text-soft); }

/* Eyebrow contrast */
[data-theme="dark"] .eyebrow { color: var(--text); }
[data-theme="dark"] .eyebrow--citron { color: var(--citron); }
[data-theme="dark"] .eyebrow--ivoire { color: var(--text); }

/* Section meta */
[data-theme="dark"] .section-head__meta { color: var(--text-soft); opacity: 1; }

/* Product price + meta */
[data-theme="dark"] .product-card__category { color: var(--text-soft); }
[data-theme="dark"] .product-card__meta { color: var(--text-soft); }

/* Article excerpt */
[data-theme="dark"] .article-card__excerpt { color: var(--text-soft); }

/* Domaine story body en sombre */
[data-theme="dark"] .domaine-story__body { color: var(--text); }
[data-theme="dark"] .domaine-story__body p:first-of-type::first-letter { color: var(--terre); }

/* Article body en sombre */
[data-theme="dark"] .article-body { color: var(--text); }
[data-theme="dark"] .article-body p { color: var(--text); }
[data-theme="dark"] .article-body > p:first-of-type::first-letter { color: var(--terre); }
[data-theme="dark"] .article-body h2,
[data-theme="dark"] .article-body h3 { color: var(--text); }
[data-theme="dark"] .article-body blockquote {
  background: var(--bg-alt);
  color: var(--text);
  border-left-color: var(--citron);
}
[data-theme="dark"] .article-body figure figcaption { color: var(--text-soft); }
[data-theme="dark"] .article-body ul li,
[data-theme="dark"] .article-body ol li { color: var(--text); }
[data-theme="dark"] .article-body ol li::marker,
[data-theme="dark"] .article-body ul li::marker { color: var(--terre); }

/* Domaine band caption */
[data-theme="dark"] .domaine-band__caption { background: rgba(15, 30, 51, 0.85); }

/* SF card text */
[data-theme="dark"] .sf-card__text { color: var(--text-soft); }



/* --- 30. PAGE CONTACT -------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
}

.form-field label .req { color: var(--terre); margin-left: 0.2rem; }

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: var(--fs-base);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  color: var(--text);
  outline: none;
  transition: border-color var(--t-fast) var(--ease);
  font-family: var(--display);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-soft); opacity: 0.5; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--terre); }

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23C97B5A' stroke-width='1.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.3rem center;
}

.form-field textarea { resize: vertical; min-height: 140px; font-family: var(--sans); }

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  background: var(--text);
  color: var(--text-inverse);
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), gap var(--t-fast) var(--ease);
}

.contact-form__submit:hover { background: var(--terre); gap: 1.1rem; }

/* Bloc info contact à droite */
.contact-info {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  position: sticky;
  top: 100px;
}

.contact-info__title {
  font-family: var(--display);
  font-size: var(--fs-lg);
  color: var(--text);
  margin-bottom: 1.8rem;
  letter-spacing: -0.015em;
  font-weight: 400;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-info__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--terre);
  flex-shrink: 0;
}

.contact-info__icon svg { width: 14px; height: 14px; }

.contact-info__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.contact-info__value {
  font-family: var(--display);
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.5;
}

.contact-info__value a { border-bottom: 1px solid var(--border); transition: border-color var(--t-fast); }
.contact-info__value a:hover { border-color: var(--terre); }

/* Carte stylisée — illustration de la côte */
.contact-map {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.contact-map__illus {
  width: 100%;
  height: auto;
  max-width: 480px;
  margin: 0 auto;
}

.contact-map__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.contact-map__text {
  font-family: var(--display);
  font-size: var(--fs-base);
  color: var(--text);
  opacity: 0.85;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 50ch;
}

/* FAQ accordion (réutilise les styles existants .accordion-item) */
.contact-faq {
  max-width: 880px;
  margin: 0 auto;
}

.contact-faq__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-faq__title {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.contact-faq__title em { color: var(--terre); font-weight: 300; }

.contact-faq__sub {
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto;
  font-size: var(--fs-base);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { grid-template-columns: 1fr; text-align: center; }
  .contact-info { position: static; }
}

@media (max-width: 560px) {
  .form-field--row { grid-template-columns: 1fr; }
}

/* --- 31. CORRECTIFS MODE SOMBRE — sections à fond fixe sombre --------- */
/*
   Le swap ivoire ↔ outremer fonctionne pour les sections qui s'inversent
   vraiment (footer, cards). Mais certaines sections gardent leur fond
   sombre dans LES DEUX modes (hero sur photo, section domaine bleue,
   timeline, newsletter, mobile menu) — leur texte doit donc rester clair
   en permanence, sans suivre le swap.
*/

/* HERO (toutes pages) */
[data-theme="dark"] .hero,
[data-theme="dark"] .hero__title,
[data-theme="dark"] .hero__eyebrow,
[data-theme="dark"] .hero__sub,
[data-theme="dark"] .hero__meta,
[data-theme="dark"] .hero__meta strong,
[data-theme="dark"] .hero__scroll { color: #F6F0E4; }

[data-theme="dark"] .hero__title em { color: var(--citron); }

/* DOMAINE-HERO (page domaine) */
[data-theme="dark"] .domaine-hero,
[data-theme="dark"] .domaine-hero__title,
[data-theme="dark"] .domaine-hero__eyebrow { color: #F6F0E4; }
[data-theme="dark"] .domaine-hero__title em { color: var(--citron); }

/* DOMAINE band caption (page domaine) */
[data-theme="dark"] .domaine-band__caption {
  color: #F6F0E4;
  background: rgba(8, 24, 48, 0.78);
}

/* SECTION DOMAINE sur home (fond outremer fixe) */
[data-theme="dark"] .domaine,
[data-theme="dark"] .domaine__title,
[data-theme="dark"] .domaine__lead,
[data-theme="dark"] .domaine__body,
[data-theme="dark"] .domaine__stat-number,
[data-theme="dark"] .domaine__stat-label,
[data-theme="dark"] .domaine__media-tag { color: #F6F0E4; }

[data-theme="dark"] .domaine__title em { color: var(--citron); }
[data-theme="dark"] .domaine__stat-label { opacity: 0.78; }
[data-theme="dark"] .domaine__media-tag {
  background: rgba(8, 24, 48, 0.78);
  color: #F6F0E4;
}

[data-theme="dark"] .domaine .btn--outline {
  color: #F6F0E4;
  border-color: rgba(246, 240, 228, 0.4);
}
[data-theme="dark"] .domaine .btn--outline:hover {
  background: #F6F0E4;
  color: var(--bg);
  border-color: #F6F0E4;
}

/* TIMELINE (page domaine — fond outremer profond) */
[data-theme="dark"] .timeline,
[data-theme="dark"] .timeline__heading { color: #F6F0E4; }
[data-theme="dark"] .timeline__text { color: rgba(246, 240, 228, 0.82); }
[data-theme="dark"] .timeline__title em { color: var(--citron); }
[data-theme="dark"] .timeline__item::before { box-shadow: 0 0 0 4px var(--bg-deep); }

/* NEWSLETTER (fond bleu dans les deux modes) */
[data-theme="dark"] .newsletter,
[data-theme="dark"] .newsletter__title,
[data-theme="dark"] .newsletter__sub,
[data-theme="dark"] .newsletter__note { color: #F6F0E4; }

[data-theme="dark"] .newsletter__title em { color: var(--citron); }
[data-theme="dark"] .newsletter__note { opacity: 0.7; }
[data-theme="dark"] .newsletter__form { border-bottom-color: rgba(246, 240, 228, 0.32); }
[data-theme="dark"] .newsletter__input { color: #F6F0E4; }
[data-theme="dark"] .newsletter__input::placeholder { color: rgba(246, 240, 228, 0.5); }
[data-theme="dark"] .newsletter__submit { color: var(--citron); }

/* MOBILE MENU */
[data-theme="dark"] .mobile-menu nav a { color: #F6F0E4; }
[data-theme="dark"] .mobile-menu nav a:hover { color: var(--citron); }
[data-theme="dark"] .mobile-menu__foot { color: rgba(246, 240, 228, 0.6); }

/* SHOP-BANNER : déjà fixé en citron, juste un rappel */
[data-theme="dark"] .shop-banner__title em { color: #0F1E33; }

/* JOURNAL article-card title em : conserve sa couleur d'accent */
[data-theme="dark"] .article-card__title em { color: var(--terre); }
[data-theme="dark"] .article-card__title { color: var(--text); }

/* --- 32. CONTACT — bloc "Y venir" (remplace l'ancienne carte illustrée) ---*/
.contact-access {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

/* Filet décoratif horizontal subtil */
.contact-access::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  width: 220px;
  height: 1px;
  background: var(--terre);
  opacity: 0.25;
  transform: translateY(-50%);
}

.contact-access__inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.contact-access__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 1.2rem + 1.8vw, 2.8rem);
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  font-weight: 400;
}

.contact-access__title em { color: var(--terre); font-weight: 300; }

.contact-access__text {
  font-family: var(--display);
  font-size: var(--fs-base);
  color: var(--text);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 56ch;
}

.contact-access__row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-access__coord {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--text-soft);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

[data-theme="dark"] .contact-access { background: var(--bg-alt); }
[data-theme="dark"] .contact-access__text { opacity: 1; }

/* Variante "texte clair sur fond image" — toujours crème, ne suit pas le swap */
.link-arrow--light {
  color: #F6F0E4 !important;
  border-color: rgba(246, 240, 228, 0.5) !important;
}
.link-arrow--light:hover { color: var(--citron) !important; border-color: var(--citron) !important; }

/* Variante "bouton sur bannière citron" — outremer fixe pour contraste sur jaune */
.btn--banner {
  background: #0E2A47 !important;
  color: #F6F0E4 !important;
  border-color: #0E2A47 !important;
}
.btn--banner:hover { background: #1B3A5C !important; color: #F6F0E4 !important; }

/* --- 33. ÉDITO BAND — Art de vivre (homepage) -------------------------- */
.edito-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  isolation: isolate;
}

.edito-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.edito-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease);
}

.edito-band:hover .edito-band__media img { transform: scale(1.06); }

.edito-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(14,42,71,0.78) 0%, rgba(14,42,71,0.55) 45%, rgba(14,42,71,0) 75%),
    linear-gradient(180deg, rgba(14,42,71,0.15) 0%, rgba(14,42,71,0.35) 100%);
}

.edito-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: clamp(420px, 60vh, 620px);
  padding-block: clamp(4rem, 8vw, 7rem);
  color: #F6F0E4;
}

.edito-band__text { max-width: 540px; }

.edito-band__eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--citron);
}

.edito-band__eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--citron);
}

.edito-band__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 1.5rem + 3vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 1.8rem;
  color: #F6F0E4;
}

.edito-band__title em {
  font-style: normal;
  color: var(--citron);
  font-weight: 300;
}

.edito-band__body {
  font-family: var(--display);
  font-size: var(--fs-md);
  line-height: 1.6;
  margin-bottom: 2.2rem;
  color: rgba(246, 240, 228, 0.92);
}

.edito-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #F6F0E4;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #F6F0E4;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast), border-color var(--t-fast);
}

.edito-band__cta:hover {
  gap: 1.1rem;
  color: var(--citron);
  border-color: var(--citron);
}

/* Texte aligné à gauche, image à droite — vide pour laisser respirer la photo */
.edito-band__inner > .edito-band__spacer {
  display: none;
}

@media (max-width: 880px) {
  .edito-band__inner { grid-template-columns: 1fr; }
  .edito-band::before {
    background:
      linear-gradient(180deg, rgba(14,42,71,0.4) 0%, rgba(14,42,71,0.7) 80%, rgba(14,42,71,0.85) 100%);
  }
  .edito-band__inner { min-height: 70vh; }
}

[data-theme="dark"] .edito-band::before {
  background:
    linear-gradient(105deg, rgba(8,24,48,0.85) 0%, rgba(8,24,48,0.6) 45%, rgba(8,24,48,0.1) 75%),
    linear-gradient(180deg, rgba(8,24,48,0.25) 0%, rgba(8,24,48,0.5) 100%);
}
