/* ============================================================
   LISTE PARTY — "Dans le bon"
   Mobile-first responsive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --void:   #080808;
  --deep:   #111111;
  --panel:  #181818;
  --line:   #2a2a2a;
  --ghost:  #3a3a3a;
  --smoke:  #888;
  --bone:   #e8e2d4;
  --white:  #f5f2ec;
  --gold:   #c9a84c;
  --gold-l: #e2c57a;
  --lime:   #b5ff47;
  --red:    #ff3b3b;
  --r: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 999;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--void); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TYPO ──────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.mono {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--line);
  color: var(--smoke);
  white-space: nowrap;
}
.tag-gold { border-color: var(--gold); color: var(--gold); }
.tag-lime { border-color: var(--lime); color: var(--lime); }
.tag-red  { border-color: var(--red);  color: var(--red); }

/* ── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative; z-index: 1;
}
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 56px;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  padding: 0 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.brand-dot {
  width: 7px; height: 7px;
  background: var(--lime); border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.brand-slogan {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  display: flex; align-items: center;
  padding: 0 14px;
  height: 56px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--smoke);
  border-left: 1px solid var(--line);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.nav-links a:hover { color: var(--bone); background: var(--panel); }
.nav-links a.active { color: var(--gold); }
.nav-links a.nav-cta { color: var(--void); background: var(--gold); border-color: var(--gold); font-weight: 600; }
.nav-links a.nav-cta:hover { background: var(--gold-l); }

/* ── HERO ──────────────────────────────────────────────── */
.hero { position: relative; padding: 48px 0 40px; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 80px 0 64px; } }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(201,168,76,0.07), transparent 65%),
    radial-gradient(ellipse 60% 80% at 5% 60%,  rgba(181,255,71,0.04), transparent 65%);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-title {
  font-size: clamp(2.4rem, 12vw, 8rem);
  line-height: 0.92; margin-bottom: 20px; color: var(--white);
}
.hero-title .gold { color: var(--gold); font-style: italic; }
.hero-title .outline { -webkit-text-stroke: 1px var(--ghost); color: transparent; }
.hero-desc { max-width: 520px; color: var(--smoke); font-size: 1rem; margin-bottom: 28px; line-height: 1.65; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-val span { color: var(--gold); }
.stat-label { font-size: 0.78rem; color: var(--smoke); margin-top: 3px; }

/* ── BTNS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.03em;
  cursor: pointer; border: none; border-radius: var(--r);
  transition: all 0.2s; text-transform: uppercase;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--void); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--bone); border: 1px solid var(--ghost); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lime { background: var(--lime); color: var(--void); }
.btn-lime:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: var(--panel); color: var(--bone); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ghost); background: var(--ghost); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { filter: brightness(1.1); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 0.95rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── SECTION ───────────────────────────────────────────── */
.section { padding: 48px 0; border-top: 1px solid var(--line); }
@media (min-width: 768px) { .section { padding: 64px 0; } }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.section-title { font-size: clamp(1.6rem, 5vw, 2.8rem); color: var(--white); }
.section-title .gold { color: var(--gold); font-style: italic; }
.section-eyebrow { color: var(--smoke); margin-bottom: 10px; }

/* ── EVENT CARDS ───────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }

.event-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--bone);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.event-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  opacity: 0; transition: opacity 0.25s;
}
.event-card:hover { transform: translateY(-3px); border-color: var(--ghost); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.event-card:hover::before { opacity: 1; }

.event-card-img { width: 100%; height: auto; display: block; background: var(--deep); }
.event-card-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--deep), var(--panel));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-style: italic;
  color: var(--line); font-size: 1.2rem;
}
.event-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.event-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; gap: 8px; flex-wrap: wrap; }
.event-card-title { font-size: 1.25rem; margin-bottom: 6px; color: var(--white); line-height: 1.15; }
.event-card-loc { color: var(--smoke); font-size: 0.85rem; margin-bottom: 14px; }
.event-card-foot {
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.seats-badge {
  font-family: 'Space Mono', monospace; font-size: 0.65rem;
  padding: 3px 8px; border-radius: 2px;
  border: 1px solid var(--ghost); color: var(--smoke);
}
.seats-badge.urgent { border-color: var(--gold); color: var(--gold); }
.seats-badge.full   { border-color: var(--red);  color: var(--red); }
.card-arrow { color: var(--gold); font-size: 1.1rem; transition: transform 0.2s; }
.event-card:hover .card-arrow { transform: translateX(4px); }

/* ── RECAP GRID ────────────────────────────────────────── */
.recap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 640px) { .recap-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 900px) { .recap-grid { grid-template-columns: repeat(4, 1fr); } }

.recap-card {
  position: relative; overflow: hidden;
  border-radius: var(--r); aspect-ratio: 4/3;
  background: var(--panel); border: 1px solid var(--line);
}
.recap-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, filter 0.4s; filter: saturate(0.8) brightness(0.85); }
.recap-card:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }
.recap-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(8,8,8,.85) 0%,transparent 55%); padding: 12px; display: flex; align-items: flex-end; pointer-events: none; }
.recap-card-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--white); }
.recap-card-date  { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: var(--gold); margin-bottom: 3px; }

/* ── FORM ──────────────────────────────────────────────── */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--smoke); font-weight: 600; }
.field input, .field textarea, .field select {
  background: var(--panel); border: 1px solid var(--line);
  color: var(--bone); padding: 12px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input[type="file"] { padding: 8px; cursor: pointer; color: var(--smoke); }
.field select option { background: var(--panel); }

/* ── AUTH ──────────────────────────────────────────────── */
.auth-wrap {
  max-width: 460px; margin: 40px auto;
  padding: 28px 20px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); position: relative;
}
@media (min-width: 480px) { .auth-wrap { padding: 40px 32px; margin: 60px auto; } }
.auth-wrap::after {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
}
.auth-title { font-size: clamp(1.8rem, 7vw, 2.4rem); color: var(--white); margin-bottom: 6px; }
.auth-sub { color: var(--smoke); margin-bottom: 24px; font-size: 0.9rem; }
.auth-switch { text-align: center; margin-top: 20px; color: var(--smoke); font-size: 0.88rem; }
.auth-switch a { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; }

/* ── FORMULAS (page event) ─────────────────────────────── */
.formulas-grid { display: grid; gap: 8px; }
.formula-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--r);
  cursor: pointer; transition: all 0.2s; gap: 12px;
}
@media (min-width: 480px) { .formula-card { padding: 16px 20px; } }
.formula-card:hover { border-color: var(--ghost); background: var(--deep); }
.formula-card.selected {
  border-color: var(--gold); background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 1px var(--gold);
}
.formula-card.selected .formula-check { opacity: 1; }
.formula-unavail { opacity: 0.42; cursor: not-allowed; border-style: dashed !important; }
.formula-unavail:hover { border-color: var(--line) !important; background: var(--deep) !important; }
.formula-left { flex: 1; min-width: 0; }
.formula-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 3px; }
.formula-desc { color: var(--smoke); font-size: 0.85rem; line-height: 1.4; }
.formula-guests { color: var(--lime); font-family: 'Space Mono', monospace; font-size: 0.65rem; margin-top: 4px; }
.formula-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.formula-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
.formula-check { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; color: var(--void); font-size: 0.7rem; flex-shrink: 0; }

/* ── QR TICKET ─────────────────────────────────────────── */
.ticket {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
  max-width: 360px; margin: 0 auto; width: 100%;
}
.ticket-header { background: var(--gold); padding: 16px 20px; color: var(--void); }
.ticket-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 900; }
.ticket-slogan { font-family: 'Space Mono', monospace; font-size: 0.6rem; margin-top: 2px; }
.ticket-body { padding: 18px 20px; }
.ticket-event { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); margin-bottom: 4px; }
.ticket-sub { color: var(--smoke); font-size: 0.85rem; margin-bottom: 16px; }
.ticket-info { display: grid; gap: 8px; margin-bottom: 18px; }
.ticket-row { display: flex; justify-content: space-between; font-size: 0.85rem; border-bottom: 1px solid var(--line); padding-bottom: 7px; gap: 8px; }
.ticket-row-label { color: var(--smoke); flex-shrink: 0; }
.ticket-row-val { color: var(--white); font-weight: 600; text-align: right; }
.ticket-qr { background: white; padding: 12px; border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.ticket-qr img { width: 100%; max-width: 200px; }
.ticket-footer { border-top: 1px dashed var(--line); padding: 12px 20px; font-family: 'Space Mono', monospace; font-size: 0.58rem; color: var(--smoke); text-align: center; }

/* ── INVITE BANNER ─────────────────────────────────────── */
.invite-banner {
  background: linear-gradient(135deg, var(--panel), rgba(181,255,71,0.04));
  border: 1px solid var(--lime); border-radius: var(--r);
  padding: 20px; margin-top: 16px; position: relative; overflow: hidden;
}
.invite-banner::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--lime), transparent); }
.invite-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 4px; }
.invite-desc { color: var(--smoke); font-size: 0.88rem; margin-bottom: 14px; }
.invite-link-box { display: flex; align-items: center; gap: 8px; background: var(--deep); border: 1px solid var(--ghost); border-radius: var(--r); padding: 8px 12px; overflow: hidden; }
.invite-link-text { flex: 1; font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--lime); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.copy-btn { font-family: 'Space Mono', monospace; font-size: 0.6rem; padding: 5px 10px; background: var(--lime); color: var(--void); border: none; border-radius: 2px; cursor: pointer; font-weight: 700; text-transform: uppercase; flex-shrink: 0; transition: background 0.2s; }
.copy-btn:hover { background: #c8ff55; }

/* ── RESERVATIONS LIST ─────────────────────────────────── */
.resa-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px;
  display: flex; gap: 12px; align-items: flex-start;
  flex-wrap: wrap; position: relative; overflow: hidden;
  margin-bottom: 12px;
}
@media (min-width: 520px) { .resa-card { padding: 20px 22px; gap: 16px; } }
.resa-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ghost); }
.resa-card.paid::before    { background: var(--lime); }
.resa-card.pending::before { background: var(--gold); }
.resa-card.cancelled::before { background: var(--red); opacity: 0.5; }
.resa-info { flex: 1; min-width: 0; }
.resa-event-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 3px; }
.resa-meta   { color: var(--smoke); font-size: 0.85rem; }
.resa-formula{ color: var(--gold);  font-size: 0.85rem; margin-top: 3px; }
.resa-right  { text-align: right; flex-shrink: 0; }
.resa-status { font-family: 'Space Mono', monospace; font-size: 0.65rem; margin-bottom: 4px; }
.resa-status.paid     { color: var(--lime); }
.resa-status.pending  { color: var(--gold); }
.resa-status.cancelled{ color: var(--red); opacity: 0.6; }
.resa-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }

/* ── EVENT DETAIL ──────────────────────────────────────── */
.event-hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; padding: 32px 0;
}
@media (min-width: 800px) {
  .event-hero-grid { grid-template-columns: 1.15fr 1fr; gap: 40px; padding: 48px 0; }
}
.gallery-main { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--r); display: block; background: var(--panel); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 6px; }
.gallery-thumb { aspect-ratio: 1; object-fit: cover; border-radius: 2px; cursor: pointer; opacity: 0.5; transition: opacity 0.2s; background: var(--panel); }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; }
.event-info-title { font-size: clamp(1.6rem, 6vw, 3rem); color: var(--white); margin-bottom: 10px; }
.meta-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 18px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); margin: 18px 0;
}
.meta-item .mono { color: var(--smoke); margin-bottom: 4px; }
.meta-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
.meta-val.urgent { color: var(--red); }
.event-desc-text { color: var(--smoke); line-height: 1.75; white-space: pre-wrap; margin-bottom: 22px; }

/* ── ALERTS / SPINNER ──────────────────────────────────── */
.alert {
  padding: 12px 14px; border-radius: var(--r); margin: 12px 0;
  font-size: 0.9rem; border: 1px solid var(--red);
  background: rgba(255,59,59,0.08); color: var(--bone);
}
.alert.success { border-color: var(--lime); background: rgba(181,255,71,0.07); color: var(--lime); }
.alert.info    { border-color: var(--gold); background: rgba(201,168,76,0.07); color: var(--gold); }
.spinner { width: 18px; height: 18px; border: 2px solid var(--ghost); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.7s linear infinite; display: inline-block; flex-shrink: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); margin-top: 48px; background: var(--deep); }

.footer-top {
  display: flex; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-block { flex: 0 0 240px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); }
.footer-brand span { color: var(--gold); font-style: italic; }
.footer-sub { color: var(--smoke); font-size: 0.8rem; margin-top: 6px; line-height: 1.5; max-width: 240px; }

.footer-nav { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-nav-col { display: flex; flex-direction: column; gap: 10px; min-width: 120px; }
.footer-nav-title {
  font-family: 'Space Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 4px;
}
.footer-nav-col a { color: var(--bone); font-size: 0.88rem; transition: color 0.15s; }
.footer-nav-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--smoke);
}
.footer-bottom-right { display: flex; align-items: center; gap: 8px; }

/* compat ancien .footer-inner */
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; padding: 32px 0; }
.footer-right { text-align: right; color: var(--smoke); font-size: 0.8rem; }

/* ── UTILS ─────────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-lime  { color: var(--lime); }
.text-smoke { color: var(--smoke); }
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.italic { font-style: italic; }
.mt-2 { margin-top: 14px; }
.mt-4 { margin-top: 28px; }
.mb-2 { margin-bottom: 14px; }
.mb-4 { margin-bottom: 28px; }
.empty-state { padding: 52px 16px; text-align: center; color: var(--smoke); font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; }
.fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp 0.55s cubic-bezier(0.2,0.8,0.2,1) forwards; }
@keyframes fadeUp { to { opacity:1; transform: translateY(0); } }
.d1 { animation-delay: 0.07s; }
.d2 { animation-delay: 0.14s; }
.d3 { animation-delay: 0.21s; }
.d4 { animation-delay: 0.28s; }