/* ============================================================
   NOID'OR — VERSION JOUR  •  Ivoire & Or
   Cormorant Garamond · Jost · Palette lumineuse
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg:        #faf7f2;
  --bg-2:      #f5f0e8;
  --bg-3:      #ede6d8;
  --surface:   #ffffff;
  --gold:      #b8922a;
  --gold-lt:   #d4a84b;
  --gold-pale: #e8d5a3;
  --text:      #2a1f0e;
  --text-2:    #5a4a30;
  --text-3:    #8a7455;
  --border:    rgba(184,146,42,0.18);
  --green:     #4a6a2a;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem; --s7: 1.75rem; --s8: 2rem;
  --s10: 2.5rem; --s12: 3rem; --s16: 4rem; --s20: 5rem; --s24: 6rem;

  --text-xs:   0.65rem;
  --text-sm:   0.8rem;
  --text-base: 1rem;
  --text-lg:   1.2rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  3rem;
  --text-hero: clamp(3.5rem, 7vw, 6.5rem);

  --r-sm: 4px; --r-md: 8px; --r-lg: 16px; --r-full: 999px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(42,31,14,0.06);
  --shadow-md: 0 8px 32px rgba(42,31,14,0.10);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--s8); }
@media (max-width: 768px) { .container { padding: 0 var(--s5); } }

/* ---- HEADER ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: var(--s4) 0;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 var(--s8);
  display: flex; align-items: center; gap: var(--s8);
}

/* LOGO */
.logo { flex-shrink: 0; display: flex; align-items: center; gap: var(--s3); transition: opacity var(--transition); }
.logo:hover { opacity: 0.75; }
.logo-img { height: 44px; width: auto; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* NAV */
.nav { display: flex; gap: var(--s8); margin-left: auto; }
.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }

.btn-nav {
  padding: var(--s2) var(--s6);
  border: 1px solid var(--gold);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--transition);
  background: transparent;
}
.btn-nav:hover { background: var(--gold); color: var(--bg); }

/* BURGER */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: var(--s2); margin-left: auto; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s8);
  transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .nav-link { font-size: var(--text-xl); letter-spacing: 0.1em; color: var(--text); }
.mobile-nav .btn-nav { font-size: var(--text-sm); padding: var(--s3) var(--s8); }

@media (max-width: 900px) {
  .nav, .btn-nav { display: none; }
  .burger { display: flex; }
}

/* ============================================================
   HERO — fond ivoire avec filigrane
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(80px + var(--s16)) var(--s8) var(--s16);
  background: var(--bg);
}

/* Dégradé subtil */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(212,168,75,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(184,146,42,0.06) 0%, transparent 45%);
  pointer-events: none;
}

/* Filigrane noisettes hero */
.hero-deco {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, 30vw);
  opacity: 0.07;
  pointer-events: none;
  filter: sepia(1) saturate(0.5);
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero-brand-logo { margin-bottom: var(--s6); }
.hero-logo-img {
  width: min(180px, 38vw);
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: var(--s6);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: var(--s8);
}

.hero-certs {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--s3);
  margin-bottom: var(--s10);
}
.cert-item {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.cert-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-pale);
  flex-shrink: 0;
}

.btn-hero {
  display: inline-flex; align-items: center;
  padding: var(--s3) var(--s8);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--transition);
  white-space: nowrap;
  background: transparent;
}
.btn-hero:hover { background: var(--gold); color: var(--bg); }

/* ============================================================
   BANDEAU SIGNATURE
   ============================================================ */
.signature-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s5) 0;
  overflow: hidden;
}
.signature-band-inner {
  display: flex; gap: var(--s12); justify-content: center; flex-wrap: wrap;
}
.signature-item {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  display: flex; align-items: center; gap: var(--s4);
}
.signature-item::before {
  content: '—';
  color: var(--gold-pale);
}

/* ============================================================
   HISTOIRE
   ============================================================ */
.histoire {
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
}

/* Filigrane section histoire */
.histoire::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -8%;
  width: 500px; height: 500px;
  background: url('filigrane-noisettes.png') center/contain no-repeat;
  opacity: 1;
  pointer-events: none;
}

.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}

.histoire-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
}

.histoire-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--s7);
}
.histoire-title em { font-style: italic; color: var(--gold); }

.histoire-body {
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--s6);
}

.histoire-quote {
  border-left: 2px solid var(--gold-pale);
  padding-left: var(--s6);
  margin: var(--s8) 0;
}
.histoire-quote p {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.5;
}

.histoire-photo-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.histoire-photo {
  width: 100%; height: 400px;
  object-fit: cover;
  filter: sepia(0.12) brightness(1.02);
}
.histoire-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s4) var(--s6);
  background: linear-gradient(transparent, rgba(42,31,14,0.5));
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.mission-card {
  margin-top: var(--s6);
  padding: var(--s8);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.mission-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s4);
}
.mission-text {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .histoire-grid { grid-template-columns: 1fr; gap: var(--s10); }
  .histoire::after { display: none; }
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { padding: var(--s8) 0 var(--s24); }

.collections-intro {
  text-align: center;
  padding: var(--s20) 0 var(--s16);
  position: relative;
}
/* Filigrane section collections */
.collections-intro::before {
  content: '';
  position: absolute;
  top: 0; right: -5%;
  width: 420px; height: 420px;
  background: url('filigrane-noisettes.png') center/contain no-repeat;
  opacity: 1;
  pointer-events: none;
}
.collections-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
}
.collections-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--s5);
}
.collections-sub {
  font-size: var(--text-base);
  color: var(--text-3);
  font-style: italic;
  font-family: var(--font-serif);
}

/* COLLECTION SECTION */
.collection-section {
  margin-bottom: var(--s20);
  position: relative;
}
.collection-header {
  padding: var(--s16) 0 var(--s10);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s8);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Filigrane dans chaque header collection */
.collection-header::after {
  content: '';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px; height: 280px;
  background: url('filigrane-noisettes.png') center/contain no-repeat;
  opacity: 1;
  pointer-events: none;
}

.col-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.col-name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s5);
}
.col-desc {
  font-size: var(--text-base);
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
}
.col-meta {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

/* GRILLE PRODUITS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .products-grid { grid-template-columns: 1fr; border-left: none; } }

.product-card {
  padding: var(--s8) var(--s7);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  background: var(--bg-2);
  box-shadow: inset 0 0 0 1px var(--gold-pale);
}
.product-card--wellness { background: #f5f8f0; }
.product-card--wellness:hover { background: #edf2e5; }

@media (max-width: 600px) {
  .product-card { border-right: none; border-left: 1px solid var(--border); }
}

.product-body { display: flex; flex-direction: column; gap: var(--s2); flex: 1; }

.product-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
}

.product-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-2);
  line-height: 1.4;
  margin-bottom: var(--s2);
}

.product-ingredients {
  font-size: var(--text-sm);
  color: var(--text-3);
  line-height: 1.5;
  margin-top: auto;
  padding-top: var(--s4);
}

.product-cert {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  padding: 2px 8px;
  border-radius: var(--r-full);
  margin-top: var(--s3);
  width: fit-content;
}

/* Accordion */
.product-desc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; border-top: 1px solid var(--border);
  padding: var(--s4) 0 0;
  margin-top: var(--s5);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--transition);
}
.product-desc-toggle:hover { color: var(--gold); }
.toggle-icon {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  color: var(--gold-pale);
}
.product-desc-toggle.open .toggle-icon { transform: rotate(180deg); }

.product-desc-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}
.product-desc-content.open {
  max-height: 300px;
  padding-top: var(--s4);
}

/* ============================================================
   CTA BOUTIQUE
   ============================================================ */
.cta-section {
  padding: var(--s24) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: url('filigrane-noisettes.png') center/contain no-repeat;
  opacity: 0.6;
  pointer-events: none;
}
.cta-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s5);
  position: relative;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--s5);
  position: relative;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: var(--text-base);
  color: var(--text-2);
  margin-bottom: var(--s10);
  position: relative;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: var(--s3);
  padding: var(--s4) var(--s12);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--transition);
  position: relative;
}
.btn-cta:hover { background: #9a7820; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184,146,42,0.25); }

/* ============================================================
   ENGAGEMENTS
   ============================================================ */
.engagements {
  padding: var(--s24) 0;
  background: var(--bg);
}
.section-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: var(--s5);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  text-align: center;
  margin-bottom: var(--s16);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .engagements-grid { grid-template-columns: 1fr; } }

.engagement {
  background: var(--surface);
  padding: var(--s10) var(--s8);
  transition: background var(--transition);
}
.engagement:hover { background: var(--bg-2); }
.engagement-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: var(--s4);
}
.engagement-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--s4);
}
.engagement-body {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--s24) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: var(--s8);
}

.contact-info { display: flex; flex-direction: column; gap: var(--s4); }
.contact-line {
  font-size: var(--text-base);
  color: var(--text-2);
}
.contact-line a { color: var(--gold); transition: opacity var(--transition); }
.contact-line a:hover { opacity: 0.75; }

.contact-certs {
  display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s6);
}
.cert-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--text-3);
  text-transform: uppercase;
  line-height: 1.2;
}

.contact-boutique {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10);
  box-shadow: var(--shadow-sm);
}
.boutique-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--s4);
}
.boutique-sub {
  font-size: var(--text-base);
  color: var(--text-2);
  margin-bottom: var(--s8);
  line-height: 1.6;
}
.btn-boutique {
  display: block; width: 100%;
  padding: var(--s4) var(--s8);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  text-align: center;
  transition: all var(--transition);
  margin-bottom: var(--s4);
}
.btn-boutique:hover { background: #9a7820; }
.btn-boutique-outline {
  display: block; width: 100%;
  padding: var(--s4) var(--s8);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  text-align: center;
  transition: all var(--transition);
}
.btn-boutique-outline:hover { background: var(--gold); color: var(--bg); }
.boutique-or {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-3);
  margin: var(--s3) 0;
  position: relative;
}
.boutique-or::before,
.boutique-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--border);
}
.boutique-or::before { left: 0; }
.boutique-or::after  { right: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  padding: var(--s12) 0 var(--s8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  margin-bottom: var(--s10);
  align-items: start;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: var(--s8); } }

.footer-logo { height: 40px; width: auto; margin-bottom: var(--s5); opacity: 0.85; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-2);
  margin-bottom: var(--s4);
}
.footer-legal { font-size: var(--text-xs); color: var(--text-3); line-height: 1.7; }

.footer-nav { display: flex; flex-direction: column; gap: var(--s3); }
.footer-nav a {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--transition);
  text-align: right;
}
.footer-nav a:hover { color: var(--gold); }
@media (max-width: 768px) { .footer-nav { text-align: left; } .footer-nav a { text-align: left; } }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: var(--text-xs);
  color: var(--text-3);
}

/* ============================================================
   SCROLL FADE
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; } }

/* ---- MAPPING classes version sombre → version jour ---- */
.collection-block { margin-bottom: var(--s20); }

.collection-editorial {
  padding: var(--s12) 0 var(--s8);
  position: relative;
  overflow: hidden;
}
/* Filigrane dans chaque section collection */
.collection-editorial::after {
  content: '';
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px; height: 260px;
  background: url('filigrane-noisettes.png') center/contain no-repeat;
  opacity: 1;
  pointer-events: none;
}

.collection-editorial-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--s8);
}

.collection-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--s3);
}
.collection-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s5);
}
.collection-desc {
  font-size: var(--text-base);
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
}
.collection-meta {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: var(--s3);
}
.collection-info { flex: 1; }
.collection-deco { display: none; } /* remplacé par filigrane CSS */

/* Backgrounds éditoriaux → on neutralise */
.collection-editorial-bg { display: none; }

/* Badge super-ingrédient */
.super-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(74,106,42,0.3);
  background: rgba(74,106,42,0.06);
  padding: 2px 7px;
  border-radius: var(--r-full);
  margin-bottom: var(--s2);
  width: fit-content;
}

/* Accordéon fermé par défaut */
.product-desc-content { max-height: 0 !important; padding-top: 0 !important; }
.product-desc-content.open { max-height: 300px !important; padding-top: var(--s4) !important; }

/* ---- BOUTONS CONTACT ---- */
.btn-contact {
  display: block;
  padding: var(--s4) var(--s8);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  text-align: center;
  transition: all var(--transition);
  margin-bottom: var(--s4);
}
.btn-contact:hover { background: #9a7820; }
.btn-contact--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-contact--outline:hover { background: var(--gold); color: var(--bg); }

/* Badges certifications empilés → horizontaux */
.contact-certs { flex-direction: row; }

/* ---- BANDEAU INTRO (centrage) ---- */
.intro-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s5) var(--s8);
}
.strip-inner {
  display: flex;
  gap: var(--s6);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.strip-sep { color: var(--gold-pale); }

/* ===== MENTIONS LÉGALES & CGV ===== */
.legal-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--s8) 0 var(--s6);
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-item {
  border-bottom: 1px solid var(--border);
}
.legal-item:first-child {
  border-top: 1px solid var(--border);
}
.legal-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: var(--s4) 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.2s;
}
.legal-toggle:hover {
  color: var(--gold);
}
.legal-toggle[aria-expanded="true"] .legal-chevron {
  transform: rotate(180deg);
}
.legal-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold-pale);
  transition: transform 0.25s ease;
}
.legal-body {
  overflow: hidden;
}
.legal-body[hidden] {
  display: none;
}
.legal-content {
  padding: 0 0 var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.legal-content p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-3);
}
.legal-content strong {
  font-weight: 500;
  color: var(--text-2);
  display: block;
  margin-bottom: 0.2em;
}
.legal-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.legal-content a:hover {
  border-bottom-color: var(--gold);
}

/* ===== BOUTON SWITCH JOUR/NUIT ===== */
.theme-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,0.35);
  color: rgba(184,146,42,0.65);
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.theme-switch:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,146,42,0.07);
}
.theme-switch svg {
  width: 16px;
  height: 16px;
}

/* Nav lien actif */
.nav-link--active {
  color: var(--gold) !important;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
