
:root {
  --noir: #0e0b06;
  --noir2: #1a1209;
  --noir3: #261b0d;
  --terra: #D85A30;
  --terra-light: #F0997B;
  --terra-dark: #993C1D;
  --or: #EF9F27;
  --or-light: #FAC775;
  --or-pale: #FAEEDA;
  --creme: #F5EFE0;
  --creme2: #EDE3CC;
  --vert: #1D9E75;
  --vert-light: #5DCAA5;
  --violet: #534AB7;
  --texte: #1a1209;
  --texte-doux: #5a4a35;
  --texte-pale: #9a8a72;
  --bord: rgba(216,90,48,0.15);
  --bord2: rgba(216,90,48,0.3);
  --radius: 6px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--creme);
  color: var(--texte);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── PAGE SYSTEM ── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

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

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--noir);
  border-bottom: 1px solid rgba(216,90,48,0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.logo-emblem {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-emblem::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(239,159,39,0.4);
}

.logo-emblem-inner {
  width: 8px;
  height: 8px;
  background: var(--terra);
  border-radius: 50%;
}

.logo-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-wordmark em { color: var(--terra); font-style: normal; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-links li a.active { color: var(--terra-light); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn-ghost {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

.btn-terra {
  padding: 9px 20px;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-terra:hover { background: var(--terra-dark); }

/* ── FOOTER ── */
footer {
  background: var(--noir);
  padding: 56px 40px 28px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--terra-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

.social-row {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}
.social-btn:hover { border-color: var(--terra); color: var(--terra-light); }

/* ────────────────────────────────────────────
   PAGE : ACCUEIL
──────────────────────────────────────────── */

/* HERO */
.hero {
  min-height: 88vh;
  background: var(--noir);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 40px;
  gap: 60px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(216,90,48,0.04) 0px, rgba(216,90,48,0.04) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(216,90,48,0.04) 0px, rgba(216,90,48,0.04) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(239,159,39,0.07);
}
.hero-circle-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-circle-2 { width: 400px; height: 400px; top: -100px; right: 0; border-color: rgba(216,90,48,0.08); }
.hero-circle-3 { width: 200px; height: 200px; top: 50px; right: 100px; border-color: rgba(239,159,39,0.12); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(216,90,48,0.1);
  border: 1px solid rgba(216,90,48,0.25);
  border-radius: 20px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-eyebrow span {
  font-size: 11px;
  color: var(--terra-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--or);
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-1px); }

.btn-secondary {
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* HERO RIGHT */
.hero-right { position: relative; padding: 40px 0; }

.hero-stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--or);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-editions-strip {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ed-chip {
  flex: 1;
  height: 6px;
  border-radius: 3px;
}

.hero-archive-card {
  background: rgba(216,90,48,0.08);
  border: 1px solid rgba(216,90,48,0.2);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hac-left { }
.hac-label { font-size: 11px; color: var(--terra-light); text-transform: uppercase; letter-spacing: 0.08em; }
.hac-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.hac-chips { display: flex; gap: 6px; }
.hac-chip {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.hac-chip.active { background: rgba(216,90,48,0.2); color: var(--or); border-color: rgba(216,90,48,0.3); }

/* SECTION BASE */
.section { padding: 80px 40px; }
.section-sm { padding: 60px 40px; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--terra);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--texte);
  margin-bottom: 16px;
}

.section-title-light { color: #fff; }

.section-desc {
  font-size: 16px;
  color: var(--texte-doux);
  line-height: 1.8;
  max-width: 540px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.link-more {
  font-size: 13px;
  color: var(--terra);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  white-space: nowrap;
}
.link-more:hover { gap: 10px; }

/* EDITIONS HOME */
.editions-marquee-wrap {
  background: var(--noir2);
  padding: 60px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

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

.ed-card-marquee {
  width: 260px;
  height: 160px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.ed-card-marquee:hover { border-color: rgba(216,90,48,0.4); }

.ed-card-marquee::before {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  opacity: 0.06;
  color: #fff;
  line-height: 1;
}

.edc-year { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.edc-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; }
.edc-tag { font-size: 11px; margin-top: 6px; display: inline-block; padding: 2px 8px; border-radius: 4px; font-weight: 500; }

/* BLOG HOME */
.blog-home-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.blog-featured {
  background: var(--noir2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s;
}
.blog-featured:hover { transform: translateY(-3px); }

.bf-thumb {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.bf-cat-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bf-body { padding: 22px; }
.bf-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.bf-excerpt { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 14px; }
.bf-meta { font-size: 11px; color: rgba(255,255,255,0.25); display: flex; align-items: center; gap: 8px; }
.bf-avatar { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; flex-shrink: 0; }

.blog-side-list { display: flex; flex-direction: column; gap: 12px; }

.blog-side-card {
  background: #fff;
  border: 1px solid var(--creme2);
  border-radius: var(--radius-lg);
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.blog-side-card:hover { border-color: var(--terra); transform: translateX(4px); }

.bsc-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.bsc-content { flex: 1; }
.bsc-cat { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--texte-pale); margin-bottom: 4px; }
.bsc-title { font-size: 13px; font-weight: 500; color: var(--texte); line-height: 1.4; margin-bottom: 4px; }
.bsc-meta { font-size: 11px; color: var(--texte-pale); }

/* BOOTIK HOME */
.bootik-home { background: var(--noir2); }
.products-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.product-home-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.product-home-card:hover {
  border-color: rgba(216,90,48,0.35);
  transform: translateY(-4px);
}

.ph-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-body { padding: 14px; }
.ph-name { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.ph-type { font-size: 10px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.ph-price { font-size: 15px; font-weight: 500; color: var(--or); }
.ph-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.ph-btn:hover { background: rgba(216,90,48,0.15); border-color: var(--terra); color: var(--terra-light); }

/* PARTENAIRES */
.partners-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 40px;
  border-top: 1px solid var(--creme2);
  border-bottom: 1px solid var(--creme2);
  background: #fff;
}
.partners-label { font-size: 11px; color: var(--texte-pale); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.partner-logo {
  padding: 8px 18px;
  background: var(--creme);
  border: 1px solid var(--creme2);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  color: var(--texte-doux);
}

/* ────────────────────────────────────────────
   PAGE : À PROPOS
──────────────────────────────────────────── */

.about-hero {
  background: var(--noir);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: 'iBHM';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  line-height: 1;
}

.about-mission {
  padding: 80px 40px;
  background: #fff;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.mission-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--creme2);
}

.mission-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.mission-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mission-card-text {
  font-size: 14px;
  color: var(--texte-doux);
  line-height: 1.7;
}

/* TEAM */
.team-section { padding: 80px 40px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  background: var(--noir2);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.08);
}

.team-name {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.team-role {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

/* JOIN */
.join-section {
  background: var(--terra);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.join-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.join-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.roles-list { display: flex; flex-direction: column; gap: 10px; }
.role-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
}
.role-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--or); flex-shrink: 0; }
.role-name { font-size: 14px; color: #fff; font-weight: 500; }
.role-type { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: auto; }

/* ────────────────────────────────────────────
   PAGE : ÉDITIONS
──────────────────────────────────────────── */

.editions-hero {
  background: var(--noir);
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

.editions-hero-pattern {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(216,90,48,0.03) 0% 25%, transparent 0% 50%) 0 0 / 40px 40px;
  pointer-events: none;
}

.editions-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 60px 40px;
}

.edition-card-full {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
  border: 1px solid var(--creme2);
}
.edition-card-full:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

.ecf-thumb {
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.ecf-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  opacity: 0.08;
  position: absolute;
  right: 16px;
  bottom: -8px;
  line-height: 1;
  color: #fff;
}

.ecf-year {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.ecf-body { padding: 20px; }
.ecf-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--texte);
}
.ecf-desc { font-size: 13px; color: var(--texte-doux); line-height: 1.7; margin-bottom: 14px; }
.ecf-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ecf-tag {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ────────────────────────────────────────────
   PAGE : BLOG
──────────────────────────────────────────── */

.blog-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  max-width: 100%;
}

.blog-main-col { padding: 60px 40px; }
.blog-sidebar { padding: 60px 28px; border-left: 1px solid var(--creme2); background: #fff; }

.blog-hero-page {
  background: var(--noir);
  padding: 60px 40px;
}

.blog-filters {
  padding: 16px 40px;
  background: #fff;
  border-bottom: 1px solid var(--creme2);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 64px;
  z-index: 50;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--creme2);
  background: transparent;
  color: var(--texte-doux);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

.blog-search {
  margin-left: auto;
  padding: 7px 14px;
  border: 1px solid var(--creme2);
  border-radius: var(--radius);
  font-size: 12px;
  background: var(--creme);
  color: var(--texte);
  font-family: 'DM Sans', sans-serif;
  width: 200px;
}

.blog-featured-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--creme2);
}

.bfp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--creme2);
  cursor: pointer;
  transition: all 0.25s;
  background: #fff;
}
.bfp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.bfp-thumb {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
}

.bfp-body { padding: 18px; }
.bfp-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--texte); line-height: 1.35; margin-bottom: 8px; }
.bfp-excerpt { font-size: 13px; color: var(--texte-doux); line-height: 1.6; margin-bottom: 10px; }
.bfp-meta { font-size: 11px; color: var(--texte-pale); display: flex; gap: 8px; align-items: center; }

.cat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.cat-portrait { background: #D85A30; color: #fff; }
.cat-fond { background: #534AB7; color: #CECBF6; }
.cat-coulisses { background: #1D9E75; color: #E1F5EE; }
.cat-immersion { background: #854F0B; color: #FAC775; }
.cat-partage { background: #993556; color: #F4C0D1; }

.article-list { display: flex; flex-direction: column; gap: 14px; }

.article-row {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--creme2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: #fff;
  transition: all 0.2s;
  align-items: flex-start;
}
.article-row:hover { border-color: var(--terra); transform: translateX(4px); }

.art-thumb-box {
  width: 80px;
  height: 64px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.art-col { flex: 1; }
.art-title { font-size: 14px; font-weight: 500; color: var(--texte); line-height: 1.4; margin-bottom: 6px; }
.art-excerpt { font-size: 12px; color: var(--texte-doux); line-height: 1.5; margin-bottom: 8px; }
.art-meta-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--texte-pale); }

/* Sidebar blog */
.sb-block { margin-bottom: 32px; }
.sb-heading {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--texte-pale);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--creme2);
}

.sb-mag-card {
  border: 1px solid var(--creme2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sb-mag-cover {
  height: 90px;
  background: linear-gradient(135deg, #EEEDFE, #CECBF6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-mag-body { padding: 14px; }
.sb-mag-title { font-size: 13px; font-weight: 500; color: var(--texte); margin-bottom: 4px; }
.sb-mag-price { font-size: 13px; color: var(--terra); font-weight: 500; margin-bottom: 10px; }
.sb-mag-btn {
  display: block;
  width: 100%;
  padding: 9px;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 5px 12px;
  border: 1px solid var(--creme2);
  border-radius: 20px;
  font-size: 11px;
  color: var(--texte-doux);
  cursor: pointer;
  transition: all 0.2s;
}
.tag:hover { background: var(--terra); color: #fff; border-color: var(--terra); }

.recent-art-list { display: flex; flex-direction: column; gap: 10px; }
.recent-art-item {
  display: flex;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background 0.2s;
  align-items: flex-start;
}
.recent-art-item:hover { background: var(--creme); }
.ra-icon { width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.ra-title { font-size: 12px; font-weight: 500; color: var(--texte); line-height: 1.35; }
.ra-date { font-size: 10px; color: var(--texte-pale); margin-top: 2px; }

.nl-box {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--creme2);
}
.nl-text { font-size: 13px; color: var(--texte-doux); line-height: 1.6; margin-bottom: 12px; }
.nl-input-wrap { display: flex; flex-direction: column; gap: 8px; }
.nl-email {
  padding: 9px 12px;
  border: 1px solid var(--creme2);
  border-radius: var(--radius);
  font-size: 13px;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  color: var(--texte);
}
.nl-submit {
  padding: 9px;
  background: var(--noir);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* ────────────────────────────────────────────
   PAGE : BOOTIK
──────────────────────────────────────────── */

.bootik-hero {
  background: var(--noir);
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.bootik-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  padding: 40px;
  background: var(--creme);
  min-height: 600px;
}

.bootik-filters-col {
  padding-right: 28px;
  border-right: 1px solid var(--creme2);
}

.bootik-filter-title {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--texte-pale);
  margin-bottom: 12px;
  margin-top: 24px;
}
.bootik-filter-title:first-child { margin-top: 0; }

.bootik-filter-list { list-style: none; }
.bootik-filter-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--texte-doux);
  cursor: pointer;
  border-radius: var(--radius);
  transition: color 0.2s;
}
.bootik-filter-list li:hover { color: var(--terra); }
.bootik-filter-list li.active { color: var(--terra); font-weight: 500; }
.filter-count { font-size: 11px; color: var(--texte-pale); }

.bootik-products-col { padding-left: 28px; }

.bootik-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bootik-count { font-size: 13px; color: var(--texte-pale); }

.sort-select {
  padding: 7px 12px;
  border: 1px solid var(--creme2);
  border-radius: var(--radius);
  font-size: 12px;
  background: #fff;
  color: var(--texte);
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card-full {
  background: #fff;
  border: 1px solid var(--creme2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.product-card-full:hover {
  border-color: var(--terra);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.pc-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pc-badge-new { background: var(--vert); color: #fff; }
.pc-badge-num { background: var(--violet); color: #CECBF6; }

.pc-body { padding: 14px 16px; }
.pc-name { font-size: 14px; font-weight: 500; color: var(--texte); margin-bottom: 3px; }
.pc-type { font-size: 10px; color: var(--texte-pale); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.pc-price { font-size: 16px; font-weight: 600; color: var(--terra); font-family: 'Playfair Display', serif; }

.pc-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  background: var(--noir);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.pc-btn:hover { background: var(--terra); }

/* ────────────────────────────────────────────
   PAGE : CONTACT
──────────────────────────────────────────── */

.contact-hero {
  background: var(--noir);
  padding: 80px 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 40px;
  background: #fff;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--texte-doux);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--creme);
  border-radius: var(--radius);
}
.cd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cd-label { font-size: 11px; color: var(--texte-pale); text-transform: uppercase; letter-spacing: 0.06em; }
.cd-value { font-size: 14px; font-weight: 500; color: var(--texte); margin-top: 2px; }

.social-contact { display: flex; gap: 10px; }
.sc-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--creme2);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.sc-btn:hover { border-color: var(--terra); background: var(--terra); }

.contact-form { }
.form-row { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--texte-doux);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--creme2);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--creme);
  color: var(--texte);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--terra);
  background: #fff;
}
.form-textarea { height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--terra-dark); }

.don-section {
  background: var(--or-pale);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid var(--creme2);
}

.don-amounts { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.don-amount {
  padding: 10px 20px;
  border: 1px solid rgba(184,116,23,0.3);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--texte);
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.don-amount:hover, .don-amount.active {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

/* ────────────────────────────────────────────
   UTILITIES
──────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--creme2); margin: 0; }
.divider-dark { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 0; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page.active .hero-eyebrow { animation: fadeUp 0.5s ease both; }
.page.active .hero-title { animation: fadeUp 0.5s 0.1s ease both; }
.page.active .hero-subtitle { animation: fadeUp 0.5s 0.2s ease both; }
.page.active .hero-btns { animation: fadeUp 0.5s 0.3s ease both; }
.page.active .hero-right { animation: fadeUp 0.5s 0.2s ease both; }

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 40px 20px; }
  .hero-right { display: none; }
  .section, .section-sm { padding: 50px 20px; }
}
