/* ============================================================
   NOID'OR PREMIUM — MODE SOMBRE
   Inspiré Phantom Creek : noir profond + or mesuré + serif éditorial
   ============================================================ */

:root {
  /* Surfaces sombres */
  --bg:           #0a0804;
  --bg-1:         #110e08;
  --bg-2:         #171208;
  --bg-3:         #1e160a;
  --bg-card:      #131008;
  --border:       rgba(201,168,76,0.12);
  --divider:      rgba(255,255,255,0.06);

  /* Texte */
  --text:         #e8dfc8;
  --text-muted:   #a09070;
  --text-faint:   #5a4e38;
  --text-inverse: #0a0804;

  /* Or */
  --gold:         #c9a84c;
  --gold-bright:  #dfc068;
  --gold-dim:     rgba(201,168,76,0.15);

  /* Vert Vitalité */
  --green:        #5a8f3c;
  --green-dim:    rgba(90,143,60,0.12);

  /* Typographie */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', 'Helvetica Neue', sans-serif;

  /* Échelle */
  --text-xs:    clamp(0.7rem,  0.65rem + 0.25vw, 0.8rem);
  --text-sm:    clamp(0.875rem,0.82rem + 0.28vw, 1rem);
  --text-base:  clamp(1rem,    0.96rem + 0.2vw,  1.0625rem);
  --text-lg:    clamp(1.125rem,1rem + 0.6vw,     1.4rem);
  --text-xl:    clamp(1.5rem,  1.2rem + 1.2vw,   2.1rem);
  --text-2xl:   clamp(2.2rem,  1.5rem + 2.8vw,   3.8rem);
  --text-hero:  clamp(3rem,    1.5rem + 6vw,      6rem);

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

  /* Rayon */
  --r-sm: 3px; --r-md: 6px; --r-lg: 12px; --r-full: 9999px;

  /* Ombres */
  --shadow-gold: 0 0 40px rgba(201,168,76,0.08);
  --transition: 220ms cubic-bezier(0.16,1,0.3,1);
}

/* ---- BASE ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-font-smoothing: antialiased; }
body { min-height: 100dvh; font-family: var(--font-sans); font-size: var(--text-base); color: var(--text); background: var(--bg); line-height: 1.65; }
img,svg { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.1; }
p { text-wrap: pretty; max-width: 65ch; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; background: none; border: none; }
::selection { background: rgba(201,168,76,0.2); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(var(--s5), 5vw, var(--s16));
}
.section { padding-block: clamp(var(--s16), 8vw, var(--s32)); }

/* ---- TYPOGRAPHY HELPERS ---- */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s4);
}
.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--s8);
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.body-text { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.8; margin-bottom: var(--s5); font-weight: 300; }

/* ---- BUTTONS ---- */
.btn-header {
  display: inline-flex;
  align-items: center;
  padding: var(--s2) var(--s6);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-header:hover { background: var(--gold); color: var(--bg); }

.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: var(--s3) var(--s8);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--text);
  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);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.btn-hero:hover { border-color: var(--gold); color: var(--gold); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--s4) var(--s12);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--transition);
}
.btn-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

.btn-contact {
  display: flex;
  justify-content: center;
  padding: var(--s3) var(--s8);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--transition);
}
.btn-contact:hover { background: var(--gold-bright); }
.btn-contact--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.btn-contact--outline:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,8,4,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--divider);
  transition: border-color var(--transition);
}
.header--scrolled { border-bottom-color: var(--border); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(var(--s5), 5vw, var(--s16));
  height: 72px;
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.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: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav { display: flex; gap: var(--s8); margin-left: auto; }
.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s4) clamp(var(--s5), 5vw, var(--s16)) var(--s6);
  border-top: 1px solid var(--divider);
  background: var(--bg-1);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: var(--s2) 0; font-size: var(--text-sm); }
.mobile-nav .btn-header { align-self: flex-start; margin-top: var(--s3); }

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(100,60,20,0.15) 0%, transparent 50%);
}
.hero-deco {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(360px, 30vw);
  height: auto;
  opacity: 0.35;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--s8);
  max-width: 780px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: var(--s6);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.0;
  margin-bottom: var(--s8);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 200;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s10);
}
.hero-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s12);
}
.cert-item {
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.cert-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: var(--s5) clamp(var(--s5), 5vw, var(--s16));
  background: var(--bg-1);
  overflow: hidden;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.strip-sep { color: var(--gold); opacity: 0.4; }

/* ---- HISTOIRE ---- */
.histoire { background: var(--bg-1); }
.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s24));
  align-items: start;
}
@media (max-width: 820px) { .histoire-grid { grid-template-columns: 1fr; } }

.histoire-quote {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  border-left: 1px solid var(--gold);
  padding-left: var(--s6);
  margin: var(--s8) 0;
  line-height: 1.4;
  opacity: 0.9;
}
.histoire-visual { padding-top: var(--s4); display: flex; flex-direction: column; gap: var(--s5); }
.moulin-card { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.moulin-photo { width: 100%; height: 280px; object-fit: cover; object-position: center; display: block; transition: transform 0.6s ease; }
.moulin-card:hover .moulin-photo { transform: scale(1.04); }
.moulin-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--s3) var(--s5);
  background: linear-gradient(to top, rgba(10,8,4,0.8), transparent);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,223,200,0.6);
}
.mission-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8);
}
.mission-text {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  max-width: 100%;
}

/* ---- COLLECTIONS ---- */
.collections { background: var(--bg); padding-block: 0; }
.collections-header {
  text-align: center;
  padding: clamp(var(--s16), 8vw, var(--s32)) 0 clamp(var(--s10), 4vw, var(--s16));
}

.collection-block { margin-bottom: 1px; }

.collection-editorial {
  position: relative;
  padding: clamp(var(--s12), 6vw, var(--s20)) 0;
  overflow: hidden;
}
.collection-editorial-bg {
  position: absolute;
  inset: 0;
}
.collection-editorial-bg--signature {
  background: linear-gradient(135deg, #160e04 0%, #1e1408 60%, #0e0904 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.collection-editorial-bg--vitalite {
  background: linear-gradient(135deg, #080e04 0%, #0c1408 60%, #060c04 100%);
  border-top: 1px solid rgba(90,143,60,0.15);
  border-bottom: 1px solid rgba(90,143,60,0.15);
}
.collection-editorial-bg--gourmande {
  background: linear-gradient(135deg, #12090a 0%, #180d08 60%, #0e0806 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.collection-editorial-bg--essentielle {
  background: linear-gradient(135deg, #0c0c0c 0%, #141414 60%, #0a0a0a 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.collection-editorial-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}

.collection-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: var(--s3);
}
.collection-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--s5);
}
.collection-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 50ch;
  line-height: 1.65;
}
.collection-meta {
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-top: var(--s4);
  text-transform: uppercase;
}

.collection-deco {
  flex-shrink: 0;
  width: clamp(80px, 10vw, 140px);
  height: clamp(80px, 10vw, 140px);
  opacity: 0.7;
}
.collection-deco--vitalite { opacity: 0.8; }
@media (max-width: 600px) { .collection-deco { display: none; } }

/* ---- PRODUCTS GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.products-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1000px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .products-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .products-grid,
  .products-grid--3,
  .products-grid--5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .products-grid,
  .products-grid--3,
  .products-grid--5 { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--bg-card);
  padding: var(--s6) var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: background var(--transition);
  position: relative;
}
.product-card:hover { background: var(--bg-2); }
.product-card--wellness { background: rgba(8,14,4,0.95); }
.product-card--wellness:hover { background: rgba(12,20,6,0.95); }



.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.2;
}
.product-tagline {
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 100%;
}
.product-ingredients {
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: auto;
  padding-top: var(--s3);
  font-weight: 300;
  letter-spacing: 0.03em;
  max-width: 100%;
}
.product-cert {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.product-super-badge {
  position: absolute;
  top: var(--s3);
  right: var(--s3);
  background: var(--green);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px var(--s2);
  border-radius: var(--r-full);
}

/* Product accordion */
.product-desc {
  margin-top: var(--s3);
  border-top: 1px solid var(--divider);
  padding-top: var(--s2);
}
.product-desc-toggle {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  padding: var(--s2) 0;
  width: 100%;
  text-align: left;
  transition: opacity var(--transition);
}
.product-desc-toggle:hover { opacity: 1; }
.product-desc-toggle svg { transition: transform 0.3s ease; margin-left: auto; }
.product-desc-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.product-desc-body { overflow: hidden; max-height: 0; transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1); }
.product-desc-body.open { max-height: 300px; }
.product-desc-text {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.75;
  padding: var(--s2) 0 var(--s3);
  max-width: 100%;
  font-weight: 300;
}

/* ---- CTA ---- */
.cta-section {
  background: var(--bg-1);
  padding: clamp(var(--s16), 8vw, var(--s32)) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--text);
  margin-bottom: var(--s5);
  line-height: 1.15;
}
.cta-sub {
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: var(--s10);
  max-width: 100%;
}

/* ---- ENGAGEMENTS ---- */
.engagements { background: var(--bg); }
.engagements-header { text-align: center; margin-bottom: clamp(var(--s12), 5vw, var(--s20)); }
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 860px) { .engagements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .engagements-grid { grid-template-columns: 1fr; } }

.engagement {
  padding: var(--s8) var(--s6);
  background: var(--bg-card);
  transition: background var(--transition);
}
.engagement:hover { background: var(--bg-2); }
.engagement-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: var(--s4);
  line-height: 1;
}
.engagement-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--s3);
}
.engagement-text {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 100%;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--bg-1); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-details {
  margin: var(--s8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--text-muted);
}
.contact-details a { color: var(--gold); opacity: 0.8; }
.contact-details a:hover { opacity: 1; }

.cert-badges { display: flex; gap: var(--s3); margin-top: var(--s6); }
.cert-badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.cert-badge--gold { border-color: rgba(201,168,76,0.3); color: var(--gold); }
.cert-badge--brown { border-color: rgba(150,100,60,0.3); color: #a08060; }

.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s10);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}
.contact-card-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--text);
}
.contact-card-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 100%;
}
.contact-or {
  display: flex;
  align-items: center;
  gap: var(--s4);
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.contact-or::before, .contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--divider);
  padding-block: var(--s12) var(--s8);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s10);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
}
.footer-brand { max-width: 360px; }
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--s5);
  opacity: 0.9;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: var(--s3);
  max-width: 100%;
}
.footer-legal {
  font-size: var(--text-xs);
  color: var(--text-faint);
  line-height: 1.8;
  font-weight: 300;
  max-width: 100%;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  text-align: right;
}
.footer-nav a {
  font-size: var(--text-xs);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--divider);
  padding-top: var(--s5);
  font-size: var(--text-xs);
  color: var(--text-faint);
  font-weight: 300;
  max-width: 100%;
}
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; }
  .footer-nav { text-align: left; }
}

/* ---- 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); }
/* Ensure content is visible if JS hasn't fired (no-JS / prerender) */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
}

/* ---- HERO BRAND LOGO ---- */
.hero-brand-logo {
  margin-bottom: var(--s6);
}
.hero-logo-img {
  width: min(200px, 40vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(1.05);
}

/* ===== MENTIONS LÉGALES & CGV ===== */
.legal-section {
  background: #0d0b08;
  border-top: 1px solid rgba(201,168,76,0.12);
  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 rgba(201,168,76,0.12);
}
.legal-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.12);
}
.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: rgba(201,168,76,0.45);
  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: rgba(201,168,76,0.3);
  transition: transform 0.25s ease;
}
.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: rgba(250,247,242,0.38);
}
.legal-content strong {
  font-weight: 500;
  color: rgba(250,247,242,0.55);
  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(201,168,76,0.3);
  color: rgba(201,168,76,0.7);
  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(201,168,76,0.08);
}
.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;
}
