/* ============================================================
   LA PLUME D'OR — Feuille de style principale
   Thème : Noir & Or / Motifs anciens / Univers Willster
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #8B6914;
  --gold-pale:   #F5E6C0;
  --noir:        #0A0906;
  --noir-mid:    #12100C;
  --noir-soft:   #1C1810;
  --noir-card:   #18150E;
  --blanc:       #F5EDD8;
  --blanc-dim:   #BFB49A;
  --red-accent:  #8B2020;
  --teal-accent: #2A5C5A;

  --font-title:  'Cinzel Decorative', serif;
  --font-serif:  'Cinzel', serif;
  --font-body:   'EB Garamond', serif;

  --border-gold: 1px solid rgba(201,168,76,.35);
  --shadow-gold: 0 0 24px rgba(201,168,76,.08), 0 4px 16px rgba(0,0,0,.6);
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  all .3s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--noir);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(201,168,76,.07) 0%, transparent 70%);
}

/* ── Motif de fond (ornement répété) ───────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 4 L44 14 L54 14 L46 20 L49 30 L40 24 L31 30 L34 20 L26 14 L36 14 Z' fill='none' stroke='%23C9A84C' stroke-width='.4' opacity='.07'/%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23C9A84C' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Liens ──────────────────────────────────────────────────── */
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Sélection ──────────────────────────────────────────────── */
::selection { background: var(--gold-dark); color: var(--gold-pale); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,9,6,.92);
  border-bottom: var(--border-gold);
  backdrop-filter: blur(8px);
}

.nav__inner {
  max-width: 1300px; margin: auto;
  padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .08em;
  display: flex; align-items: center; gap: .5rem;
}
.nav__logo span { font-size: 1.4rem; }

.nav__links {
  display: flex; gap: 2rem;
  list-style: none;
  font-family: var(--font-serif);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--blanc-dim);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--gold); }

.nav__cta {
  display: flex; gap: .75rem;
}

/* ── Bouton hamburger mobile ─── */
.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: .4rem;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); transition: var(--transition);
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-serif);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .65rem 1.6rem;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--noir);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(201,168,76,.3);
}
.btn--gold:hover {
  box-shadow: 0 4px 20px rgba(201,168,76,.5);
  transform: translateY(-1px);
  color: var(--noir);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: rgba(201,168,76,.08);
}

.btn--ghost {
  background: transparent;
  color: var(--blanc-dim);
  border: 1px solid rgba(201,168,76,.2);
}
.btn--ghost:hover { color: var(--gold); border-color: var(--gold); }

.btn--danger {
  background: var(--red-accent);
  color: var(--blanc);
}
.btn--danger:hover { background: #a02828; }

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 1;
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1400px; }

.page-wrapper { padding-top: 80px; min-height: 100vh; }

/* ── Section titles ─────────────────────────────────────────── */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--gold);
  text-align: center;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.section-title::before,
.section-title::after {
  content: ' ✦ ';
  font-size: .7em;
  opacity: .6;
}

.section-sub {
  text-align: center;
  color: var(--blanc-dim);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 3rem 0;
  opacity: .4;
}
.divider::before, .divider::after {
  content: ''; flex: 1;
  height: 1px; background: var(--gold);
}
.divider span { color: var(--gold); font-size: .9rem; }

/* ============================================================
   CARTES
   ============================================================ */
.card {
  background: var(--noir-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-gold);
  position: relative;
}

/* Coins ornementaux */
.card--ornate::before,
.card--ornate::after {
  content: '✦';
  position: absolute;
  font-size: .7rem;
  color: var(--gold);
  opacity: .5;
}
.card--ornate::before { top: .7rem; left: .9rem; }
.card--ornate::after  { bottom: .7rem; right: .9rem; }

.card__title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 4rem;
  position: relative; overflow: hidden;
}

.hero__emblem {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: floatGold 4s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(201,168,76,.5));
}

@keyframes floatGold {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: .8;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--gold);
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(201,168,76,.3);
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--blanc-dim);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* ── Séparateur ornemental hero ─── */
.hero__ornament {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-title); font-size: 1.5rem; color: var(--gold);
  opacity: .3; letter-spacing: .5em;
}

/* ── Fond ambiance hero ─── */
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,.04) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 20% 80%, rgba(139,32,32,.06) 0%, transparent 60%);
}

/* ============================================================
   FORMULAIRES
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-family: var(--font-serif);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
  opacity: .8;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem 1rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
  background: rgba(255,255,255,.06);
}
.form-input::placeholder { color: rgba(191,180,154,.3); }

.form-select option { background: var(--noir-mid); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-error {
  font-size: .82rem; color: #e25555; margin-top: .3rem;
}
.form-success {
  font-size: .82rem; color: #7ec87e; margin-top: .3rem;
}

/* ── Auth card centré ─── */
.auth-wrapper {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - 80px); padding: 3rem 1rem;
}
.auth-card {
  width: 100%; max-width: 460px;
  background: var(--noir-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-gold);
}
.auth-card__title {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.auth-divider {
  text-align: center; color: var(--blanc-dim);
  font-size: .85rem; margin: 1.5rem 0;
  position: relative;
}
.auth-divider::before, .auth-divider::after {
  content: ''; position: absolute; top: 50%;
  width: 38%; height: 1px; background: rgba(201,168,76,.2);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }

/* ============================================================
   GRILLE PRODUITS / BOUTIQUE
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--noir-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.6);
}

.product-card__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background: linear-gradient(135deg, var(--noir-soft) 0%, var(--noir-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.product-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card__cycle {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); opacity: .7; margin-bottom: .3rem;
}
.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem; color: var(--blanc); margin-bottom: .5rem;
}
.product-card__desc {
  font-size: .9rem; color: var(--blanc-dim);
  flex: 1; margin-bottom: 1rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card__footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--gold);
}

/* ============================================================
   PANNEAU ADMIN
   ============================================================ */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 80px);
}

.admin-sidebar {
  background: var(--noir-card);
  border-right: var(--border-gold);
  padding: 2rem 0;
}
.admin-sidebar__title {
  font-family: var(--font-serif);
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); padding: 0 1.5rem; margin-bottom: 1rem; opacity: .7;
}
.admin-sidebar__nav { list-style: none; }
.admin-sidebar__nav li a {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.5rem;
  color: var(--blanc-dim); font-family: var(--font-serif);
  font-size: .88rem; transition: var(--transition);
  border-left: 2px solid transparent;
}
.admin-sidebar__nav li a:hover,
.admin-sidebar__nav li a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,168,76,.06);
}

.admin-content { padding: 2.5rem; }

.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: var(--border-gold);
}
.admin-header__title {
  font-family: var(--font-title);
  color: var(--gold); font-size: 1.4rem;
}

/* ── Stats cards admin ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.stat-card {
  background: var(--noir-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.stat-card__val {
  font-family: var(--font-title);
  font-size: 2.2rem; color: var(--gold);
}
.stat-card__label {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blanc-dim); margin-top: .25rem;
}

/* ── Table admin ─── */
.table-wrap { overflow-x: auto; }
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem;
}
.data-table th {
  font-family: var(--font-serif);
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); padding: .75rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
  text-align: left;
}
.data-table td {
  padding: .8rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,.08);
  color: var(--blanc-dim);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(201,168,76,.03); }

/* ── Badge ─── */
.badge {
  display: inline-block; padding: .2rem .65rem;
  border-radius: 20px; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase;
  font-family: var(--font-serif);
}
.badge--gold    { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.3); }
.badge--green   { background: rgba(78,160,78,.15);  color: #7ec87e; border: 1px solid rgba(78,160,78,.3); }
.badge--red     { background: rgba(160,40,40,.2);   color: #e27070; border: 1px solid rgba(160,40,40,.3); }
.badge--gray    { background: rgba(255,255,255,.06); color: var(--blanc-dim); border: 1px solid rgba(255,255,255,.1); }

/* ============================================================
   PROFIL JOUEUR
   ============================================================ */
.profile-hero {
  background: var(--noir-card);
  border-bottom: var(--border-gold);
  padding: 3rem 0;
  text-align: center;
}
.profile-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--noir-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 3rem; margin-bottom: 1rem;
  box-shadow: 0 0 24px rgba(201,168,76,.2);
}
.profile-username {
  font-family: var(--font-title); color: var(--gold); font-size: 1.6rem;
}
.profile-joined {
  font-size: .82rem; color: var(--blanc-dim); margin-top: .25rem;
}

/* ── Game history ─── */
.game-entry {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--noir-card); border: var(--border-gold);
  border-radius: var(--radius-lg); padding: 1rem 1.5rem;
  margin-bottom: 1rem; transition: var(--transition);
}
.game-entry:hover { border-color: rgba(201,168,76,.5); }
.game-entry__thumb {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--noir-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  flex-shrink: 0;
}
.game-entry__info { flex: 1; }
.game-entry__title { font-family: var(--font-serif); color: var(--blanc); }
.game-entry__meta  { font-size: .82rem; color: var(--blanc-dim); }
.game-entry__score { font-family: var(--font-serif); color: var(--gold); font-size: 1.2rem; text-align: right; }
.game-entry__time  { font-size: .78rem; color: var(--blanc-dim); text-align: right; }

/* ============================================================
   PAGE UNIVERS / STORY
   ============================================================ */
.story-section { padding: 5rem 0; }
.story-section:nth-child(even) .story-section__inner { flex-direction: row-reverse; }

.story-section__inner {
  display: flex; gap: 4rem; align-items: center;
}

.story-section__text { flex: 1; }
.story-section__visual {
  flex: 0 0 380px;
  background: var(--noir-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center; font-size: 4rem;
}

.story-lead {
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold);
  font-style: italic; margin-bottom: 1rem;
}
.story-text { color: var(--blanc-dim); line-height: 1.9; }

/* ── Personnages ─── */
.chars-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}
.char-card {
  background: var(--noir-card); border: var(--border-gold);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: center;
  transition: var(--transition);
}
.char-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.char-card__avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--noir-soft);
  border: 1px solid rgba(201,168,76,.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: .75rem;
}
.char-card__name { font-family: var(--font-serif); color: var(--gold); font-size: .95rem; }
.char-card__role { font-size: .78rem; color: var(--blanc-dim); margin-top: .2rem; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--noir-card);
  border-top: var(--border-gold);
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.5);
  transform: translateY(0); transition: transform .4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
.cookie-text { font-size: .88rem; color: var(--blanc-dim); max-width: 700px; }
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--noir-card);
  border-top: var(--border-gold);
  padding: 3rem 0 1.5rem;
  margin-top: 6rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer__brand { font-family: var(--font-title); color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }
.footer__desc { font-size: .88rem; color: var(--blanc-dim); line-height: 1.7; }
.footer__heading {
  font-family: var(--font-serif); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; opacity: .7;
}
.footer__links { list-style: none; }
.footer__links li + li { margin-top: .4rem; }
.footer__links a { font-size: .88rem; color: var(--blanc-dim); }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(201,168,76,.12);
  padding-top: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem; color: var(--blanc-dim); flex-wrap: wrap; gap: .5rem;
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: var(--blanc-dim); }
.footer__legal a:hover { color: var(--gold); }

/* ============================================================
   ALERTES / FLASH MESSAGES
   ============================================================ */
.alert {
  padding: .9rem 1.25rem; border-radius: var(--radius);
  margin-bottom: 1.25rem; font-size: .9rem;
  display: flex; align-items: center; gap: .75rem;
}
.alert--success { background: rgba(78,160,78,.12); border: 1px solid rgba(78,160,78,.3); color: #7ec87e; }
.alert--error   { background: rgba(160,40,40,.15);  border: 1px solid rgba(160,40,40,.3);  color: #e27070; }
.alert--info    { background: rgba(201,168,76,.1);  border: 1px solid rgba(201,168,76,.25);color: var(--gold); }

/* ============================================================
   PAGES LÉGALES (mentions, CGV, cookies)
   ============================================================ */
.legal-page { max-width: 860px; margin: 0 auto; padding: 5rem 2rem; }
.legal-page h1 {
  font-family: var(--font-title); color: var(--gold); margin-bottom: .5rem;
  font-size: 1.8rem;
}
.legal-page .legal-date { color: var(--blanc-dim); font-size: .85rem; margin-bottom: 3rem; }
.legal-page h2 {
  font-family: var(--font-serif); color: var(--gold);
  font-size: 1.1rem; margin: 2rem 0 .75rem;
  padding-bottom: .4rem; border-bottom: 1px solid rgba(201,168,76,.2);
}
.legal-page p, .legal-page li { color: var(--blanc-dim); line-height: 1.85; margin-bottom: .75rem; }
.legal-page ul { padding-left: 1.5rem; }
.legal-page strong { color: var(--blanc); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .story-section__inner { flex-direction: column !important; }
  .story-section__visual { flex: none; width: 100%; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,9,6,.97);
    padding: 1rem 2rem 2rem;
    border-bottom: var(--border-gold);
    gap: 1rem;
  }
  .hero__title { font-size: 2.2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  #cookie-banner { flex-direction: column; }
}

/* ── Utilitaires ──────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--blanc-dim); }
.text-center { text-align: center; }
.mt-1  { margin-top: .5rem; }  .mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; } .mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }   .mt-8  { margin-top: 4rem; }
.mb-1  { margin-bottom: .5rem; }.mb-2  { margin-bottom: 1rem; }
.mb-4  { margin-bottom: 2rem; }.mb-6  { margin-bottom: 3rem; }
.py-section { padding: 5rem 0; }
.hidden { display: none !important; }

/* ── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
