/* ============================================
   MIDWEST PSYCH FEST — Main Stylesheet
   Psychedelic Circus / Carnival Theme
   Design System Integration
   ============================================ */

/* ── Webfont Loading ── */
@font-face {
  font-family: 'Jfringmaster';
  src: url('../fonts/Jfringmaster-jVPl.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FreakShow';
  src: url('../fonts/FreakShow-A0Bm.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'RetroSigned';
  src: url('../fonts/RetroSigned-DYYY0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ── CSS Variables — Design System Tokens ── */
:root {
  /* ──────────────────────────────────────────
     COLOR — Base Palette (Named Tokens)
     ────────────────────────────────────────── */
  /* Deep violet/black backgrounds */
  --mpf-bg:        #0d0010;   /* darkest — page background */
  --mpf-bg-2:      #150020;   /* one step up — info strip, section tint */
  --mpf-bg-card:   #1a0028;   /* card surface */
  --mpf-bg-hover:  #200035;   /* card :hover */
  --mpf-bg-panel:  #0f0018;   /* elevated modal / admin panel */

  /* Carnival accents — brand palette */
  --mpf-magenta:   #ff3cac;   /* primary — hot pink */
  --mpf-gold:      #f9c80e;   /* secondary — carnival gold */
  --mpf-mint:      #4fffb0;   /* accent — psychedelic mint */
  --mpf-violet:    #b24bff;   /* tertiary — electric purple */

  /* Supporting hues */
  --mpf-indigo:    #6c63ff;   /* parking / secondary purple */
  --mpf-lime:      #43e97b;   /* camping / secondary green */
  --mpf-orange:    #ff8c00;   /* entrance */
  --mpf-red:       #ff4444;   /* off-limits / destructive */

  /* Text */
  --mpf-text:       #f5f0ff;  /* body text — off-white w/ violet tint */
  --mpf-text-muted: #a090b8;  /* secondary / meta */
  --mpf-text-ink:   #0d0010;  /* on light/gold/mint buttons */

  /* Borders */
  --mpf-border:      rgba(255, 60, 172, 0.25);
  --mpf-border-soft: rgba(255, 255, 255, 0.08);

  /* ──────────────────────────────────────────
     COLOR — Semantic (Preferred in code)
     ────────────────────────────────────────── */
  --color-bg:         var(--mpf-bg);
  --color-bg-2:       var(--mpf-bg-2);
  --color-bg-card:    var(--mpf-bg-card);
  --color-primary:    var(--mpf-magenta);
  --color-secondary:  var(--mpf-gold);
  --color-accent:     var(--mpf-mint);
  --color-purple:     var(--mpf-violet);
  --color-text:       var(--mpf-text);
  --color-text-muted: var(--mpf-text-muted);
  --color-border:     var(--mpf-border);

  /* Role-specific marker colors */
  --color-stage:       var(--mpf-magenta);
  --color-bar:         var(--mpf-gold);
  --color-vendor:      var(--mpf-mint);
  --color-parking:     var(--mpf-indigo);
  --color-camping:     var(--mpf-lime);
  --color-entrance:    var(--mpf-orange);
  --color-off-limits:  var(--mpf-red);

  /* ──────────────────────────────────────────
     TYPOGRAPHY — Families
     ────────────────────────────────────────── */
  --font-display: 'Jfringmaster', 'Abril Fatface', Georgia, serif;
  --font-freak:   'FreakShow', 'Jfringmaster', Georgia, serif;
  --font-retro:   'RetroSigned', 'Jfringmaster', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type Scale */
  --fs-hero:   clamp(4rem, 15vw, 11rem);
  --fs-title:  clamp(3rem, 10vw, 7rem);
  --fs-h1:     2.2rem;
  --fs-h2:     1.4rem;
  --fs-h3:     1.2rem;
  --fs-body:   1rem;
  --fs-small:  0.88rem;
  --fs-micro:  0.78rem;
  --fs-eyebrow:0.75rem;

  /* Letter Spacing */
  --ls-tight:   0.02em;
  --ls-normal:  0.04em;
  --ls-wide:    0.06em;
  --ls-uppercase:0.1em;
  --ls-eyebrow: 0.2em;

  /* ──────────────────────────────────────────
     SPACING / LAYOUT / EFFECTS
     ────────────────────────────────────────── */
  --nav-height:  64px;
  --max-width:   1200px;

  --radius:       8px;
  --radius-lg:   16px;
  --radius-pill: 100px;

  /* Glows — brand signature */
  --glow-magenta: 0 0 20px rgba(255, 60, 172, 0.6), 0 0 60px rgba(255, 60, 172, 0.3);
  --glow-gold:    0 0 40px rgba(249, 200, 14, 0.4);
  --glow-violet:  0 0 40px rgba(178, 75, 255, 0.4);
  --glow-mint:    0 0 40px rgba(79, 255, 176, 0.4);

  /* Shadows */
  --shadow-card:   0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-hover:  0 8px 24px rgba(255, 60, 172, 0.15);
  --shadow-fab:    0 4px 24px rgba(255, 60, 172, 0.55), 0 0 0 3px rgba(255, 60, 172, 0.2);

  /* Scrim for images */
  --scrim: rgba(13, 0, 16, 0.85);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--color-primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--color-secondary); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: var(--ls-tight);
}

h1  { font-size: var(--fs-h1); color: var(--color-secondary); }
h2  { font-size: var(--fs-h2); }
h3  { font-size: var(--fs-h3); color: var(--color-secondary); }

p   { line-height: 1.6; }

small,
.text-micro { font-size: var(--fs-micro); color: var(--color-text-muted); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-secondary);
}

.label-upper {
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: var(--ls-uppercase);
  color: var(--color-text-muted);
}

code, pre { font-family: var(--font-mono); font-size: 0.88em; }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(13, 0, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(249, 200, 14, 0.5);
}
.nav-logo span { color: var(--color-primary); }

/* ── hList nav (hover dropdown pattern) ── */
.hList {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  margin: 0; padding: 0;
}

.hList > li {
  position: relative;
  list-style: none;
}

/* The anchor wrapper */
a.menu {
  display: block;
  text-decoration: none;
}

/* Trigger label */
.menu-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 0;
  padding: 6px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu-title::after {
  content: '▾';
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
.hList > li:hover .menu-title,
.hList > li:focus-within .menu-title {
  color: var(--color-primary);
  background: rgba(255, 60, 172, 0.08);
}
.hList > li:hover .menu-title::after,
.hList > li:focus-within .menu-title::after {
  transform: rotate(180deg);
}

/* Dropdown panel — hidden until li:hover/focus */
.menu-dropdown {
  display: block;
  list-style: none;
  margin: 0; padding: 8px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: rgba(10, 0, 18, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,60,172,0.08);
  z-index: 200;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.hList > li:hover .menu-dropdown,
.hList > li:focus-within .menu-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-dropdown li { list-style: none; }
.menu-dropdown a {
  display: block;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.menu-dropdown a:hover {
  color: var(--color-secondary);
  background: rgba(249, 200, 14, 0.1);
}
.menu-dropdown a.active {
  color: var(--color-secondary);
  background: rgba(249, 200, 14, 0.12);
  font-weight: 700;
}

/* ── Mobile Nav ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.2s;
}

@media (max-width: 640px) {
  .nav-hamburger { display: flex; }
  .hList {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10, 0, 18, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    border-bottom: 1px solid var(--color-border);
    z-index: 150;
  }
  .hList.open { display: flex; }
  .hList > li { width: 100%; }

  a.menu { display: block; }
  .menu-title { width: 100%; padding: 10px 14px; }

  /* On mobile — always show submenus, no animation */
  .menu-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: var(--radius);
    box-shadow: none;
    padding: 4px 0 4px 12px;
    margin-top: 2px;
    transition: none;
  }
  .menu-dropdown a { padding: 8px 14px; }
}

/* ── Page Wrapper ── */
.page-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
}

/* ── Section Headers ── */
.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 8px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: #e0229a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.btn-secondary:hover { background: rgba(249, 200, 14, 0.1); }

.btn-accent {
  background: var(--color-accent);
  color: var(--mpf-text-ink);
}
.btn-accent:hover {
  background: #2de89a;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.btn-ghost:hover {
  border-color: var(--color-text);
  color: var(--color-text);
  transform: translateY(-1px);
}

.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-danger {
  background: var(--mpf-red);
  color: #fff;
}
.btn-danger:hover {
  background: #e03333;
  transform: translateY(-1px);
}

/* ── Card ── */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

/* ── Tag / Badge ── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Footer ── */
.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--color-border);
  padding: 32px 24px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}
.site-footer a { color: var(--color-text-muted); }
.site-footer a:hover { color: var(--color-primary); }

/* ── Admin Panel Overlay ── */
#admin-panel {
  position: fixed;
  top: var(--nav-height);
  right: 0;
  bottom: 0;
  width: 360px;
  background: #0f0018;
  border-left: 2px solid var(--color-primary);
  z-index: 200;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(178, 75, 255, 0.2);
}
#admin-panel.open { display: flex; }

.admin-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 60, 172, 0.08);
}
.admin-panel-header h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.1rem;
}
.admin-panel-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.admin-panel-close:hover { color: var(--color-text); }

.admin-panel-body { padding: 16px 20px; flex: 1; }

.admin-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.admin-section:last-child { border-bottom: none; }
.admin-section h4 {
  color: var(--color-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ── Form elements ── */
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 8px 12px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group select option { background: #1a0028; }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-row { display: flex; gap: 8px; }
.form-row .form-group { flex: 1; }

/* ── Stage Editor (admin panel) ── */
.stage-editor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.stage-editor-id {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  min-width: 100px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stage-name-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 5px 10px;
  transition: border-color 0.2s;
}
.stage-name-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ── Admin Auth Overlay ── */
.admin-auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 0, 16, 0.92);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-auth-box {
  background: #0f0018;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 60px rgba(255, 60, 172, 0.2);
}
.admin-auth-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 8px;
}
.admin-auth-box h2 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 6px;
}
.admin-auth-sub {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.admin-auth-error {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #ff7070;
  margin-top: 8px;
}
.admin-auth-recovery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.admin-auth-reset-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.admin-auth-reset-btn:hover { color: var(--color-secondary); }
.admin-auth-note {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  opacity: 0.6;
  text-align: center;
  line-height: 1.5;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60%  { transform: translateX(-10px); }
  40%, 80%  { transform: translateX(10px); }
}
.admin-auth-shake { animation: shake 0.4s ease; }

/* ── Floating Ticket Button ── */
.ticket-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: var(--ls-normal);
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: var(--shadow-fab);
  transition: box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
}
.ticket-btn:hover {
  color: #fff;
  box-shadow: var(--glow-magenta);
  transform: translateY(-2px);
}

@keyframes jiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15%       { transform: rotate(-5deg) scale(1.08); }
  30%       { transform: rotate(5deg)  scale(1.08); }
  45%       { transform: rotate(-3deg) scale(1.04); }
  60%       { transform: rotate(3deg)  scale(1.04); }
  78%       { transform: rotate(-1deg) scale(1.01); }
}
.ticket-btn.jiggle {
  animation: jiggle 0.65s ease;
}

/* Push ticket button left when admin panel is open */
body.admin-mode .ticket-btn {
  right: 388px;
  transition: right 0.3s ease;
}

/* ── FAB Row (bar mug + ticket button, index.html) ── */
#fabRow {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
body.admin-mode #fabRow {
  right: 388px;
  transition: right 0.3s ease;
}
/* ticketBtn inside fabRow should not re-position itself */
#fabRow .ticket-btn {
  position: relative;
  bottom: auto;
  right: auto;
}

/* ── Page Banner (admin-managed) ── */
.page-banner {
  width: 100%;
  overflow: hidden;
  display: none; /* hidden until populated by image-blocks.js */
}
.page-banner.has-image {
  display: block;
}
.page-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.page-banner a { display: block; }

/* ── Background Image Scrim ── */
body.has-bg-image {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
body.has-bg-image::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-scrim, rgba(13, 0, 16, 0.85));
  pointer-events: none;
}

/* ── Image Block Slots ── */
.mpf-img-block {
  position: relative;
  display: none;
}
.mpf-img-block.has-image {
  display: block;
}
.mpf-img-block img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}
.mpf-img-block a { display: block; }

/* Admin edit overlay for image blocks */
.admin-mode .mpf-img-block.has-image::after,
.admin-mode .page-banner.has-image::after {
  content: '✏ Edit';
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(13,0,16,0.85);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  pointer-events: none; /* handled by JS click on the block */
}
/* Empty slot placeholder in admin mode */
.admin-mode .mpf-img-block:not(.has-image),
.admin-mode .page-banner:not(.has-image) {
  display: block;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  cursor: pointer;
}
.admin-mode .mpf-img-block:not(.has-image)::before {
  content: '+ Add Image';
}
.admin-mode .page-banner:not(.has-image)::before {
  content: '+ Add Page Banner';
}

/* ── Image Editor Modal (image-blocks.js) ── */
.img-editor-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 0, 16, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.img-editor-box {
  background: #0f0018;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 0 60px rgba(255, 60, 172, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}
.img-editor-title {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

/* ── Utility ── */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.w-full { width: 100%; }
.hidden { display: none !important; }
