/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

/* ── Design tokens ──────────────────────────────────────── */
:root {
  --primary:    #176870;
  --secondary:  #D44E2A;
  --bg:         #0C1A1C;
  --surface:    #111f21;
  --text:       #ffffff;
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Inter', sans-serif;
  --glass-bg:   rgba(12, 26, 28, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
}

/* ── Typography base ────────────────────────────────────── */
html { font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* ── Utilities ──────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}
.container { max-width: 1024px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.site-header__logo img { height: 2.5rem; width: auto; }
@media (min-width: 768px) { .site-header__logo img { height: 3rem; } }

/* Desktop nav */
.site-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) { .site-header__nav { display: flex; } }
.site-header__nav a {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.85);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  transition: color 0.2s;
}
.site-header__nav a:hover { color: #fff; }

/* Desktop right side (home page) */
.site-header__desktop-right { display: none; align-items: center; position: relative; gap: 0.5rem; }
@media (min-width: 768px) { .site-header__desktop-right { display: flex; } }

/* Mobile right side */
.site-header__mobile { display: flex; align-items: center; position: relative; }
@media (min-width: 768px) { .site-header__mobile { display: none; } }

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
}

.site-header__hamburger {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}
.site-header__hamburger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* Scroll-driven: schedule CTA fades out, hamburger fades in */
@keyframes cta-out {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}
@keyframes ham-in {
  from { opacity: 0; visibility: hidden; transform: translateY(calc(-50% - 6px)); }
  to   { opacity: 1;                     transform: translateY(-50%); }
}
@keyframes hdr-glass {
  from { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border: 1px solid transparent; }
  to   { background: var(--glass-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); }
}

.home-header {
  animation: hdr-glass linear both;
  animation-timeline: scroll(root);
  animation-range: 60vh 80vh;
}
.home-header .site-header__cta {
  animation: cta-out linear both;
  animation-timeline: scroll(root);
  animation-range: 60vh 80vh;
}
.home-header .site-header__hamburger {
  animation: ham-in linear both;
  animation-timeline: scroll(root);
  animation-range: 60vh 80vh;
}
/* Desktop nav on homepage also scroll-driven */
@keyframes nav-in {
  from { opacity: 0; visibility: hidden; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.home-header .site-header__nav {
  position: absolute;
  right: 0;
  white-space: nowrap;
  animation: nav-in linear both;
  animation-timeline: scroll(root);
  animation-range: 60vh 80vh;
}
@keyframes hdr-cta-desktop-out {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}
.home-header .site-header__cta--desktop {
  animation: hdr-cta-desktop-out linear both;
  animation-timeline: scroll(root);
  animation-range: 60vh 80vh;
}

/* Hamburger → X when nav open */
.nav-open .site-header__hamburger .ham-top { transform: translateY(8px) rotate(45deg); }
.nav-open .site-header__hamburger .ham-mid { opacity: 0; }
.nav-open .site-header__hamburger .ham-bot { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile nav drawer ──────────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  flex-direction: column;
  padding: 7rem 1.5rem 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
}
.nav-open .nav-drawer { display: flex; }
html.nav-open { overflow: hidden; }

.nav-drawer a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--secondary); }

/* ── Inner page header (always glass) ───────────────────── */
.inner-header {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
}
.inner-header .site-header__hamburger {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
}
@media (min-width: 768px) {
  .inner-header .site-header__hamburger { display: none !important; }
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 3.5rem 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); }
}
.site-footer__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.site-footer__brand img { height: 2.25rem; width: auto; }
.site-footer__brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer__tagline {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.6;
}
.site-footer__heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.site-footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--secondary); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.site-footer__bottom a { transition: color 0.2s; }
.site-footer__bottom a:hover { color: rgba(255,255,255,0.82); }

/* ── Page hero ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 42vh;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,26,28,1) 0%, rgba(12,26,28,0.55) 50%, rgba(12,26,28,0.2) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1.5rem 3rem;
  max-width: calc(1024px + 3rem);
  margin: 0 auto;
}
.page-hero__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.page-hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
}
.page-hero__subtitle {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.72);
  margin-top: 0.75rem;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  transition: all 0.2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--secondary);
  color: #fff;
  border: none;
}
.btn--primary:hover { background: rgba(212,78,42,0.85); }
.btn--outline,
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover,
.btn--ghost:hover { border-color: rgba(255,255,255,0.82); }

/* ── Home: Hero section ─────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 80vh;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
}
.hero__video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.3) brightness(0.4);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,104,112,0.6) 0%, rgba(12,26,28,0.85) 60%);
}
.hero__ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.hero__ghost span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22vw;
  color: rgba(255,255,255,0.03);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 1024px;
  margin: 0 auto;
}
.hero__season {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero__season-line { height: 1px; width: 3rem; background: var(--secondary); }
.hero__season-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
}
.hero__title { line-height: 0.85; margin-bottom: 0.5rem; }
.hero__title span { display: block; }
.hero__title .solid { font-size: clamp(14vw, 18vw, 22vw); color: #fff; }
.hero__title .outline {
  font-size: clamp(14vw, 18vw, 22vw);
  -webkit-text-stroke: 2px var(--secondary);
  color: transparent;
}
@media (min-width: 768px) {
  .hero__title .solid,
  .hero__title .outline { font-size: 16vw; }
}
.hero__sub {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.72);
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
}
.hero__scroll span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero__scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

/* ── Countdown ──────────────────────────────────────────── */
.countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem;
}
.countdown__band {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: #fff;
  letter-spacing: -0.01em;
}
.countdown__date {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--secondary);
}
.countdown__timer {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.25rem;
}
.countdown__unit { text-align: center; }
.countdown__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.countdown__label {
  font-family: var(--font-head);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  display: block;
}

/* ── Marquee ────────────────────────────────────────────── */
.marquee { background: var(--secondary); padding: 1rem 0; overflow: hidden; }
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 0 1.5rem;
}
.marquee__dot { color: rgba(255,255,255,0.65); margin: 0 1rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Lineup (homepage) ──────────────────────────────────── */
.lineup { padding: 6rem 0; }
.lineup__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lineup__season {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.lineup__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #fff;
}
.lineup__sub {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.lineup__hint {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .lineup__hint { display: none; } }

.setlist { border-top: 1px solid rgba(255,255,255,0.05); }
.setlist-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 0.5rem;
  transition: background 0.2s, padding-left 0.2s;
}
@media (min-width: 768px) { .setlist-row { gap: 1.5rem; } }
.setlist-row:hover { background: rgba(212,78,42,0.08); padding-left: 1.5rem; }

.setlist-row__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  width: 1.5rem;
  text-align: right;
  flex-shrink: 0;
  transition: color 0.2s;
}
.setlist-row:hover .setlist-row__num { color: rgba(212,78,42,0.2); }

.setlist-row__date {
  flex-shrink: 0;
  text-align: center;
  width: 3rem;
}
.setlist-row__day {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--secondary);
  line-height: 1;
}
.setlist-row__month {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}

.setlist-row__info { flex: 1; min-width: 0; }
.setlist-row__name-wrap { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.setlist-row__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.setlist-row__name--tbd { color: rgba(255,255,255,0.55); }
.setlist-row__genre {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  border: 1px solid rgba(212,78,42,0.4);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.setlist-row__presenter {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-top: 0.375rem;
}
.setlist-row__supporter {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.cal-link {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  border: 1px solid rgba(212,78,42,0.3);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s;
  white-space: nowrap;
}
.cal-link:hover { background: var(--secondary); color: #fff; }
@media (min-width: 768px) {
  .cal-link { opacity: 0; transition: opacity 0.2s; }
  .setlist-row:hover .cal-link { opacity: 1; }
}

.lineup__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.lineup__footer p {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}

/* ── Sponsors strip (homepage) ──────────────────────────── */
.sponsors-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.sponsors-section__bg {
  position: absolute;
  inset: 0;
}
.sponsors-section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.sponsors-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,26,28,0.88);
}
.sponsors-section__inner { position: relative; }
.sponsors-section__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 4rem;
}
.sponsors-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
.sponsor-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
}
.sponsor-tier__label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.4);
}
.sponsor-tier__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 2rem;
}
.sponsor-name {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.sponsor-name--spotlight {
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  color: rgba(255,255,255,0.92);
}
.sponsor-name--supporting {
  font-size: clamp(0.875rem, 1.75vw, 1.125rem);
  color: rgba(255,255,255,0.65);
}
.sponsor-name--inkind {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.sponsor-name:hover { color: #fff; }
.sponsor-name img { height: 1.5rem; width: auto; filter: brightness(0) invert(1); opacity: 0.6; transition: opacity 0.2s; }
.sponsor-name:hover img { opacity: 1; }

/* keep old .sponsor-chip for sponsors page */
.sponsor-chip {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.2s;
}
.sponsor-chip:hover { color: #fff; border-color: rgba(255,255,255,0.55); }
.sponsor-chip img { height: 1.5rem; width: auto; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity 0.2s; }
.sponsor-chip:hover img { opacity: 1; }

/* ── Schedule page ──────────────────────────────────────── */
.schedule-section { padding: 4rem 0; }
.schedule-section__subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.schedule-section__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
}
.schedule-section__loc {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  display: none;
}
@media (min-width: 768px) { .schedule-section__loc { display: block; } }

.event-card {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 0;
}
@media (min-width: 768px) { .event-card { padding: 3.5rem 0; } }
.event-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.event-card__num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.45);
}
.event-card__date {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.82);
}
@media (min-width: 768px) { .event-card__date { font-size: 1rem; } }
.event-card__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.event-card__title--tbd { color: rgba(255,255,255,0.45); }
.event-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.event-card__genre {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  border: 1px solid rgba(212,78,42,0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.event-card__presenter {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
}
.event-card__presenter strong { color: rgba(255,255,255,0.7); }
.event-card__supporters {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.event-card__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .event-card__footer { flex-direction: row; align-items: center; justify-content: space-between; }
}
.event-card__times {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}
.event-card__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.event-card__learn {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.2s;
}
.event-card__learn:hover { color: #fff; border-color: rgba(255,255,255,0.65); }
.event-card__cal {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  border: 1px solid rgba(212,78,42,0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.2s;
  text-decoration: none;
}
.event-card__cal:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.empty-state {
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  padding: 3rem 0;
  text-align: center;
}

/* Past shows */
.past-section { padding: 0 0 5rem; }
.past-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.past-section__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  flex-shrink: 0;
}
.past-section__line { flex: 1; height: 1px; background: rgba(255,255,255,0.05); }
.past-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  opacity: 0.35;
  transition: opacity 0.2s;
}
.past-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.05); }
.past-row:hover { opacity: 0.6; }
.past-row__date { flex-shrink: 0; width: 4rem; text-align: right; }
.past-row__day {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1;
}
.past-row__month {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  display: block;
}
.past-row__divider { width: 1px; height: 2rem; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.past-row__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.past-row__genre {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}
.past-row__info { flex: 1; min-width: 0; }
.past-row__full {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
  display: none;
}
@media (min-width: 640px) { .past-row__full { display: block; } }

/* ── Sponsors page ──────────────────────────────────────── */
.sponsors-page { padding: 4rem 0 6rem; }

/* Typographic tier layout */
.sp-tiers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.sp-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sp-tier:last-child { border-bottom: none; }
.sp-tier__label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.35);
}
.sp-tier__names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.sp-sep { display: none; }
@media (min-width: 640px) {
  .sp-tier__names {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0;
  }
  .sp-sep {
    display: inline;
    font-family: var(--font-head);
    color: var(--secondary);
    opacity: 0.7;
    padding: 0 1.25rem;
    line-height: 1;
    flex-shrink: 0;
  }
}
.sp-tier__name {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.2;
}
.sp-tier__name--spotlight {
  font-size: clamp(1.125rem, 4vw, 2.75rem);
  color: rgba(255,255,255,0.92);
}
.sp-tier__name--supporting {
  font-size: clamp(0.9375rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.65);
}
.sp-tier__name--inkind {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: rgba(255,255,255,0.4);
}
.sp-tier__name:hover { color: #fff; }
.sp-tier__name img {
  height: clamp(1.5rem, 4vw, 2.5rem);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
  display: block;
}
.sp-tier__name:hover img { opacity: 1; }

/* Sponsor inquiry section */
.sponsor-inquiry { padding: 4rem 0 6rem; border-top: 1px solid rgba(255,255,255,0.08); }
.sponsor-inquiry__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .sponsor-inquiry__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.sponsor-inquiry__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.sponsor-inquiry__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1.5rem;
}
.sponsor-inquiry__body {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sponsor-inquiry__perks { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.sponsor-inquiry__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
}
.sponsor-inquiry__perks li::before {
  content: '→';
  color: var(--secondary);
  flex-shrink: 0;
}

/* ── Contact / Location page ────────────────────────────── */
.map-section { width: 100%; height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }
.venue-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .venue-strip { grid-template-columns: repeat(4, 1fr); } }
.venue-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.venue-cell__label {
  font-family: var(--font-head);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.venue-cell__value {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.contact-section { padding: 5rem 0 6rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-info__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.contact-info__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1.5rem;
}
.contact-info__body {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Forms ──────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.form__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.65);
}
.form__input,
.form__textarea,
.form__select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.55);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__status {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  display: none;
}
.form__status--success { background: rgba(23,104,112,0.3); color: #7de8f0; display: block; }
.form__status--error { background: rgba(212,78,42,0.2); color: #f08060; display: block; }

/* ── Form (hyphen variant) ──────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.65);
}
.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus { outline: none; border-color: rgba(255,255,255,0.55); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; margin-top: 0.5rem; }
.form-status {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  min-height: 1em;
}
.form-status:empty { display: none; }
.form-status--success { background: rgba(23,104,112,0.3); color: #7de8f0; }
.form-status--error { background: rgba(212,78,42,0.2); color: #f08060; }

/* ── Location page ──────────────────────────────────────── */
.location-section { padding: 4rem 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .location-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.location-map { border-radius: 0.75rem; overflow: hidden; }
.location-details { display: flex; flex-direction: column; gap: 2rem; }
.location-detail-block {}
.location-detail-block__label {
  font-family: var(--font-head);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.location-detail-block__value {
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.location-detail-block__value--sm {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 400;
}
.location-detail-block__note {
  font-family: var(--font-head);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}
.location-detail-block__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  text-decoration: none;
  transition: opacity 0.2s;
}
.location-detail-block__link:hover { opacity: 0.7; }
.location-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
}

/* ── Contact section header / Sponsor inquiry header ───── */
.contact-section { padding: 5rem 0 6rem; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-section__header { margin-bottom: 2.5rem; }
.contact-section__label,
.sponsor-inquiry__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.contact-section__title,
.sponsor-inquiry__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.contact-section__sub,
.sponsor-inquiry__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.sponsor-inquiry__header { margin-bottom: 2.5rem; }

/* ── About page ─────────────────────────────────────────── */
.about-section { padding: 5rem 0 6rem; }
.about-block {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-block:first-child { border-top: none; padding-top: 0; }
.about-list {
  color: rgba(255,255,255,0.82);
  font-size: 1.0625rem;
  line-height: 1.8;
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1rem;
}
.about-note {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}
.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-block__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.about-block__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 1.5rem;
}
.about-block__body {
  color: rgba(255,255,255,0.82);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.about-block__body p + p { margin-top: 1rem; }
.about-block__photo { border-radius: 0.75rem; overflow: hidden; aspect-ratio: 4/3; }
.about-block__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-details { display: block; }
.about-detail__label {
  font-family: var(--font-head);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
}
.about-detail__value {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

/* ── About page (new layout) ────────────────────────────── */
.about-story {
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 768px) {
  .about-story__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.about-story__body {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.8;
}

/* Orange facts ticker */
.about-ticker {
  background: var(--secondary);
  padding: 1.25rem 0;
  overflow: hidden;
}
.about-ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.about-ticker__track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  padding-right: 2rem;
}
.about-ticker__dot {
  color: rgba(255,255,255,0.4);
  margin-left: 2rem;
}

/* Managed by / Venue / Photo rows */
.about-details { padding: 4rem 0 0; }
.about-detail-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 4rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.about-detail-row:first-child { border-top: none; padding-top: 0; }
@media (min-width: 768px) {
  .about-detail-row {
    grid-template-columns: 160px 1fr;
    align-items: start;
  }
}
.about-detail-row__side { padding-top: 0.25rem; }
.about-detail-row__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.875rem;
}
.about-detail-row__body {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  line-height: 1.75;
}
.about-detail-row__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,78,42,0.3);
  padding-bottom: 0.25rem;
  transition: border-color 0.2s;
}
.about-detail-row__link:hover { border-color: var(--secondary); }
.about-photo-wrap {
  margin-top: 4rem;
}
.about-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}
@media (min-width: 768px) { .about-photo { height: 480px; } }
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,26,28,0.7), transparent);
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ── Loading skeleton ───────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.25rem;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Grain overlay ──────────────────────────────────────── */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ── Main content offset for fixed header ───────────────── */
.page-main { padding-top: 0; }
