/* ===== La Taverne — Refonte design (verbatim DesignProto) =====
   Deep wood + candle gold + parchment text, Cinzel + Cormorant.
   Toutes les classes du proto sont reproduites ici.
   Les thèmes surchargent les variables --bg, --ink, --gold, etc.
*/

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

:root {
  /* Surfaces — deep wood */
  --bg:       #150d08;
  --bg-soft:  #1f1410;
  --bg-card:  #2a1a12;
  --bg-card-2:#352116;
  --bg-elev:  #3d2719;
  --bg-deep:  #0e0805;

  /* Parchment text */
  --ink:    #f5e6c4;
  --ink-2:  #e2cf9d;
  --ink-3:  #b59c70;
  --ink-4:  #8a7250;
  --hairline:        rgba(212, 175, 55, 0.14);
  --hairline-strong: rgba(212, 175, 55, 0.30);

  /* Gold + accents */
  --gold:        #d4af37;
  --gold-light:  #f4d35e;
  --gold-dark:   #a07c1a;
  --copper:      #b87333;
  --accent:      #d4af37;
  --accent-deep: #a07c1a;
  --ember:       #e07a3a;
  --ember-deep:  #a4501f;
  --moss:        #6e8b3a;

  /* Status */
  --ok:     #6ea64a;
  --warn:   #e0a13a;
  --danger: #c64a1a;

  /* Typography */
  --f-display: "Cormorant Garamond", "Lora", "Times New Roman", serif;
  --f-heading: "Cinzel", "Cormorant Garamond", serif;
  --f-body:    "Lora", Georgia, serif;
  --f-serif-body: "Lora", Georgia, serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Radii */
  --r-xs: 3px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 0 rgba(212, 175, 55, 0.05), 0 6px 18px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 1px 0 rgba(212, 175, 55, 0.06), 0 14px 40px -8px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 40px 90px -20px rgba(0, 0, 0, 0.85), 0 0 40px rgba(212, 175, 55, 0.10);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);

  /* Spacing */
  --pad-1: 6px; --pad-2: 10px; --pad-3: 14px; --pad-4: 20px; --pad-5: 28px; --pad-6: 40px;
}

/* === Alias legacy (anciens noms encore utilisés par certains thèmes) === */
:root {
  --bg-primary:   var(--bg);
  --bg-secondary: var(--bg-soft);
  --bg-tertiary:  var(--bg-card);
  --bg-section:   var(--bg-soft);
  --bg-hover:     var(--bg-card-2);
  --card-bg-start: var(--bg-card);
  --card-bg-end:   var(--bg-card-2);
  --accent-primary:       var(--gold);
  --accent-primary-light: var(--gold-light);
  --accent-primary-dark:  var(--gold-dark);
  --accent-secondary:     var(--copper);
  --text-primary:   var(--ink);
  --text-secondary: var(--ink-2);
  --text-muted:     var(--ink-3);
  --text-on-accent: var(--bg);
  --color-success:       var(--ok);
  --color-success-light: #93c463;
  --color-danger:        var(--danger);
  --color-danger-light:  var(--ember);
  --font-display: var(--f-display);
  --font-heading: var(--f-heading);
  --font-body:    var(--f-body);
  --wood-dark:      var(--bg);
  --wood-medium:    var(--bg-card);
  --parchment:      var(--ink);
  --parchment-dark: var(--ink-2);
  --fire-red:       var(--danger);
  --fire-orange:    var(--ember);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.06), transparent 70%),
    linear-gradient(160deg, #1a0f0a 0%, #2a1810 40%, #120a06 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Wood grain + candlelight ambient */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.70 0 0 0 0 0.30 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: auto, 240px 240px;
}
body::after {
  content: "";
  position: fixed; inset: -25% -25% -25% -25%;
  pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  animation: candlelight 8s ease-in-out infinite;
}
@keyframes candlelight {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  25%      { opacity: 0.75; transform: scale(1.08); }
  50%      { opacity: 0.55; transform: scale(0.96); }
  75%      { opacity: 0.85; transform: scale(1.05); }
}

/* === Typography === */
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.18), 2px 2px 6px rgba(0, 0, 0, 0.7);
}
h1 { font-family: var(--f-display); font-weight: 500; letter-spacing: 0.015em; }

.smallcaps {
  font-family: var(--f-heading);
  font-size: 11.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.italic { font-style: italic; font-family: var(--f-body); }
.muted { color: var(--ink-3); }
.dim   { color: var(--ink-4); }

/* Ornament rule */
.rule-ornament {
  display: flex; align-items: center; gap: 14px;
  color: var(--gold-dark);
  margin: 0 auto;
  justify-content: center;
}
.rule-ornament .ln { width: 100px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.rule-ornament .gl { font-family: var(--f-display); font-size: 16px; color: var(--gold); text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
.rule-ornament .dia { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 6px rgba(212, 175, 55, 0.5); }

/* === Layout shell === */
.app { position: relative; z-index: 1; min-height: 100vh; }

/* Top header — restaurant-style centered, dark wood */
.tn {
  position: sticky; top: 0; z-index: 50;
  background: rgba(21, 13, 8, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline-strong);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.08), 0 12px 30px -10px rgba(0,0,0,0.6);
}
.tn-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.tn-left, .tn-right {
  display: flex; align-items: center;
  font-family: var(--f-heading);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  gap: 28px;
}
.tn-right { justify-content: flex-end; }
.tn-item {
  cursor: pointer;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease, text-shadow .15s ease;
  font-weight: 600;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.tn-item:hover { color: var(--gold); text-shadow: 0 0 8px rgba(212, 175, 55, 0.4); }
.tn-item.active { color: var(--gold); border-bottom-color: var(--gold); }

.tn-brand {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; line-height: 1;
  text-decoration: none;
  color: inherit;
}
.tn-brand-icon {
  width: 76px; height: 76px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 0 18px rgba(212, 175, 55, 0.22);
  display: grid;
  place-items: center;
}
.tn-brand-icon img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.tn-brand-text { display: flex; flex-direction: column; align-items: flex-start; }
.tn-brand .est {
  font-family: var(--f-heading);
  font-size: 8.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 3px;
}
.tn-brand .name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.015em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.35), 2px 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1;
}

.tn-cta {
  margin-left: 28px;
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.20), rgba(184, 134, 11, 0.25));
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.tn-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px 56px;
  position: relative;
  z-index: 1;
}

/* === Buttons === */
.btn {
  appearance: none;
  border: 1px solid var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(184, 134, 11, 0.15));
  color: var(--ink);
  padding: 9px 18px;
  border-radius: var(--r-sm);
  font-family: var(--f-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center; gap: 8px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .12s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.btn:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(184, 134, 11, 0.3));
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), 0 6px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}
.btn.secondary {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--ink-4);
}
.btn.secondary:hover { color: var(--gold); border-color: var(--gold); background: rgba(212, 175, 55, 0.08); }

.btn.ghost {
  background: transparent; color: var(--ink-2); border-color: transparent; box-shadow: none;
}
.btn.ghost:hover { background: rgba(212, 175, 55, 0.06); color: var(--gold); }

.btn.accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  border-color: var(--gold);
  text-shadow: none;
}
.btn.accent:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold), 0 8px 24px rgba(0, 0, 0, 0.55);
}
.btn.danger {
  background: linear-gradient(135deg, rgba(198, 74, 26, 0.20), rgba(224, 122, 58, 0.15));
  color: #f3b89a;
  border-color: var(--danger);
}
.btn.danger:hover {
  background: linear-gradient(135deg, var(--danger), #8e3613);
  color: #fff;
  border-color: var(--ember);
}
.btn.lg { padding: 12px 22px; font-size: 11.5px; }
.btn.icon { padding: 9px 11px; }
.btn.sm { padding: 7px 14px; font-size: 10.5px; letter-spacing: 0.18em; }

/* Anciens noms btn-primary/btn-secondary/btn-success/btn-danger pour rétro-compat */
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--bg); border-color: var(--gold); text-shadow: none; }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--bg); border-color: var(--gold-light); box-shadow: var(--shadow-gold), 0 8px 24px rgba(0, 0, 0, 0.55); }
.btn-secondary { background: transparent; color: var(--ink-2); border-color: var(--ink-4); }
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); background: rgba(212, 175, 55, 0.08); }
.btn-success { background: linear-gradient(135deg, rgba(110, 166, 74, 0.20), rgba(110, 166, 74, 0.10)); color: #c8e6a3; border-color: var(--ok); }
.btn-success:hover { background: linear-gradient(135deg, var(--ok), #4f7b34); color: #fff; border-color: var(--ok); }
.btn-danger { background: linear-gradient(135deg, rgba(198, 74, 26, 0.20), rgba(224, 122, 58, 0.15)); color: #f3b89a; border-color: var(--danger); }
.btn-danger:hover { background: linear-gradient(135deg, var(--danger), #8e3613); color: #fff; border-color: var(--ember); }

.qlink {
  font-family: var(--f-heading);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-dark);
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
  margin: 0 10px;
  display: inline-block;
}
.qlink:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* === Banner === */
.banner {
  position: relative;
  margin: 20px auto 0;
  height: clamp(140px, 18vw, 220px);
  width: 100%;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--bg-card-2), var(--bg-card));
  overflow: hidden;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(212, 175, 55, 0.08);
}
.banner img { display: block; width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(21, 13, 8, 0.55) 100%),
    radial-gradient(ellipse at 50% 50%, transparent, rgba(21, 13, 8, 0.25));
  z-index: 1;
}
.banner-overlay {
  position: absolute;
  left: 24px; bottom: 18px;
  z-index: 2;
  font-family: var(--f-heading);
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.banner-overlay .dia { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }

/* === HERO === */
.hero {
  padding: 40px 0 28px;
  text-align: center;
  position: relative;
}
.hero .smallcaps { display: inline-block; margin-bottom: 16px; }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.015em;
  max-width: 880px;
  margin: 0 auto;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.22), 2px 2px 12px rgba(0, 0, 0, 0.8);
}
.hero h1 .ital, .hero h1 em { font-family: var(--f-display); font-style: italic; font-weight: 500; letter-spacing: 0.005em; }
.hero h1 .accent-word { color: var(--gold); font-family: var(--f-display); font-style: italic; font-weight: 500; letter-spacing: 0.005em; }
.hero .lede {
  font-family: var(--f-body);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-2);
  max-width: 580px;
  margin: 18px auto 0;
  line-height: 1.5;
}
.hero .ctas {
  margin-top: 22px;
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}

/* === Section title === */
.section { padding: 56px 0 0; }
.section-head { text-align: center; margin-bottom: 30px; }
.section-head .smallcaps { display: inline-block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.015em;
  line-height: 1.1;
}
.section-head h2 em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.section-head .blurb {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  max-width: 540px;
  margin: 14px auto 0;
  line-height: 1.5;
}

/* === Menu list === */
.menu-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex; flex-direction: column;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  transition: padding .2s ease, background .2s ease;
  text-decoration: none; color: inherit;
}
.menu-item:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.04), transparent 60%);
}
.menu-item:hover .menu-item-arrow { transform: translateX(6px); color: var(--gold-light); text-shadow: 0 0 12px rgba(212, 175, 55, 0.6); }
.menu-item-main { display: flex; flex-direction: column; gap: 4px; }
.menu-item-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.015em;
}
.menu-item-title em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.005em;
}
.menu-item-desc {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--ink-3);
  font-size: 14px;
  max-width: 580px;
  line-height: 1.45;
}
.menu-item-num {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: 12px;
}
.menu-item-arrow {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink-3);
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

/* === Tonight === */
.tonight {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.tonight .left,
.tonight .right {
  position: relative;
  z-index: 1;
  background: linear-gradient(140deg, var(--bg-card-2) 0%, var(--bg-card) 100%);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(212, 175, 55, 0.08);
}
.tonight .left::before,
.tonight .right::before {
  content: "";
  position: absolute; inset: 5px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: calc(var(--r-md) - 2px);
  pointer-events: none;
}
.tonight .left > *,
.tonight .right > * { position: relative; z-index: 1; }
.tonight .smallcaps { color: var(--gold); margin-bottom: 12px; display: block; }
.tonight h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.015em;
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.2), 2px 2px 6px rgba(0,0,0,0.6);
}
.tonight h2 em {
  font-family: var(--f-display); font-style: italic;
  color: var(--gold); letter-spacing: 0.005em;
}
.tonight .blurb {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--ink-2);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.5;
  max-width: 460px;
}
.tonight .meta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.tonight .mg-cell .lbl {
  font-family: var(--f-heading);
  font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
  margin-bottom: 6px;
}
.tonight .mg-cell .val {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.015em;
  color: var(--ink);
}
.tonight .ctas { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.tonight .right .next-up {
  display: flex; flex-direction: column; gap: 12px;
}
.tonight .right .next-up .item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  gap: 12px;
}
.tonight .right .next-up .item:last-child { border-bottom: 0; }
.tonight .right .next-up .item .nm {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.015em;
  color: var(--ink);
}
.tonight .right .next-up .item .when {
  font-family: var(--f-heading);
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}

/* === Page header === */
.page-header {
  text-align: center;
  padding: 40px 0 22px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 28px;
  position: relative;
}
.page-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.1;
  letter-spacing: 0.015em;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.22), 2px 2px 12px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 0;
}
.page-title::after { display: none; }
.page-title em {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  color: var(--gold); letter-spacing: 0.005em;
}
.page-sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  margin: 14px auto 0;
  max-width: 620px;
  line-height: 1.5;
}
.page-actions {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 18px;
}

/* === Filters bar === */
.filters {
  display: flex; gap: 0; align-items: stretch;
  border: 1px solid var(--hairline-strong);
  background: var(--bg-card);
  margin-bottom: 22px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.filters .input {
  border: 0; background: transparent;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  font-family: var(--f-body);
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.filters .input { flex: 1; border-right: 1px solid var(--hairline); }
.filters .input[type="date"] { width: 200px; max-width: 220px; border-right: 1px solid var(--hairline); flex: 0 0 200px; }
.filters .input::placeholder { color: var(--ink-4); font-style: italic; }
.filters .clear {
  padding: 0 18px; cursor: pointer; color: var(--ink-3);
  background: transparent; border: 0; border-left: 1px solid var(--hairline);
  display: grid; place-items: center;
}
.filters .clear:hover { color: var(--gold); }

.input {
  appearance: none;
  border: 1px solid var(--hairline-strong);
  background: var(--bg-soft);
  color: var(--ink);
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  width: 100%;
  margin: 0;
}
.input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15); background: var(--bg-card); }
.input::placeholder { color: var(--ink-4); font-style: italic; }

select.input, select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* select option — needs readable bg */
select option { background: var(--bg-soft); color: var(--ink); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-family: var(--f-heading);
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  color: var(--ink-3);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .15s ease;
}
.chip.active { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--bg); border-color: var(--gold); }
.chip:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

/* === Event rows === */
.events-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex; flex-direction: column;
}
.event-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  position: relative;
  transition: background .2s ease, padding-left .2s ease;
}
.event-row:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.04), transparent 60%);
}
.event-row .when {
  text-align: right;
  min-width: 100px;
}
.event-row .when .day {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.015em;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}
.event-row .when .ymo {
  font-family: var(--f-heading);
  font-size: 9.5px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 6px;
}
.event-row .when .time {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-light);
  margin-top: 6px;
}
.event-row .center { display: flex; flex-direction: column; gap: 4px; }
.event-row .game-tag {
  font-family: var(--f-heading);
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600;
}
.event-row .game-tag .swatch { width: 7px; height: 7px; background: var(--gold); }
.event-row h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.015em;
  line-height: 1.15;
}
.event-row h3 em { font-family: var(--f-display); font-style: italic; color: var(--ink); letter-spacing: 0.005em; }
.event-row:hover h3 em { color: var(--gold); }
.event-row .by {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
}
.event-row .desc {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 4px;
  line-height: 1.5;
  max-width: 560px;
  padding-left: 12px;
  border-left: 2px solid var(--gold-dark);
}
.event-row .right {
  text-align: right;
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-end;
  min-width: 160px;
}
.event-row .places-line {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  letter-spacing: 0.015em;
}
.event-row .places-line .num { color: var(--gold); font-family: var(--f-display); font-style: italic; }
.event-row .status-tag {
  font-family: var(--f-heading);
  font-size: 10px; letter-spacing: 0.36em; text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: var(--r-xs);
}
.status-tag.open { color: var(--ok); }
.status-tag.full { color: var(--gold); }
.status-tag.soon { color: var(--warn); }

.event-participants {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 10px;
}
.event-row .attendees { display: flex; margin-top: 4px; }
.event-row .attendees .a {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -7px;
  display: grid; place-items: center;
  font-family: var(--f-heading); font-size: 10.5px; font-weight: 700;
  color: var(--bg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.event-row .attendees .a:first-child { margin-left: 0; }
.event-row .attendees .more {
  font-family: var(--f-heading);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-left: 10px;
}

/* === Planning grid === */
.planning-shell {
  background: var(--bg-card);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.planning-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  gap: 18px; flex-wrap: wrap;
  background: var(--bg-card-2);
}
.game-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.game-tab {
  padding: 8px 14px;
  font-family: var(--f-heading);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  cursor: pointer; background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--ink-3);
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .15s ease;
}
.game-tab .swatch { width: 8px; height: 8px; border-radius: 2px; }
.game-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}
.game-tab.dim { opacity: .45; }
.game-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.planning-table-wrap { overflow-x: auto; }
.planning-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  min-width: 1100px; font-size: 13px;
}
.planning-table th, .planning-table td {
  padding: 8px 8px;
  vertical-align: top;
  text-align: center;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-card);
}
.planning-table th {
  font-family: var(--f-heading);
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg-card-2);
  font-weight: 600;
  position: sticky; top: 0; z-index: 2;
  text-shadow: none;
}
.planning-table th.today { color: var(--gold); }
.planning-table th .dnum {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0.015em;
  margin-top: 4px;
  color: var(--ink);
}
.planning-table th.today .dnum { color: var(--gold); text-shadow: 0 0 12px rgba(212, 175, 55, 0.35); }
.planning-table td.period {
  text-align: left;
  background: var(--bg-card-2);
  position: sticky; left: 0; z-index: 1;
  border-right: 1px solid var(--hairline-strong);
  width: 120px; min-width: 120px;
}
.planning-table td.period .pname {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.015em;
  color: var(--ink);
}
.planning-table td.period .ptime {
  font-family: var(--f-heading);
  font-size: 9.5px; letter-spacing: 0.28em;
  color: var(--gold-dark); text-transform: uppercase;
  margin-top: 4px; font-weight: 600;
}
.planning-table td.slot {
  height: 68px;
  cursor: pointer;
  transition: background .15s ease;
  width: 100px; min-width: 100px;
}
.planning-table td.slot:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.10);
}
.planning-table td.slot.today { background: rgba(212, 175, 55, 0.04); }
.planning-table td.slot.today:hover { background: rgba(212, 175, 55, 0.12); }

.name-tag {
  display: inline-block;
  padding: 3px 9px; margin: 1.5px;
  font-family: var(--f-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--bg);
  border-radius: var(--r-pill);
  box-shadow: 0 2px 6px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}

/* === Members === */
.members-shell { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; }
.role-block .role-head {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 12px;
}
.role-block .role-head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.015em;
}
.role-block .role-head .count {
  font-family: var(--f-heading);
  font-size: 9.5px; letter-spacing: 0.36em; color: var(--gold-dark); font-weight: 600;
  text-transform: uppercase;
}
.role-block .role-head .line { flex: 1; }

.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.member {
  background: linear-gradient(150deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(212, 175, 55, 0.06);
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.member::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.07);
  border-radius: calc(var(--r-md) - 2px);
  pointer-events: none;
}
.member > * { position: relative; z-index: 1; }
.member:hover {
  transform: translateY(-2px);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(212, 175, 55, 0.10);
}
.member-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.member-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  position: relative;
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), 0 4px 10px rgba(0,0,0,0.4);
  overflow: hidden;
}
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.status-dot {
  position: absolute; right: -1px; bottom: -1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.s-online, .status-online { background: var(--ok); }
.s-idle,   .status-idle   { background: var(--warn); }
.s-dnd,    .status-dnd    { background: var(--danger); }
.s-offline,.status-offline { background: var(--ink-4); }

.status-online-text  { color: var(--ok); }
.status-idle-text    { color: var(--warn); }
.status-dnd-text     { color: var(--danger); }
.status-offline-text { color: var(--ink-4); }

.member .who { display: flex; flex-direction: column; min-width: 0; }
.member .nm {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.015em;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.member .role-line {
  font-family: var(--f-heading);
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-dark); margin-top: 4px;
  font-weight: 600;
}

/* Membres - éléments riches (roles, prouesses, meta) */
.membre-roles {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: 2px;
}
.role-badge {
  font-family: var(--f-heading);
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--hairline-strong);
  color: var(--ink-3);
  border-radius: var(--r-xs);
  padding: 2px 6px;
  white-space: nowrap;
  background: transparent;
  opacity: 0.75;
}
.membre-or {
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
  margin-top: 2px;
}
.membre-or .em { font-size: 14px; line-height: 1; }
.membre-or .val { font-style: italic; }
.membre-meta {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 0.4rem;
  margin-top: 2px;
}
.membre-meta span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.membre-prouesses {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 4px;
}
.prouesses-title {
  font-family: var(--f-heading);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}
.prouesse-item {
  font-family: var(--f-body);
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink-3);
  padding-left: 0.6rem;
  border-left: 2px solid var(--gold-dark);
  line-height: 1.5;
}
.prouesse-auteur {
  font-family: var(--f-body);
  font-size: 11.5px;
  color: var(--gold);
  opacity: 0.8;
  white-space: nowrap;
}

/* === Form === */
.form-shell, .form-card { box-sizing: border-box; }
.form-card {
  background: linear-gradient(150deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(212, 175, 55, 0.08);
  position: relative;
}
.form-card::before {
  content: ""; position: absolute; inset: 5px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: calc(var(--r-md) - 2px);
  pointer-events: none;
}
.form-card > * { position: relative; z-index: 1; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-row label {
  font-family: var(--f-heading);
  font-size: 9.5px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
}
.form-row .input { padding: 10px 14px; font-size: 13.5px; background: var(--bg-soft); }
.form-row textarea.input { min-height: 80px; resize: vertical; font-family: var(--f-body); font-style: italic; font-size: 14px; line-height: 1.5; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* === Admin === */
.admin-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 18px;
  background: var(--bg-card);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--hairline);
  color: var(--ink-3);
  font-family: var(--f-heading);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.tab-btn:last-child { border-right: 0; }
.tab-btn:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  box-shadow: inset 0 -2px 0 var(--gold-light);
}
.tab-content { display: none; }
.tab-content.active {
  display: block;
  animation: tab-fade .25s ease both;
}
@keyframes tab-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.admin-section {
  background: linear-gradient(150deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.admin-section h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.015em;
  margin-bottom: 4px;
}
.admin-section .desc {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.admin-list { display: flex; flex-direction: column; gap: 0; }
.admin-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
  gap: 12px;
}
.admin-row:last-child { border-bottom: 0; }
.admin-row .row-actions { display: flex; gap: 4px; }
.icon-btn {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: var(--r-xs);
}
.icon-btn:hover { color: var(--gold); border-color: var(--hairline-strong); background: rgba(212, 175, 55, 0.06); }
.icon-btn.danger:hover { color: var(--danger); border-color: var(--danger); background: rgba(198, 74, 26, 0.10); }

/* Cartes de thèmes (admin) */
.theme-swatches {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.theme-tile {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  padding: 14px; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: border-color .15s ease;
}
.theme-tile.active {
  border-color: var(--ink);
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}
.theme-tile:hover { border-color: var(--gold); }
.theme-tile .stripes { display: flex; gap: 0; height: 32px; }
.theme-tile .stripes > div { flex: 1; }
.theme-tile .nm {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.theme-tile .ds {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 4px;
}

/* === Toast === */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  color: var(--ink);
  padding: 14px 28px;
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  font-family: var(--f-heading);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: toast-in .25s ease both;
}
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }
.toast .dia { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); box-shadow: 0 0 8px rgba(212, 175, 55, 0.5); }

/* === Modal === */
.modal-back {
  position: fixed; inset: 0;
  background: rgba(10, 6, 4, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center;
  z-index: 1000;
  animation: fade-in .2s ease both;
  padding: 20px;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  background: linear-gradient(150deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--gold-dark);
  border-radius: var(--r-md);
  width: min(580px, 92vw);
  max-height: 86vh;
  overflow: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-card .head {
  padding: 22px 28px 14px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
.modal-card .head .eyebrow,
.modal-card .head .smallcaps { margin-bottom: 8px; display: block; }
.modal-card .head h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.015em;
}
.modal-card .body { padding: 18px 28px 22px; }
.modal-close {
  position: absolute; top: 18px; right: 22px;
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--hairline-strong);
  color: var(--ink-2);
  cursor: pointer;
  display: grid; place-items: center;
  border-radius: 50%;
  transition: all .15s ease;
  font-size: 18px;
  line-height: 1;
}
.modal-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.help-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.help-list li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  line-height: 1.6;
}
.help-list li:last-child { border-bottom: 0; }
.help-list li b { color: var(--gold); font-weight: 600; }
.help-list li .num {
  font-family: var(--f-display);
  font-size: 26px; line-height: 1;
  color: var(--gold);
  min-width: 28px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

/* === Footer === */
.footer {
  margin-top: 56px;
  text-align: center;
  padding: 28px 0 16px;
  border-top: 1px solid var(--hairline);
}
.footer .smallcaps { color: var(--gold-dark); }
.footer h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.015em;
  margin: 10px 0 14px;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

/* === Misc === */
.empty-state {
  text-align: center; padding: 80px 20px;
  color: var(--ink-3);
}
.empty-state h3 { font-style: italic; font-size: 36px; margin-bottom: 12px; font-family: var(--f-display); font-weight: 500; }
.empty-state .lede { font-family: var(--f-body); font-style: italic; font-size: 17px; }

/* Selection */
::selection { background: rgba(212, 175, 55, 0.3); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* === Responsive === */
@media (max-width: 980px) {
  .tn-inner { grid-template-columns: 1fr auto; gap: 16px; padding: 14px 20px; }
  .tn-left { display: none; }
  .tn-right { font-size: 10.5px; gap: 16px; }
  .tn-brand .name { font-size: 22px; }
  .main { padding: 0 18px 80px; }
  .hero { padding: 32px 0 20px; }
  .tonight { grid-template-columns: 1fr; gap: 14px; padding: 0; }
  .menu-list { grid-template-columns: 1fr !important; }
  .form-card { padding: 24px 20px; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-tabs { flex-direction: column; }
  .tab-btn { border-right: 0; border-bottom: 1px solid var(--hairline); min-width: auto; }
  .tab-btn:last-child { border-bottom: 0; }
  .event-row { grid-template-columns: 1fr; gap: 16px; padding: 22px 0; }
  .event-row .when { text-align: left; display: flex; gap: 16px; align-items: baseline; }
  .event-row .when .time { margin-top: 0; }
  .event-row .right { text-align: left; align-items: flex-start; }
}
