/* FulldomeFever — Clean Futuristic Blog */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:        #ffffff;
  --bg2:       #f5f6fa;
  --surface:   #f9f9fc;
  --border:    #e2e5f0;
  --accent:    #f59e0b;
  --accent2:   #7c3aed;
  --accent3:   #0f172a;
  --text:      #1e2235;
  --muted:     #4a5068;
  --heading:   #0f1225;
  --light:     #eef0f8;
  --glow:      0 4px 24px rgba(37,99,235,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Layout ─── */
.site-wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Header ─── */
.site-header {
  position: relative;
  padding: 24px 0 20px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
}

.header-brand { display: flex; flex-direction: column; gap: 3px; }

.site-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: -0.02em;
  color: var(--heading);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.site-logo .fever { color: var(--accent); }
.site-logo .dot {
  width: 7px; height: 7px;
  background: var(--accent3);
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
  margin-bottom: 1px;
  flex-shrink: 0;
}

.site-tagline {
  display: none;
}

/* ─── Nav with dropdown ─── */
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  position: relative;
}

.site-nav a, .nav-item > span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.site-nav a:hover, .nav-item:hover > span {
  color: var(--accent);
  background: rgba(37,99,235,0.06);
}
.site-nav a.active { color: var(--accent); }

/* Dropdown — pure HTML <details>/<summary>, no JS needed */
.nav-item {
  position: relative;
}
/* Style <details> like a nav item */
details.nav-item {
  list-style: none;
}
details.nav-item summary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  transition: color 0.2s, background 0.2s;
  user-select: none;
  white-space: nowrap;
}
details.nav-item summary::-webkit-details-marker { display: none; }
details.nav-item summary::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.6;
}
details.nav-item[open] summary {
  color: var(--accent);
  background: rgba(37,99,235,0.06);
}
details.nav-item summary:hover { color: var(--accent); background: rgba(37,99,235,0.06); }

.nav-dropdown {
  display: block; /* visible when <details> is open */
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 260px;
  z-index: 100;
  padding: 6px;
}
.nav-dropdown a {
  display: flex !important;
  flex-direction: column;
  padding: 9px 14px !important;
  border-radius: 4px;
  gap: 2px;
  color: var(--text) !important;
  font-weight: 600 !important;
  font-size: 13px;
  text-align: left !important;
  align-items: flex-start !important;
  border-left: 2px solid transparent;
  transition: border-color 0.15s, background 0.15s;
}
.nav-dropdown a:hover {
  background: var(--bg2) !important;
  color: var(--accent) !important;
  border-left-color: var(--accent) !important;
}
.nav-dropdown a .dd-sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 6px;
}

/* ─── Hero image ─── */
.hero-dome {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-bottom: 56px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.hero-dome img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-dome::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(255,255,255,0.85) 100%);
}
.hero-dome-tagline {
  position: absolute;
  bottom: 28px; left: 32px; right: 32px;
  z-index: 2;
}
.hero-dome-tagline h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 28px);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ─── Section label ─── */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── Post card (index) ─── */
.post-list { display: flex; flex-direction: column; gap: 0; }

.post-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 220px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
  background: var(--bg);
  margin-bottom: 24px;
}
.post-card:hover { border-color: var(--accent); box-shadow: var(--glow); }

.post-card-image { position: relative; overflow: hidden; background: var(--bg2); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card-image img { transform: scale(1.04); }

.post-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border);
}

.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }

.post-category {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 3px 9px; border-radius: 3px;
}
.post-date { font-size: 12px; color: var(--muted); }
.post-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: var(--heading); line-height: 1.35; margin-bottom: 10px; }
.post-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.post-footer { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.post-author { font-size: 12px; color: var(--muted); }
.post-author strong { color: var(--accent2); }
.read-more { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.read-more::after { content: '→'; }

/* ─── Festival index cards ─── */
.festival-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.festival-index-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
  background: var(--bg);
}
.festival-index-card:hover { border-color: var(--accent); box-shadow: var(--glow); }
.festival-index-card-img {
  height: 140px;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
.festival-index-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.festival-index-card:hover .festival-index-card-img img { transform: scale(1.05); }
.festival-index-card-flag {
  position: absolute;
  top: 10px; left: 12px;
  font-size: 22px;
  line-height: 1;
}
.festival-index-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.festival-index-card-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--heading); }
.festival-index-card-loc { font-size: 12px; color: var(--muted); }
.festival-index-card-meta { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; align-items: center; }
.festival-index-card-date { font-size: 12px; font-weight: 600; color: var(--text); font-family: 'Space Grotesk', sans-serif; }

/* ─── Single post / festival page ─── */
.post-hero {
  width: 100%; height: 400px;
  overflow: hidden; position: relative;
  border-radius: 4px; margin-bottom: 48px;
  border: 1px solid var(--border);
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.6) 100%);
}
.post-hero-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 36px; z-index: 2; }

.post-header { margin-bottom: 44px; }
.post-header .post-meta { margin-bottom: 16px; }
.post-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 40px);
  color: var(--heading);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.post-lead { font-size: 18px; color: var(--muted); line-height: 1.6; font-weight: 300; max-width: 680px; }

/* ─── Page header (non-hero) ─── */
.page-header {
  padding: 12px 0 36px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 44px;
}
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--heading);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-header p { font-size: 17px; color: var(--muted); max-width: 640px; }

/* ─── Post body ─── */
.post-body { max-width: 740px; }
.post-body p { margin-bottom: 20px; color: var(--text); }
.post-body h2 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px;
  color: var(--heading); letter-spacing: -0.01em;
  margin: 52px 0 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.post-body h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px; color: var(--heading); margin: 28px 0 10px; }
.post-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(37,99,235,0.25); transition: border-color 0.2s; }
.post-body a:hover { border-color: var(--accent); }
.post-body ul, .post-body ol { margin: 0 0 20px 22px; color: var(--text); }
.post-body li { margin-bottom: 6px; }
.post-body strong { color: var(--heading); font-weight: 600; }
.post-body em { color: var(--muted); }

/* ─── Spec table (tech requirements) ─── */
.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 14px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.spec-table th { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 9px 14px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.spec-table td:first-child { font-weight: 600; color: var(--heading); width: 35%; white-space: nowrap; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--surface); }

/* ─── Festival table ─── */
.festival-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.festival-table th { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 10px 14px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.festival-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text); }
.festival-table tr:last-child td { border-bottom: none; }
.festival-table tr:hover td { background: var(--surface); }

/* ─── Badges ─── */
.badge { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; white-space: nowrap; }
.badge-open   { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.badge-closed { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.badge-check  { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.badge-new    { background: #ede9fe; color: #5b21b6; border: 1px solid #c4b5fd; }

/* ─── Festival cards ─── */
.festival-card { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--border); border-radius: 4px; padding: 24px 24px 20px; margin-bottom: 24px; }
.festival-card.accent-blue   { border-left-color: var(--accent); }
.festival-card.accent-purple { border-left-color: var(--accent2); }
.festival-card.accent-pink   { border-left-color: var(--accent3); }
.festival-card.accent-green  { border-left-color: #059669; }
.festival-card.accent-muted  { border-left-color: var(--border); }
.festival-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
.festival-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--heading); margin: 0 0 3px; }
.festival-card-sub { font-size: 12px; color: var(--muted); font-style: italic; }
.festival-card-meta { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; }
.festival-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 16px; font-size: 13px; }
.festival-detail-grid dt { color: var(--muted); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.festival-detail-grid dd { color: var(--text); margin-bottom: 6px; }

/* ─── Highlight / info boxes ─── */
.highlight-box { background: #eff6ff; border: 1px solid #bfdbfe; border-left: 4px solid var(--accent); border-radius: 4px; padding: 16px 18px; margin: 20px 0; font-size: 14px; color: var(--text); }
.highlight-box strong { color: var(--accent); }
.highlight-box.green { background: #f0fdf4; border-color: #bbf7d0; border-left-color: #059669; }
.highlight-box.green strong { color: #065f46; }
.highlight-box.amber { background: #fffbeb; border-color: #fde68a; border-left-color: #d97706; }
.highlight-box.amber strong { color: #92400e; }

/* ─── Timeline / key dates ─── */
.timeline { list-style: none; margin: 0 0 28px; padding: 0; border-left: 2px solid var(--border); padding-left: 24px; }
.timeline li { position: relative; margin-bottom: 20px; }
.timeline li::before { content: ''; position: absolute; left: -31px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--accent); }
.timeline-date { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; }
.timeline-label { font-weight: 600; color: var(--heading); font-size: 15px; }
.timeline-desc { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ─── Audio bars ─── */
.audio-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 13px; }
.audio-bar-label { width: 160px; color: var(--muted); font-size: 12px; }
.audio-bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.audio-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(to right, var(--accent2), var(--accent)); }
.audio-bar-val { font-size: 12px; font-weight: 600; color: var(--heading); width: 55px; text-align: right; }

/* ─── Action panel ─── */
.action-panel { background: var(--bg2); border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: 4px; padding: 28px 28px 20px; margin: 44px 0; }
.action-panel h2 { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--heading); margin-bottom: 18px; }
.action-list { list-style: none; margin: 0; padding: 0; }
.action-list li { padding: 12px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; font-size: 14px; color: var(--text); }
.action-list li:last-child { border-bottom: none; padding-bottom: 0; }
.action-num { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: var(--accent); background: rgba(37,99,235,0.08); border-radius: 3px; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* ─── CTA button ─── */
.btn { display: inline-flex; align-items: center; gap: 7px; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 11px 22px; border-radius: 5px; text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: #fff !important; }
.btn-primary:hover { background: #1d4ed8; box-shadow: 0 4px 16px rgba(37,99,235,0.3); color: #fff !important; }
.btn-outline { background: transparent; color: var(--accent) !important; border: 2px solid var(--accent); }
.btn-outline:hover { background: rgba(37,99,235,0.06); }

/* ─── Updated notice ─── */
.updated-notice { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 3px; padding: 8px 14px; font-size: 12px; color: #166534; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; }

/* ─── Footer ─── */
.site-footer { margin-top: 80px; padding: 28px 0; border-top: 1px solid var(--border); text-align: center; font-size: 13px; color: var(--muted); }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

/* ─── Hamburger button (hidden on desktop) ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  margin-left: auto;
  align-self: center;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Responsive — Mobile ─── */
@media (max-width: 720px) {

  /* Wrapper padding */
  .site-wrapper { padding: 0 16px; }

  /* Wrapper */
  .site-wrapper { padding: 0 16px; }

  /* Header: row with brand + hamburger */
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 16px 0;
    margin-bottom: 24px;
    gap: 8px;
    overflow: visible;
  }

  /* Logo SVG: shrink to fit mobile */
  .header-brand { flex: 1; min-width: 0; overflow: hidden; }
  #header-logo svg { width: 100% !important; max-width: 220px; height: auto; }
  #header-logo { display: block; line-height: 1; }

  /* Show hamburger */
  .nav-hamburger { display: flex; flex-shrink: 0; }

  /* Nav: hidden by default on mobile, shown when .mobile-open */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 8px;
    flex-direction: column;
    gap: 2px;
    z-index: 200;
  }
  .site-nav.mobile-open { display: flex; }

  /* Make header position:relative so nav positions under it */
  .site-header { position: relative; }

  /* Nav links full-width on mobile */
  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
  }

  /* Festivals details: inline, full width */
  details.nav-item {
    width: 100%;
  }
  details.nav-item summary {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 6px;
    background: var(--bg2);
    justify-content: space-between;
  }
  .nav-dropdown {
    position: static !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--accent);
    margin: 4px 0 4px 12px;
    border-radius: 0;
    padding: 4px 0;
    background: transparent;
  }
  .nav-dropdown a {
    padding: 10px 12px !important;
    font-size: 13px;
    border-left: none !important;
  }
  .nav-dropdown .dd-sub { font-size: 11px; }
  details.nav-item[open] summary { color: var(--accent); background: var(--bg2); }

  /* ── Tables: no horizontal scroll, wrap text ── */
  .festival-table,
  .spec-table {
    font-size: 12px;
    table-layout: fixed;
    width: 100%;
  }
  .festival-table th,
  .festival-table td,
  .spec-table th,
  .spec-table td {
    padding: 8px 10px;
    white-space: normal;
    word-break: break-word;
    vertical-align: top;
  }
  /* Festival table: hide location column on narrow screens */
  .festival-table th:nth-child(2),
  .festival-table td:nth-child(2) { display: none; }
  /* Spec table: label col narrower */
  .spec-table td:first-child { width: 38%; font-size: 11px; }

  /* ── Cards & layout ── */
  .post-card { grid-template-columns: 1fr; }
  .post-card-image { height: 170px; }
  .post-card-body { border-left: none; border-top: 1px solid var(--border); padding: 18px 16px; }

  .hero-dome { height: 190px; margin-bottom: 28px; }
  .post-hero { height: 200px; margin-bottom: 24px; }
  .post-hero-text { padding: 14px 16px; }

  .festival-grid { grid-template-columns: 1fr; }
  .festival-detail-grid { grid-template-columns: 1fr; }
  .festival-card { padding: 16px 14px 12px; }
  .festival-card-header { flex-direction: column; }

  .action-panel { padding: 18px 14px; }
  .action-list li { flex-direction: column; gap: 4px; }

  .audio-bar { flex-wrap: wrap; gap: 6px; }
  .audio-bar-label { width: 100%; }
  .audio-bar-val { width: auto; }

  .page-header { padding: 8px 0 24px; }
  .page-header h1 { font-size: 24px; }
  .post-header h1 { font-size: 22px; }
  .post-lead { font-size: 15px; }
  .post-body { max-width: 100%; }

  .timeline { padding-left: 16px; }
}

/* ─── No-JS warning ─── */
.noscript-bar {
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  padding: 10px 28px;
  font-size: 13px;
  color: #78350f;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}
.noscript-bar strong { color: #92400e; }
