/* ============================================================
   Selby Ave JazzFest — Poize-style theme (static recreation)
   Design system modeled on the "Poize" WordPress theme by Wolf-Themes:
   warm off-white background, black accents, bold display headings,
   uppercase nav, sharp (radius 0) cards, alternating dark/light sections.
   ============================================================ */

/* ------------------------------------------------------------------
   Juno — commercial brush-script display font (W Type Foundry)
   Currently loading the Regular demo face (JUNO-DEMO.otf, converted
   to woff2). Declared as a weight range so heavier <h1> requests
   use the true drawn Regular rather than a synthesized bold.
   Replace with licensed full-family woff2 files to add real weights.
   ------------------------------------------------------------------ */
@font-face {
  font-family: 'Juno';
  src: url('../assets/fonts/juno/JUNO-Demo-Regular.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Poize color scheme */
  --background-color: #f1f0eb; /* warm off-white */
  --foreground-color: #151515;
  --accent-color: #000000;
  --strong-color: #222222;
  --white: #ffffff;
  --grey: #ebe8e1;
  --grey-dark: #343434;
  --muted: #6f6d66;

  /* Walker|West brand accents
     www.walkerwest.org identity: deep heritage red + amber/gold,
     rooted in the African American cultural experience of the
     historic Rondo neighborhood. */
  --brand-red: #BE3838;
  --brand-red-dark: #9a2b2b;
  --brand-gold: #D9943C;
  --brand-gold-soft: #F0E6D2;

  /* Fonts */
  --font-heading: 'Hanken Grotesk', 'Archivo', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: 'Hanken Grotesk', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-type: 'Special Elite', 'Courier New', monospace;
  --font-juno: 'Juno', 'Brush Script MT', 'Snell Roundhand', 'Segoe Script', cursive;

  /* Layout */
  --container: 1400px;
  --gutter: 24px;
  --radius: 0px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--foreground-color);
  background: var(--background-color);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  text-transform: none;
  letter-spacing: -0.01em;
}

.display {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero .display .hero-break { display: none; }
.hero .kicker .kicker-break { display: none; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
}

/* Juno — applied ONLY to banner texts & page headers
   (hero display banner titles + page hero <h1>'s). Body and
   section headings keep the Poize Grotesk family. */
.juno, .display, .page-hero h1 {
  font-family: var(--font-juno) !important;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.kicker {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--brand-red);
  display: inline-block;
  margin-bottom: 0.8rem;
}

.kicker-plain { text-transform: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  padding: 0.9rem 1.9rem;
  background: var(--brand-red);
  color: var(--white);
  border: 2px solid var(--brand-red);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover {
  background: var(--brand-red-dark);
  color: var(--white);
  border-color: var(--brand-red-dark);
  transform: translateY(-1px);
}

.btn-light {
  background: var(--white);
  color: var(--brand-red);
  border-color: var(--white);
}
.btn-light:hover { background: var(--brand-red); color: var(--white); border-color: var(--brand-red); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--accent-color); }

/* Inline "outline" buttons that live on cream/white surfaces use the
   brand red outline so they read as actions rather than neutral text. */
.section.cream .btn-outline,
.page-hero + .section .btn-outline,
.section.grey .btn-outline {
  color: var(--brand-red);
  border-color: var(--brand-red);
}
.section.cream .btn-outline:hover,
.section.grey .btn-outline:hover { background: var(--brand-red); color: var(--white); }

/* Dark / photo surfaces keep a high-contrast white outline */
.hero .btn-outline,
.page-hero .btn-outline,
.section.black .btn-outline,
.section.dark .btn-outline {
  color: var(--white);
  border-color: var(--white);
}
.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.section.black .btn-outline:hover,
.section.dark .btn-outline:hover {
  background: var(--white);
  color: var(--accent-color);
}
.hero .btn-outline {
  background: rgba(0,0,0,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.hero .btn-outline:hover { background: var(--white); color: var(--accent-color); text-shadow: none; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent-color);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 1px 0 rgba(0,0,0,0);
  transition: background-color .5s cubic-bezier(.165,.84,.44,1), box-shadow .3s;
}
.site-header.is-scrolled {
  box-shadow: 0 134px 80px rgba(0,0,0,.05), 0 60px 60px rgba(0,0,0,.09), 0 15px 33px rgba(0,0,0,.10);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}
.brand { justify-self: start; }
.brand img { height: 57px; width: auto; }
.brand img.dark { display: none; }

/* ---- Top header nav (Squarespace www design system) ---- */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-nav .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
}
.header-nav .nav-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header-nav .nav-caret {
  display: block;
  transition: transform .3s cubic-bezier(.165,.84,.44,1);
}
.header-nav .nav-toggle:hover .nav-label,
.header-nav .nav-toggle.is-active .nav-label { color: var(--brand-gold); }
.header-nav .nav-toggle[aria-expanded="true"] .nav-caret { transform: rotateX(-180deg); }
.header-nav .nav-toggle[aria-expanded="true"] .nav-label { color: var(--brand-gold); }
.nav-toggle[href*="online-store"] .nav-label { text-transform: none; }

/* ---- Dropdown submenus (Squarespace-style panels under each item) ---- */
.submenu {
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 60;
  min-width: 200px;
  padding: 24px 26px;
  background: rgba(0,0,0,0.9);
  border-radius: 8px;
  box-shadow: 0 134px 80px rgba(0,0,0,.05), 0 60px 60px rgba(0,0,0,.09), 0 15px 33px rgba(0,0,0,.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s cubic-bezier(.165,.84,.44,1), transform .25s cubic-bezier(.165,.84,.44,1), visibility .25s step-end;
}
.nav-item:hover .submenu,
.nav-item.open .submenu,
.nav-item:focus-within .submenu,
.submenu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s cubic-bezier(.165,.84,.44,1), transform .25s cubic-bezier(.165,.84,.44,1), visibility .25s step-start;
}
.submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.submenu ul a {
  display: inline-block;
  color: #cfccc2;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  transition: color .2s ease;
}
.submenu ul a:hover { color: var(--white); }
.submenu ul a.active { color: var(--brand-gold); }

.nav ol, .nav ul { list-style: none; display: flex; gap: 26px; }
.nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--brand-gold);
  transition: width 0.25s;
}
.nav a:hover::after { width: 100%; }
.nav a.active::after { width: 100%; }

/* ---- Dropdown submenus (mirrors live site nav) ---- */
.nav .has-dropdown { position: relative; }
.nav .has-dropdown > a { padding-right: 14px; }
.nav .has-dropdown > a::before {
  content: '▾';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-52%);
  font-size: 0.6rem;
  color: var(--brand-gold);
}
.nav .dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 220px;
  background: var(--accent-color);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.9rem 0;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 60;
  box-shadow: 0 18px 36px rgba(0,0,0,0.42);
}
.nav .dropdown li { width: 100%; }
.nav .dropdown a {
  display: block;
  padding: 0.5rem 1.2rem;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  color: #e6e3da;
}
.nav .dropdown a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav .dropdown a::before,
.nav .dropdown a::after { display: none; }
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown,
.nav .has-dropdown.open .dropdown { display: flex; }
.nav .dropdown a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%; height: 2px;
  background: var(--brand-gold);
  display: block;
}

/* ---- Header actions: social icons, search, CTA ---- */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.hdr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hdr-icon:hover { background: var(--brand-red); border-color: var(--brand-red); }
.hdr-icon:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 2px; }
.hdr-icon svg { display: block; }

/* ---- Search overlay ---- */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 1.2rem 1.2rem;
}
.search-overlay[hidden] { display: none; }
.search-box {
  width: min(640px, 100%);
  position: relative;
}
.search-close {
  position: absolute;
  right: 0;
  top: -52px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.search-close:hover { background: var(--brand-red); border-color: var(--brand-red); }
.search-form { display: flex; gap: 10px; }
.search-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  background: #161616;
  color: var(--white);
}
.search-form input::placeholder { color: #9c988e; }
.search-form input:focus { outline: 3px solid var(--brand-gold); outline-offset: 0; }
.search-form .btn { flex: 0 0 auto; }
.search-results {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.5rem;
}
.search-results li {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: #1c1c1c;
}
.search-results a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}
.search-results a:hover { color: var(--brand-gold); }
.search-results .search-empty {
  color: #cfccc2;
  padding: 0.85rem 1rem;
  border: none;
  background: none;
}
.search-hint { color: #9c988e; margin-top: 0.8rem; font-size: 0.9rem; }


/* ---- Hero ---- */
.hero {
  position: relative;
  background: var(--accent-color);
  color: var(--white);
  padding: clamp(6rem, 14vw, 11rem) 0;
  overflow: hidden;
}
/* Background image slider (matches live masthead slideshow) */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide.bg1 { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/official_001.webp'); }
.hero-slide.bg2 { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/WW052-scaled.webp'); }
.hero-slide.bg3 { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/DFhd1.webp'); }
.hero-slide.bg4 { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/hd.webp'); }
.hero-slide.bg5 { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/shd.webp'); }
.hero-slide.bg6 { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/sajazzfjazz.webp'); }
.hero-slide.bg7 { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/msbhd2.webp'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 500px at 70% 20%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero .kicker { color: var(--brand-gold); margin-top: 1.4rem; margin-bottom: 0.6rem; }
.hero-sub {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  margin-top: 1.6rem;
  max-width: 62ch;
  color: #d6d3ca;
}
.hero-actions { margin-top: 2.4rem; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4rem; }
.btn-row .btn { margin-top: 0; }

/* ---- Countdown ---- */
.countdown-row { margin-top: 3rem; display: flex; gap: 18px; flex-wrap: wrap; }
.cd-box {
  min-width: 92px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  text-align: center;
}
.cd-box .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
}
.cd-box .label {
  font-family: var(--font-type);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  color: var(--brand-gold);
}

/* ---- Sections ---- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section.dark { background: var(--accent-color); color: var(--white); }
.section.black { background: var(--accent-color); color: var(--white); }
.section.cream { background: var(--background-color); color: var(--foreground-color); }
.section.grey { background: var(--grey); color: var(--foreground-color); }
.section .kicker.dark-kicker { color: var(--brand-red); }
.section.dark .kicker, .section.black .kicker { color: var(--brand-gold); }

.section-head { max-width: 720px; margin-bottom: 3rem; }

/* ---- Marquee ticker (Poize-style scrolling text) ---- */
.marquee {
  background: var(--brand-red);
  color: var(--white);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0 2rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Sponsor logo ticker ---- */
.view-all { text-align: center; }
.sponsor-marquee {
  overflow: hidden;
  margin-top: 3rem;
  padding: 1.2rem 0;
  border-top: 1px solid #ece9e0;
  border-bottom: 1px solid #ece9e0;
}
.sponsor-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: sponsor-marquee 70s linear infinite;
}
.sponsor-marquee-track img {
  flex: 0 0 auto;
  height: 62px;
  width: auto;
  object-fit: contain;
  background: var(--white);
  border: 1px solid #ece9e0;
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
  box-sizing: content-box;
}
.sponsor-marquee-track img:nth-child(1),
.sponsor-marquee-track img:nth-child(2),
.sponsor-marquee-track img:nth-child(3) { height: 74px; }
@keyframes sponsor-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .sponsor-marquee-track img { height: 48px; padding: 0.7rem 1rem; }
  .sponsor-marquee-track img:nth-child(1),
  .sponsor-marquee-track img:nth-child(2),
  .sponsor-marquee-track img:nth-child(3) { height: 58px; }
}

/* ---- Featured Day blocks ---- */
.days { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.day-card {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.day-card:hover { border-color: var(--white); transform: translateY(-4px); }
.day-card .day-label {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand-gold);
}
.day-card h3 { font-size: 1.7rem; }
.day-card p { color: #cfccc2; flex: 1; }
.day-card .arrow { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--brand-red); }

/* ---- Artist lineup grid ---- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
/* Single centered card (e.g. the Jam Session host). */
.artist-grid.centered {
  grid-template-columns: 1fr;
  justify-items: center;
}
.artist-grid.centered .artist-card {
  width: 100%;
  max-width: 420px;
}
.artist-card { position: relative; }
.artist-card a { display: block; }
.artist-card .thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--grey);
}
.artist-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.artist-card:hover .thumb img { transform: scale(1.06); }
/* Feily headshot: nudge left so the guitar headstock stays in view */
.artist-card.feily-card .thumb img {
  transform: translateX(-4%);
}
.artist-card.feily-card:hover .thumb img {
  transform: translateX(-4%) scale(1.06);
  transform-origin: left center;
}
/* Marvelous: gold-bordered text block */
.artist-card.marvel-card .meta {
  position: relative;
  border: 1px solid var(--brand-gold);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  background: rgba(217, 148, 60, 0.06);
}
.artist-card .meta {
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 1rem;
}
.artist-card .genre {
  font-family: var(--font-type);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-gold);
  margin-bottom: 0.3rem;
}
.artist-card h3 { font-size: 1.35rem; }
.artist-card p {
  font-size: 0.9rem;
  color: #cfccc2;
  margin-top: 0.5rem;
}
.artist-card .readmore {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  margin-top: 0.9rem;
  display: inline-block;
  border-bottom: 1px solid currentColor;
  color: var(--brand-red);
}
.artist-card:hover .readmore { color: var(--brand-red-dark); }

.section.cream .artist-card .meta { border-top-color: rgba(0,0,0,0.14); }
.section.cream .artist-card .genre { color: var(--brand-red); font-weight: 600; }
.section.cream .artist-card p { color: #55534c; }

/* ---- Schedule list ---- */
.schedule-list { border-top: 1px solid currentColor; }
.schedule-item {
  display: grid;
  grid-template-columns: 190px 120px 1fr 140px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.schedule-item .time {
  font-family: var(--font-type);
  font-size: 0.95rem;
  color: #cfccc2;
}
.schedule-item .stage {
  font-size: 0.85rem;
  color: var(--brand-gold);
}
.schedule-item h4 { font-size: 1.25rem; }
.schedule-item .script { font-family: var(--font-heading); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; }
.schedule-item .tag { justify-self: end; }

/* ---- Event cards (schedule page) ---- */
.event-list { display: flex; flex-direction: column; gap: 2rem; }
.event {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem;
}
.event .time-col {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
  padding-right: 1.5rem;
}
.event .time-col .date-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
}
.event .time-col .date-label {
  font-family: var(--font-type);
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-top: 0.3rem;
  color: var(--muted);
}
.event .time-col .hrs {
  font-family: var(--font-type);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.event h3 { font-size: 1.5rem; }
.event .genres { font-family: var(--font-type); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 0.4rem 0 0.7rem; }
.event p { max-width: 60ch; color: #55534c; }

/* ---- Ticket / pricing ---- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.price-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-card.featured {
  background: var(--white);
  color: var(--accent-color);
  border-color: var(--white);
  border-top: 5px solid var(--brand-red);
}
.price-card h4 { font-family: var(--font-type); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--brand-gold); }
.price-card.featured h4 { color: var(--brand-red); }
.price-card .price { font-family: var(--font-heading); font-weight: 700; font-size: 3rem; line-height: 1; }
.price-card .day-date {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--brand-gold);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.9rem;
}
.price-card.featured .day-date { color: var(--brand-red-dark); border-top-color: rgba(0,0,0,0.1); }
.price-card ul { list-style: none; color: #cfccc2; display: grid; gap: 0.5rem; font-size: 0.92rem; }
.price-card.featured ul { color: #55534c; }
.price-card .btn { margin-top: auto; }

/* ---- Merch page ---- */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 0.5rem;
}
.merch-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e3dc;
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.merch-card:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.merch-thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a28, #151515);
  position: relative;
}
.merch-thumb .merch-mono {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  opacity: 0.92;
}
.merch-card:nth-child(3n+2) .merch-thumb { background: linear-gradient(135deg, #3a1f1f, #1d1212); }
.merch-card:nth-child(3n+3) .merch-thumb { background: linear-gradient(135deg, #2a3a2a, #142014); }
.merch-body { display: flex; flex-direction: column; gap: 0.55rem; padding: 1.4rem 1.4rem 1.5rem; }
.merch-type {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--brand-red);
}
.merch-body h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--foreground-color); }
.merch-body p { color: #5a574f; line-height: 1.55; }
.merch-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; }
.merch-price { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--foreground-color); }
.merch-foot .btn { margin: 0; }
.merch-note { margin-top: 2.4rem; color: #6a675e; max-width: 72ch; line-height: 1.6; }
.merch-note a { color: var(--brand-red); }
@media (max-width: 900px) {
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .merch-grid { grid-template-columns: 1fr; }
}

/* ---- Newsletter CTA ---- */
.newsletter {
  background: var(--accent-color);
  color: var(--white);
  text-align: center;
  padding: clamp(4.5rem, 9vw, 7rem) 0 0;
  overflow: hidden;
}
.newsletter form {
  margin: 2rem auto 0;
}
/* Poize-style email entry: bottom underline only + arrow submit */
.nl-form {
  max-width: 620px;
  margin: 2rem auto 0;
}
.nl-field {
  display: flex;
  align-items: center;
  border-bottom: 3px solid rgba(255,255,255,0.7);
  padding-bottom: 11px;
  transition: border-color 0.25s ease;
}
.nl-field:focus-within { border-bottom-color: var(--brand-gold); }
.nl-field input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 9px 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  outline: none;
}
.nl-field input[type="email"]::placeholder { color: #b9b5aa; opacity: 1; }
.nl-arrow {
  flex: 0 0 auto;
  margin-left: 18px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--brand-gold);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}
.nl-arrow:hover { color: var(--brand-red); transform: translateX(6px); }
.nl-arrow:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 3px; border-radius: 2px; }

/* ---- WPForms integration ---- */
.sajf-form-wrap { margin-top: 1.2rem; }
.sajf-form-wrap p { margin: 0 0 0.8rem; }
.sajf-form-msg { font-size: 0.95rem; line-height: 1.5; margin-top: 1.2rem; }
.sajf-form-msg a { color: var(--brand-gold); text-decoration: underline; }
.sajf-form-error { color: #cfccc2; }

/* ---- Footer ---- */
.site-footer {
  background: var(--accent-color);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer-grid h4 {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 1.2rem;
  color: var(--brand-gold);
}
.footer-grid ul { list-style: none; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.footer-grid a:hover { opacity: 0.7; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: #cfccc2; max-width: 34ch; font-size: 0.95rem; }
.footer-donate {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.6rem 0.9rem 0.6rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  max-width: 100%;
}
.footer-donate:hover { border-color: var(--brand-red); background: rgba(190,56,56,0.18); }
.footer-donate img {
  height: 84px;
  width: 84px;
  border-radius: 10px;
  background: var(--white);
  padding: 4px;
  margin: 0;
  box-sizing: border-box;
}
.footer-donate span {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--brand-gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #9c988e;
  font-size: 0.85rem;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--accent-color);
  color: var(--white);
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
.hero-lede { max-width: 60ch; color: #d6d3ca; margin-top: 1.2rem; font-size: 1.05rem; }
@media (min-width: 1025px) { .hero-lede { white-space: nowrap; max-width: none; } }
.page-hero-inner { max-width: 72rem; }
.section-lede { max-width: 60ch; color: #d6d3ca; margin: 1rem 0 2.5rem; font-size: 1.05rem; line-height: 1.55; }
.section.cream .section-lede { color: #55534c; }

/* Full-page-width intro text, aligned under the header text above it */
.lede-full { width: 100%; max-width: none; white-space: normal; }
.preset-cta-row { justify-content: center; margin-top: 1.6rem; }

/* ---- Google map ---- */
.map-wrap { margin-top: 2.5rem; overflow: hidden; }
.map-wrap iframe { display: block; }

/* ---- Spotify embeds ---- */
.spotify-wrap { margin-top: 1.5rem; max-width: 720px; }
.spotify-wrap iframe { display: block; width: 100%; }

/* ---- Artist social profile icons ---- */
.artist-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.4rem 0 0;
}
.artist-socials-label {
  font-family: var(--font-type);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.4rem;
}
.artist-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.artist-social-link:hover { background: var(--brand-red); border-color: var(--brand-red); transform: translateY(-2px); }
.artist-social-link:focus-visible { outline: 3px solid var(--brand-gold); outline-offset: 2px; }
.artist-social-link svg { display: block; }

/* ---- Masterclass page ---- */
.details-list { margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.18); }
.detail-row {
  display: flex; gap: 1.5rem; justify-content: space-between;
  padding: 1rem 0.2rem; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.detail-row .detail-label { color: var(--brand-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; white-space: nowrap; }
.detail-row span:last-child { color: #e6e3da; text-align: right; }
.expect-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.5rem; max-width: 72ch; }
.expect-list li { padding-left: 1.2rem; border-left: 3px solid var(--brand-red); color: #574f45; }
.expect-list strong { font-family: var(--font-heading); font-weight: 600; color: #151515; }
.cta-block { max-width: 780px; }

/* Masterclass: Full-Circle Moment split (framed portrait beside text) */
.fcm-split {
  display: grid;
  grid-template-columns: minmax(300px, 380px) 1fr;
  gap: 3rem;
  align-items: center;
}
.fcm-portrait { margin: 0; }
.fcm-frame {
  position: relative;
  border-radius: 18px;
  padding: 0.9rem;
  background: var(--accent-color);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}
.fcm-frame::before,
.fcm-frame::after {
  content: '';
  position: absolute;
  width: 74px;
  height: 74px;
  pointer-events: none;
}
.fcm-frame::before {
  top: -22px;
  left: -22px;
  border-top: 3px solid var(--brand-gold);
  border-left: 3px solid var(--brand-gold);
}
.fcm-frame::after {
  bottom: -22px;
  right: -22px;
  border-bottom: 3px solid var(--brand-gold);
  border-right: 3px solid var(--brand-gold);
}
.fcm-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 640/800;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.35s ease;
}
.fcm-portrait:hover .fcm-frame img { transform: scale(1.03); }
.fcm-portrait figcaption {
  margin-top: 1.1rem;
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--brand-red);
  text-align: center;
}
@media (max-width: 900px) {
  .fcm-split { grid-template-columns: 1fr; gap: 2rem; justify-items: center; }
  .fcm-portrait { max-width: 380px; width: 100%; }
}

/* Masterclass: What to Expect — list | pull-out quote side by side */
.wte-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.wte-split .pull-quote {
  max-width: none;
  margin: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .wte-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* Masterclass CTA panel: full-width, centered */
.mc-cta-panel { background: var(--accent-color); }
.mc-cta-inner {
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  text-align: center;
}
.mc-cta-inner p {
  max-width: none;
  color: #cfccc2;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.mc-cta-inner .btn { margin-top: 1.6rem; }

/* ---- Schedule accordion ---- */
.schedule-accordion { display: flex; flex-direction: column; }
.acc-item { border-bottom: 1px solid #e5e3dc; }
.schedule-accordion.acc-dark .acc-item { border-bottom: 1px solid rgba(255,255,255,0.16); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.15rem 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 500;
}
.acc-head .acc-time {
  flex: 0 0 auto;
  min-width: 10rem;
  font-weight: 600;
  color: var(--brand-red);
}
.acc-dark .acc-head .acc-time { color: var(--brand-gold); }
.acc-head .acc-title {
  flex: 1 1 auto;
  color: var(--foreground-color);
  font-size: 1.05rem;
}
.acc-dark .acc-head .acc-title { color: var(--white); }
.acc-head .acc-arrow {
  flex: 0 0 auto;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--brand-red);
}
.acc-dark .acc-head .acc-arrow { color: var(--brand-gold); }
.acc-head:hover .acc-title { text-decoration: underline; text-underline-offset: 4px; }
.acc-body {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 2rem;
  align-items: start;
  padding: 0.5rem 0.2rem 1.8rem;
}
.acc-item.open .acc-body { display: grid; }
.acc-item.open .acc-arrow { transform: rotate(45deg); }
.acc-media img { display: block; width: 100%; height: auto; border: 1px solid #e5e3dc; }
.acc-dark .acc-media img { border-color: rgba(255,255,255,0.18); }
.acc-content h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.acc-content h4.acc-hl { font-family: var(--font-heading); font-weight: 700; color: var(--brand-red); margin: 0 0 0.8rem; }
.acc-content p { margin-bottom: 0.9rem; color: #55534c; max-width: 65ch; }
.acc-dark .acc-content p { color: #cfccc2; }
.acc-facts, .acc-what { margin: 1.2rem 0; padding: 1rem 1.2rem; border: 1px solid #e5e3dc; }
.acc-dark .acc-facts, .acc-dark .acc-what { border-color: rgba(255,255,255,0.18); }
.acc-content .btn { margin-top: 0.5rem; }
@media (max-width: 768px) {
  .acc-head { flex-wrap: wrap; gap: 0.4rem 1rem; }
  .acc-head .acc-time { min-width: 0; }
  .acc-body { grid-template-columns: 1fr; }
}

/* Narrow phones: on the schedule accordions (Live Music / Schedule) give the
   time its own row and pin the + toggle to the title's row so a long act name
   (e.g. Walker|West Faculty X-tet) never strands the arrow on a third line. */
@media (max-width: 410px) {
  .schedule-accordion .acc-head .acc-time { flex: 0 0 100%; }
  .schedule-accordion .acc-head .acc-arrow { margin-left: auto; }
}

/* Saturday Lineup page (mobile): keep every accordion header on a single
   line so the schedule reads cleanly on small screens. Time stays fixed,
   the title truncates gracefully, and the + toggle always stays visible. */
@media (max-width: 768px) {
  .acc-one-line .acc-head { flex-wrap: nowrap; gap: 0.4rem 0.75rem; }
  .acc-one-line .acc-head .acc-time {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .acc-one-line .acc-head .acc-title {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .acc-one-line .acc-head .acc-arrow { flex: 0 0 auto; }
}

/* ---- FAQ accordion ---- */
.faq-accordion .acc-body { grid-template-columns: minmax(0, 1fr); }
.faq-accordion .acc-content p { max-width: 72ch; }

/* ---- Team page ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 0.5rem; }
.team-card { text-align: left; }
.team-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.team-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 335/446;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.2rem 1.4rem 1.5rem;
  background:
    linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 45%, transparent 100%);
  color: var(--white);
}
.team-caption::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 3px;
  background: var(--brand-gold);
  margin-bottom: 0.85rem;
}
.team-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.175rem;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0;
  line-height: 1.15;
}
.team-card .team-role {
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0.55rem 0 0;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ---- Experience page tiles ---- */
.tile { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
.tile-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tile-body p { margin-bottom: 1.2rem; color: #cfccc2; }
.section.cream .tile-body p { color: #55534c; }
.tile-body .btn { margin-top: 0.5rem; }
@media (max-width: 768px) {
  .tile { grid-template-columns: 1fr; }
  .tile-reverse .tile-media { order: 1; }
  .tile-reverse .tile-body { order: 2; }
}

/* ---- About page ---- */
.mission { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: start; }
.mission p { margin-bottom: 1.2rem; color: #cfccc2; }

/* By the Numbers infographic */
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 0.3rem; }
.stat {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(217,148,60,0.32);
  background: rgba(217,148,60,0.06);
  border-radius: 12px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800; line-height: 1;
  color: var(--brand-gold);
}
.stat-label {
  font-size: 0.95rem; line-height: 1.5; color: #cfccc2;
}
.stat-featured {
  border-color: rgba(190,56,56,0.55);
  background: rgba(190,56,56,0.08);
}
.stat-featured .stat-num {
  color: var(--brand-red);
  font-family: var(--font-type);
  font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.about-quote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.35;
  color: var(--white);
}
.about-quote cite {
  display: block;
  font-family: var(--font-type);
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b9b5aa;
  margin-top: 1.2rem;
}
.press-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.press-card {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.press-card blockquote { font-size: 1.05rem; color: #d6d3ca; }
.press-card cite { font-family: var(--font-type); font-style: normal; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: #b9b5aa; }

/* ---- Pull-out quote ---- */
.pull-quote {
  position: relative;
  max-width: 820px;
  margin: 3.2rem auto 0;
  padding: 2.6rem 3rem 2.6rem 5.2rem;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 18px;
  border-left: 5px solid var(--brand-gold);
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: 1.6rem;
  top: 1.1rem;
  font-family: var(--font-heading);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--brand-gold);
}
.pull-quote p {
  font-family: var(--font-type);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--white);
  margin: 0;
}
.pull-quote p + p { margin-top: 1.1rem; }
.pull-quote.is-centered {
  text-align: center;
  padding: 2.6rem 3rem;
  border-left: none;
  border-top: 5px solid var(--brand-gold);
}
.pull-quote.is-centered::before {
  left: 50%;
  top: -1.2rem;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .pull-quote { padding: 2rem 1.6rem 2rem 3.6rem; }
  .pull-quote::before { font-size: 3.4rem; left: 1rem; }
  .pull-quote p { font-size: 1.15rem; }
  .pull-quote.is-centered { padding: 2.2rem 1.4rem; }
  .pull-quote.is-centered::before { left: 50%; top: -1rem; font-size: 3rem; }
}

/* ---- Vision section: vertically center the pull quote and
   space it away from the heading that follows ---- */
.vision-section .container {
  display: flex;
  flex-direction: column;
}
.vision-section .pull-quote {
  margin: clamp(3rem, 8vw, 6rem) auto;
}
.vision-section .pull-quote + * {
  margin-top: clamp(3.5rem, 9vw, 7rem);
}
.vision-section .section-title { margin-bottom: 1.4rem; }

/* ---- Photo gallery (real festival imagery) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--grey);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.92);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.08); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: var(--white);
  font-family: var(--font-type);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---- Photo band (wide imagery strip) ---- */
.photo-band { overflow: hidden; }
.photo-band-img {
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 21 / 6;
}
.photo-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Artists page: Sticky Scrollytelling Lineup ---- */
/* Reusable CTA row (used inside the sticky narrative steps) */
.poster-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---- Sticky scrollytelling lineup ---- */
.sticky-scroll {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 0 3rem;
  align-items: start;
}
.sticky-frame-wrap {
  order: 2;
  position: sticky;
  top: clamp(12px, 3vh, 32px);
  height: calc(100vh - 200px);
  min-height: 420px;
}
.sticky-frame {
  position: relative;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: var(--accent-color);
  box-shadow: 0 22px 48px rgba(0,0,0,0.62);
}
.sticky-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #000;
  opacity: 0;
  pointer-events: none;
}
.sticky-frame.fade-to-black::after { animation: fade-to-black 0.55s ease; }
@keyframes fade-to-black {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
.sticky-counter {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 6;
  font-family: var(--font-type);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: #1a1206;
  background: var(--brand-gold);
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.sticky-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.sticky-media.is-active { opacity: 1; z-index: 2; visibility: visible; transition-delay: 0s; }
.sticky-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.12);
  transition: transform 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.sticky-media.is-active img { transform: scale(1); }

.sticky-track { order: 1; }
.sticky-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 3rem 1.5rem 3rem 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sticky-step:first-child { border-top: none; }
.sticky-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: var(--brand-gold);
  opacity: 0;
  transform: scaleY(0);
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.sticky-step.is-active::before { opacity: 1; transform: scaleY(1); }
.sticky-num { font-family: var(--font-type); font-size: 0.95rem; letter-spacing: 0.18em; color: var(--brand-gold); }
.sticky-step h3 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 0.3rem 0 0.2rem; transition: color 0.3s ease; }
.sticky-step.is-active h3 { color: var(--brand-gold); }
.sticky-step .role { font-family: var(--font-type); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: #cfccc2; opacity: 0.85; }
.sticky-step p { color: #cfccc2; margin-top: 1rem; max-width: 52ch; }
.sticky-step .poster-cta { margin-top: 1.3rem; }

@media (max-width: 1080px) {
  .sticky-scroll { grid-template-columns: 1fr minmax(280px, 380px); gap: 0 2rem; }
  .sticky-frame-wrap { height: calc(100vh - 220px); min-height: 380px; }
  .sticky-step { min-height: calc(100vh - 220px); }
}
@media (max-width: 900px) {
  .sticky-scroll { display: block; }
  .sticky-frame-wrap {
    position: sticky;
    top: 8px;
    height: 46vh;
    min-height: 0;
    margin-bottom: 2rem;
    order: 0;
  }
  .sticky-step { min-height: 46vh; justify-content: flex-start; }
  .sticky-track { padding-top: 1rem; padding-bottom: 4rem; }
}

.artist-feature {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 3rem;
}
.artist-feature .thumb { aspect-ratio: 4/5; overflow: hidden; }
.artist-feature .thumb img { width: 100%; height: 100%; object-fit: cover; }
.artist-feature h2 { font-size: 2.2rem; }
.artist-feature .role { font-family: var(--font-type); color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; margin: 0.4rem 0 1rem; }
.artist-feature p { color: #55534c; }

/* ============================================================
   Inner pages: artists (single), volunteer, sponsors, vendors, contact
   ============================================================ */

/* ---- Artist single ---- */
.artist-single { display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 3rem; align-items: start; }
.artist-single > * { min-width: 0; }
.artist-single .card-img { border: 1px solid rgba(255,255,255,0.2); }
/* Landscape group photo (Mississippi) gets a wider image column */
.mss-single { grid-template-columns: minmax(440px, 560px) 1fr; }
/* Crop the left side of the group photo (view shifts toward the right) */
.mss-single .card-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.mss-single .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
@media (max-width: 1080px) {
  .mss-single { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mss-single { grid-template-columns: 1fr; }
}
.artist-single h1, .artist-single h2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
.artist-single .role { font-family: var(--font-type); color: var(--brand-gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; margin-top: 0.5rem; }
.artist-single .bio { margin: 1.4rem 0; color: #d6d3ca; }
.artist-single .bio p { margin-bottom: 1.1rem; }
.artist-single .facts {
  list-style: none;
  margin: 1.4rem 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  overflow: hidden;
  background: #161616;
  padding: 1.1rem 1.3rem;
  width: max-content;
  max-width: 100%;
}
.artist-single .fact-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 1.4rem 0;
  width: max-content;
  max-width: 100%;
}
.artist-single .fact-row .facts { margin: 0; flex: none; }
.artist-single .fact-row .btn { margin: 0; white-space: nowrap; flex: none; }
.artist-single .facts li {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.8rem;
  color: #ffffff;
  white-space: nowrap;
}
.artist-single .facts li + li {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 0.8rem;
}
.artist-single .fact-label {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-type);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0b45c;
  line-height: 1;
}
.artist-single .fact-value {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
}
.artist-single .back { font-family: var(--font-heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; display: inline-block; margin-bottom: 1.5rem; border-bottom: 1px solid currentColor; }

@media (max-width: 1300px) {
  .artist-single { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 2.5rem; }
  .artist-single .fact-row { width: 100%; flex-wrap: wrap; gap: 0.9rem 1rem; }
  .artist-single .fact-row .btn { flex: 0 1 auto; white-space: normal; }
  .artist-single .facts { flex: 1 1 auto; width: auto; min-width: 0; }
  .artist-single .facts li { flex-wrap: wrap; gap: 0.8rem; white-space: normal; }
}

/* 50/50 split inside the artist info panel: artist info | Spotify */
.artist-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.artist-panel .spotify-wrap { margin-top: 0.9rem; }
@media (max-width: 1080px) {
  .artist-panel { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- Volunteer: roles grid ---- */
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.role-card {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.role-card:hover { border-color: var(--white); transform: translateY(-3px); }
.role-card h3 { font-size: 1.25rem; }
.role-card p { color: #cfccc2; font-size: 0.95rem; }

/* ---- Perks ---- */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.perk {
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  padding: 1.6rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.perk h3 { font-size: 1.15rem; }
.perk p { color: #55534c; font-size: 0.95rem; }

/* ---- FAQ (volunteer) ---- */
.faq-list { border-top: 1px solid rgba(0,0,0,0.18); }
.faq-item { padding: 1.2rem 0; border-bottom: 1px solid rgba(0,0,0,0.18); }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--foreground-color); }
.faq-item p { color: #4a473f; }

/* ---- Sponsors ---- */
.benefit-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  max-width: 72ch;
}
.benefit-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #d6d3ca;
}
.benefit-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
  font-weight: 700;
}
.benefit-list li strong { color: var(--white); }
/* ---- 2026 Sponsors logo wall (white) ---- */
.sponsor-logos { background: var(--white); color: var(--foreground-color); }
.sponsor-logos .dark-kicker { color: var(--brand-red); }

.sponsor-block { margin-bottom: 3rem; }
.sponsor-block h3 {
  font-family: var(--font-type); text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.78rem;
  color: var(--brand-red); margin-bottom: 1.1rem;
  text-align: left;
}

.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; align-items: center; }
.logo-cell {
  border: 1px solid #ece9e0;
  border-radius: 14px;
  padding: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 100px; background: var(--white);
}
.logo-cell img { width: auto; height: auto; object-fit: contain; }

/* Higher tier = bigger logo */
.tier-gold .logo-cell { min-height: 326px; padding: 1.8rem; }
.tier-gold .logo-cell img { height: 268px; }
.tier-silver .logo-cell { min-height: 279px; padding: 1.6rem; }
.tier-silver .logo-cell img { height: 228px; }
.tier-bronze .logo-cell { min-height: 237px; padding: 1.4rem; }
.tier-bronze .logo-cell img { height: 156px; }
.tier-bronze .logo-cell img.big-logo { height: 192px; }

/* Gold / Silver / Bronze side by side */
.sponsor-tiers-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.sponsor-tiers-row .sponsor-block { margin-bottom: 2.4rem; }
.sponsor-tiers-row .logo-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }

/* Community Sponsors: single row */
.community-logos {
  grid-template-columns: repeat(7, 1fr);
  gap: 0.9rem;
  align-items: center;
}
.community-logos .logo-cell { height: 86px; padding: 1rem; overflow: hidden; }
.community-logos .logo-cell img { height: 46px; }
.community-logos .logo-cell img.smaller { height: 38px; }
.community-logos .logo-cell img.ultc { height: 96px; }
.community-logos .logo-cell img.tch { height: 140px; max-height: 140px; }

/* Armstrong & Media: one row */
.armstrong-logos, .media-logos { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.armstrong-logos .logo-cell, .media-logos .logo-cell { min-height: 96px; padding: 1.2rem; }
.armstrong-logos .logo-cell img, .media-logos .logo-cell img { height: 54px; }
.armstrong-logos .logo-cell img.tcrise { height: 52px; }
.armstrong-logos .logo-cell img.fib { height: 168px; }
.armstrong-logos .logo-cell img.habitat { height: 82px; }
.armstrong-logos .logo-cell img.mnhousing { height: 23px; }
.media-logos .logo-cell img.msr { height: 27px; }

/* Grantors: logo on top, verbiage below, on one row */
.grantor-grid { grid-template-columns: repeat(4, 1fr); align-items: start; gap: 1.2rem; }
.grantor { display: flex; flex-direction: column; }
.grantor .logo-cell { min-height: 118px; padding: 1.2rem; align-items: flex-start; }
.grantor .logo-cell img { height: 62px; }
.grantor-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #6f6d66;
}

/* Uniform sponsor-wall containers: equal cell height, logos capped to fit.
   The podium (Gold/Silver/Bronze) rows keep their tiered sizing. */
.sponsor-logos .community-logos .logo-cell,
.sponsor-logos .armstrong-logos .logo-cell,
.sponsor-logos .media-logos .logo-cell,
.sponsor-logos .grantor .logo-cell {
  min-height: 120px;
  padding: 1.1rem;
}
.sponsor-logos .community-logos .logo-cell img,
.sponsor-logos .armstrong-logos .logo-cell img,
.sponsor-logos .media-logos .logo-cell img,
.sponsor-logos .grantor .logo-cell img {
  height: auto;
  min-height: 0;
  max-height: 80px;
}

/* ===== Sponsorship editorial wall (Walker|West brand) =====
   Structured top-down grid: tier headers centered w/ accent rules,
   logos on clean white with hairline dividers, descending scale. */
.sponsor-wall {
  background: var(--white);
  border: 1px solid #ece9e0;
  border-radius: 18px;
  padding: 2.6rem 2rem;
}
.sponsor-wall .tier + .tier { margin-top: 3rem; }

/* Tier header: —— TIER —— flavor, gold serif on white */
.tier-title {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem;
  margin-bottom: 1.8rem;
  font-family: var(--font-type);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brand-red);
  text-align: center;
}
.tier-title::before, .tier-title::after {
  content: "";
  flex: 0 0 2.4rem; height: 1px;
  background: var(--brand-gold);
}
.tier-title span { white-space: nowrap; }
@media (min-width: 620px) {
  .tier-title::before, .tier-title::after { flex: 1 1 auto; }
}

/* Rows: logos arranged on hairline dividers, no card boxes */
.tier-row {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 1.4rem 0;
}

/* Gold / Silver / Bronze share one row */
.tier-top-row {
  display: flex; flex-direction: column; gap: 1.2rem;
}
/* Header strip: each tier label in its own aligned column */
.top-tier-titles {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1.6rem;
}
.top-tier-titles .tier-title { margin-bottom: 0; }
/* One shared logo line: all gold/silver/bronze logos inline */
.top-tier-logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1.6rem;
  align-items: center;
}
.top-tier-logos .bronze-group {
  display: flex; justify-content: center; align-items: center; gap: 1.6rem;
}
.tier-row .logo-cell {
  background: transparent;
  border: none; border-radius: 0;
  box-shadow: none;
  min-height: 0; padding: 0 1.6rem;
  display: flex; align-items: center; justify-content: center;
}

/* Top tiers: maximum prominence, vertical hairlines between partners */
.top-tier-logos .logo-cell { padding: 0 1.6rem; }
.top-tier-logos .logo-cell.gold { padding-left: 0; }
.top-tier-logos .logo-cell img { height: 60px; }
.top-tier-logos .bronze-group .logo-cell a { display: flex; justify-content: center; width: 100%; }
.top-tier-logos .bronze-group .logo-cell a img { transform: translateY(-10px); }
.top-tier-logos .logo-cell.gold img { height: 96px; }
.top-tier-logos .logo-cell.silver img { height: 252px; }
.top-tier-logos .logo-cell.big-logo-cell img.big-logo { height: 216px; }

/* Bronze: dense uniform grid (3 across) */
.tier-bronze-row { gap: 2.4rem; }
.tier-bronze-row .logo-cell { padding: 0 1.2rem; }
.tier-bronze-row .logo-cell img { height: 60px; }
.tier-bronze-row .big-logo-cell img.big-logo { height: 72px; }

/* Community: balanced uniform grid — 4 across (2 even rows) desktop, 2 across mobile */
.tier-community-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 3rem;
  align-items: center;
  justify-items: center;
  padding: 1.25rem 0;
}
.tier-community-row .logo-cell {
  min-height: 96px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 0.4rem 0.2rem;
}
.tier-community-row .logo-cell img { height: 44px; }
.tier-community-row .logo-cell img.smaller { height: 36px; }
.tier-community-row .logo-cell img.ultc { height: 60px; }
.tier-community-row .logo-cell img.tch { height: 84px; max-height: 84px; }
@media (max-width: 900px) {
  .tier-community-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 2.5rem; }
}

/* Armstrong & Media: compact rows */
.tier-armstrong-row .logo-cell img, .tier-media-row .logo-cell img { height: 52px; }
.tier-armstrong-row .logo-cell img.fib { height: 120px; }
.tier-armstrong-row .logo-cell img.habitat { height: 56px; }
.tier-armstrong-row .logo-cell img.mnhousing { height: 22px; }
.tier-armstrong-row .logo-cell img.tcrise { height: 50px; }
.tier-media-row .logo-cell img.msr { height: 26px; }

/* Grantors: logo + legal note each */
.tier-grantor-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  align-items: flex-start; gap: 2.6rem 1.6rem;
}
.tier-grantor-row .grantor { display: flex; flex-direction: column; align-items: center; }
.tier-grantor-row .logo-cell {
  padding: 0 0.4rem;
  align-items: center; justify-content: center;
}
.tier-grantor-row .logo-cell img { height: 58px; }
.tier-grantor-row .grantor-note {
  margin-top: 0.9rem;
  max-width: 22ch;
  font-size: 0.82rem; line-height: 1.45;
  color: #6f6d66; text-align: left;
}

/* Hairline dividers between cells removed per sponsorship page request. */

/* Responsive: relax top-tier padding */
@media (max-width: 760px) {
  .sponsor-wall { padding: 2rem 1.2rem; }
  .top-tier-logos .logo-cell { padding: 0 0.9rem; }
  .top-tier-titles, .top-tier-logos { grid-template-columns: 1fr; gap: 0.9rem 1.2rem; }
}

/* Mobile: sponsorship tiers collapse into separate full-width sections so
   each partner reads clearly on a small screen. Labels and their logos are
   interleaved (Gold → Silver → Bronze), the remaining tiers use tidy
   two-column grids, and grantors stack in a single column. */
@media (max-width: 900px) {
  .tier-top-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .top-tier-titles,
  .top-tier-logos { display: contents; }
  .top-tier-titles .tier-title:nth-child(1) { order: 0; }
  .top-tier-logos .logo-cell.gold { order: 1; }
  .top-tier-titles .tier-title:nth-child(2) { order: 2; }
  .top-tier-logos .logo-cell.silver { order: 3; }
  .top-tier-titles .tier-title:nth-child(3) { order: 4; }
  .top-tier-logos .bronze-group {
    order: 5;
    flex-direction: column;
    gap: 1.4rem;
  }
  .top-tier-logos .logo-cell,
  .top-tier-logos .bronze-group { margin-inline: 0; }

  .top-tier-logos .logo-cell.silver img.aarp-logo { height: 126px; }
  .top-tier-logos .logo-cell.big-logo-cell img.big-logo { height: 108px; }
  .top-tier-logos .bronze-group .logo-cell img[alt^="Levitt"] { height: 55px; }

  .tier-community-row,
  .tier-armstrong-row,
  .tier-media-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
  }
  .tier-community-row .logo-cell,
  .tier-armstrong-row .logo-cell,
  .tier-media-row .logo-cell { padding: 0.4rem; border-left: none; justify-self: center; }

  .tier-grantor-row {
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
  }
  .tier-grantor-row .grantor-note { max-width: 34ch; text-align: center; }
}

/* ---- Sponsorship tiers ---- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.6rem;
  margin-top: 2rem;
}
.tier-card {
  border: 1px solid rgba(255,255,255,0.22);
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.tier-card.featured { background: var(--white); color: var(--accent-color); border-color: var(--white); }
.tier-card h4 { font-family: var(--font-type); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; }
.tier-card .tier-price { font-family: var(--font-heading); font-weight: 700; font-size: 2.2rem; line-height: 1; }
.tier-card ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: #cfccc2;
}
.tier-card li::marker { color: var(--brand-gold); }
.tier-card.featured ul { color: #55534c; }
.tier-card.featured li::marker { color: var(--brand-red); }

/* ---- Sponsorship tiers: white pane ---- */
.sponsor-tiers-pane { background: var(--white); color: #2a2a28; }
.sponsor-tiers-pane .kicker { color: var(--brand-red); }
.sponsor-tiers-pane .benefit-list li { color: #55534c; }
.sponsor-tiers-pane .benefit-list li strong { color: #2a2a28; }
.sponsor-tiers-pane .tier-card {
  background: #f7f5ef;
  border-color: #e0ddd4;
  color: #2a2a28;
}
.sponsor-tiers-pane .tier-card h4 { color: #2a2a28; }
.sponsor-tiers-pane .tier-card .tier-price { color: var(--brand-red); }
.sponsor-tiers-pane .tier-card ul { color: #55534c; }
.sponsor-tiers-pane .tier-card.featured {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
}
.sponsor-tiers-pane .tier-card.featured h4 { color: var(--white); }
.sponsor-tiers-pane .tier-card.featured .tier-price { color: var(--brand-gold); }
.sponsor-tiers-pane .tier-card.featured ul { color: rgba(255,255,255,0.9); }
.sponsor-tiers-pane .tier-card.featured li::marker { color: var(--brand-gold); }
.sponsor-tiers-pane .tier-card .btn { background: var(--accent-color); color: var(--white); border-color: var(--accent-color); margin-top: auto; }
.sponsor-tiers-pane .tier-card.featured .btn { background: var(--white); color: var(--brand-red); border-color: var(--white); }

/* ---- Vendors: timeline ---- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.tl-card {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  padding: 1.6rem;
  -webkit-transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.tl-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,148,60,0.5);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}
.tl-step {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-gold);
  color: #20150a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 3px 10px rgba(217,148,60,0.35);
}
.tl-card h3,
.tl-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.tl-card p { margin: 0; color: #cfccc2; font-size: 0.95rem; line-height: 1.5; }
.tl-card .tl-dates {
  font-family: var(--font-type);
  font-size: 0.8rem;
  color: var(--brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

/* ---- Booth pricing (vendors) ---- */
.booths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.booth-card { border: 1px solid rgba(0,0,0,0.12); background: var(--white); padding: 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; }
.booth-card h3 { font-size: 1.2rem; }
.booth-card .price { font-family: var(--font-heading); font-weight: 700; font-size: 1.8rem; }
.booth-card p { color: #55534c; font-size: 0.95rem; }

/* ---- Contact: Drop a Line ---- */
.drop-head { max-width: 62ch; margin-bottom: 2.6rem; }
.drop-head .section-title { white-space: nowrap; }
.drop-lede {
  color: #cfccc2;
  font-size: 1.08rem;
  max-width: 58ch;
  margin-top: 1rem;
  line-height: 1.6;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.contact-card {
  position: relative;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,148,60,0.55);
  background: #1c1c1c;
}
.contact-card .cc-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-gold);
  padding: 0.22rem 0.6rem;
  border: 1px solid rgba(217,148,60,0.45);
  border-radius: 999px;
  margin-bottom: 0.4rem;
}
.contact-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}
.contact-card > p { color: #cfccc2; font-size: 0.95rem; line-height: 1.55; flex: 1 1 auto; }
.contact-card a { width: 100%; font-size: 0.95rem; }
.contact-card a.mail {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  padding: 0.7rem 0.85rem;
  margin-top: 0.6rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-card a.mail:hover { border-color: var(--brand-red); background: rgba(190,56,56,0.12); }
.contact-card a.mail span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-gold);
}
.contact-card a.mail strong { color: var(--white); font-weight: 600; word-break: break-word; }
.contact-card a.tel {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(190,56,56,0.5);
  border-radius: 8px;
  background: rgba(190,56,56,0.12);
  margin-top: 0.6rem;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-card a.tel:hover { background: var(--brand-red); border-color: var(--brand-red); }

/* ---- Forms ---- */
.form-wrap { background: var(--white); border: 1px solid rgba(0,0,0,0.1); padding: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.2); background: var(--background-color);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--foreground-color);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.check-line { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: #55534c; }

/* ---- Responsive ----- */
@media (max-width: 1024px) {
  .artist-grid { grid-template-columns: repeat(3, 1fr); }
  .artist-list { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission { grid-template-columns: 1fr; }
  .roles { grid-template-columns: repeat(2, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .booths { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-single { grid-template-columns: minmax(0, 260px) minmax(0, 1fr); }
  .artist-single .facts { width: auto; max-width: 100%; }
  .artist-single .fact-row { width: 100%; max-width: 100%; flex-wrap: wrap; gap: 0.9rem 1rem; }
  .artist-single .fact-row .btn { flex: 0 1 auto; white-space: normal; }
  .artist-single .facts li { flex-direction: row; flex-wrap: wrap; gap: 0.8rem; white-space: normal; }
  .artist-feature { grid-template-columns: 220px 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 768px) {
  .header-nav { gap: 18px; }
  .header-actions .hdr-icon:not(.menu-toggle) { width: 34px; height: 34px; }
  .submenu { min-width: 180px; padding: 18px 20px; top: 64px; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0; background: var(--accent-color); border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; padding: 1rem var(--gutter); gap: 4px; }
  .nav a { display: block; padding: 12px 0; }
  .nav .has-dropdown { width: 100%; }
  .nav .has-dropdown > a::before { content: '+'; color: var(--brand-gold); transform: translateY(-50%); }
  .nav .has-dropdown.open > a::before { content: '−'; }
  .nav .dropdown {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 0.5rem 1rem;
    border: none;
    box-shadow: none;
    border-left: 2px solid rgba(255,255,255,0.18);
    margin-left: 0.25rem;
  }
  .nav .has-dropdown.open .dropdown,
  .nav .has-dropdown:focus-within .dropdown { display: block; }
  .nav .dropdown li { width: 100%; }
  .nav .dropdown a { padding: 8px 12px; }
  .days { grid-template-columns: 1fr; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-list { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.2rem 0; }
  .schedule-item .tag { justify-self: start; }
  .event { grid-template-columns: 1fr; text-align: left; }
  .event .time-col { display: flex; gap: 12px; align-items: baseline; text-align: left; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding-right: 0; padding-bottom: 0.8rem; }
  .press-wrap { grid-template-columns: 1fr; }
  .artist-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .perks { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .tiers { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .booths { grid-template-columns: 1fr; }
  .artist-single { grid-template-columns: minmax(0, 1fr); }
  .artist-single h1 { font-size: 2.4rem; }
  .artist-single .facts { width: auto; max-width: 100%; }
  .artist-single .fact-row { width: 100%; max-width: 100%; flex-wrap: wrap; gap: 0.9rem 1rem; }
  .artist-single .fact-row .btn { flex: 0 1 auto; white-space: normal; }
  .artist-single .facts li { flex-direction: row; flex-wrap: wrap; gap: 0.8rem; white-space: normal; }
  .drop-head .section-title { white-space: normal; }
  .form-row { grid-template-columns: 1fr; }

  /* Full-width interactive elements on mobile */
  .header-inner { gap: 16px; }
  .newsletter form { flex-direction: column; gap: 12px; margin-top: 1.6rem; }
  .nl-field { width: 100%; }

  /* Hero actions stack full-width */
  .hero-actions .btn, .hero-actions a.btn,
  p > .btn { width: 100%; text-align: center; box-sizing: border-box; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn + .btn { margin-left: 0; }
  .hero-actions .btn, .hero-actions a.btn { display: block; }

  /* Featured-artist inline button row stacks on mobile */
  .artist-feature p[style*="display:flex"] { flex-direction: column; align-items: stretch; }
  .artist-feature p[style*="display:flex"] .btn { width: 100%; }

  .page-hero { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; align-items: center; text-align: center; }
  .countdown-row .cd-box { flex: 0 1 calc(50% - 9px); }

  .logo-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .sponsor-tiers-row { grid-template-columns: 1fr; }
  .community-logos { grid-template-columns: repeat(4, 1fr); }
  .armstrong-logos, .media-logos { grid-template-columns: repeat(2, 1fr); }
  .grantor-grid { grid-template-columns: 1fr 1fr; }

  /* Page-local forms become fluid */
  .form-wrap { padding: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Artist cards */
  .artist-grid { gap: 1.2rem; }
  .artist-card h3 { font-size: 1.15rem; }
  .role-card, .perk, .booth-card, .tier-card, .tl-card { padding: 1.3rem; }

  /* Gallery collapses to two columns */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
}

/* ---- Small phones (< 480px) ---- */
@media (max-width: 480px) {
  /* Everything stacks to a single column */
  .artist-grid { grid-template-columns: 1fr; }
  .roles, .perks, .timeline { grid-template-columns: 1fr; }

  /* Tighter vertical rhythm so key content stays on screen */
  .hero { padding: 4.5rem 0; }
  .page-hero { padding: 4rem 0; }
  .section { padding: 3.75rem 0; }

  /* Countdown fills width nicely */
  .countdown-row { gap: 10px; }
  .countdown-row .cd-box { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 12px 12px; }
  .countdown-row .cd-box .num { font-size: 1.7rem; }

  /* Header/logo sizing */
  .header-inner { min-height: 64px; gap: 12px; }
  .nav { top: 64px; }
  .brand img { height: 40px; }
  .header-nav { gap: 10px; }
  .header-nav .nav-label { font-size: 12px; }
  .header-nav .nav-toggle { gap: 2px; }
  .header-actions .hdr-icon[href] { display: none; }

  /* Buttons fully fluid */
  .btn { width: 100%; text-align: center; }
  .btn-light, .btn-outline { width: 100%; }
  p .btn, .tier-card .btn, .contact-card .btn { width: 100%; }

  /* Inline Flex CTA rows (e.g. featured artist buttons) stack */
  .artist-feature p[style*="display:flex"] { flex-direction: column; }

  /* Sponsor logos */
  .logo-grid { grid-template-columns: 1fr; }
  .logo-cell { min-height: 96px; }
  .community-logos { grid-template-columns: repeat(2, 1fr); }
  .armstrong-logos, .media-logos { grid-template-columns: 1fr; }
  .grantor-grid { grid-template-columns: 1fr; }

  /* Forms */
  .form-wrap { padding: 1.25rem; }

  /* Section titles a touch smaller */
  .display { font-size: clamp(2.2rem, 12vw, 3rem); }
  .section-title { font-size: 1.7rem; }

  /* Schedule / event rows breathe */
  .schedule-item { padding: 1.1rem 0; }
  .event { padding: 1.2rem; }

  /* Gallery to a single column */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .photo-band-img { aspect-ratio: 4 / 3; }
}

/* =========================================================
   Mobile header: Cedar Creek hamburger + dropdown panel
   (max-width: 900px). A three-bar hamburger morphs to an X;
   a fixed panel drops below the sticky header bar with a
   search field and the full nav as an accordion list. The
   desktop header-nav is untouched and simply hides below the
   breakpoint. Values mirror cedarcreekcases.com's mobile
   design system; colors/fonts stay on SAJF brand tokens.
   ========================================================= */
html.mobileNav__open { overflow: hidden; }

.menu-toggle { display: none; }
.nav-drawer-foot { display: none; }
.header__mobileNav-wrapper { display: none; }

/* Three-bar hamburger (Cedar Creek .menuBar system). */
.menuBar__container {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
}
.menuBar {
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
  width: 100%;
  background-color: currentColor;
  border-radius: 4px;
  will-change: transform, opacity;
  -webkit-transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
}
.menuBar:first-child { top: 0; margin-top: 0 !important; }
.menuBar:last-child { top: auto; bottom: 0; margin-top: 0; }
.site-header.nav__active .menuBar:first-child {
  -webkit-transform: rotate(45deg) scaleX(1.05);
  transform: rotate(45deg) scaleX(1.05);
  top: 7px;
}
.site-header.nav__active .menuBar:nth-child(2) { opacity: 0; }
.site-header.nav__active .menuBar:last-child {
  -webkit-transform: rotate(-45deg) scaleX(1.05);
  transform: rotate(-45deg) scaleX(1.05);
  bottom: 7px;
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }

  .hero .display .hero-break { display: block; }
  .hero .kicker .kicker-break { display: block; }

  /* Store masthead: h1 two left-aligned lines on mobile, and scale
     the first line to stay on a single line. */
  .merch-hero h1 { font-size: clamp(1.8rem, 8vw, 2.9rem); }
  .merch-jz { display: block; }

  /* Mobile-only sizing of the full-screen search overlay so the
     field+button sit together within the overlay's width. */
  .search-form .btn {
    padding: 0.9rem 0.95rem;
  }
  .search-overlay { padding-top: 8vh; }
  .search-box { width: min(560px, 100%); }

  /* Collapse the 3-column header grid to 2 so the hamburger
     reaches the true right edge of the viewport on mobile. */
  .header-inner { grid-template-columns: 1fr auto; gap: 12px; }

  /* Bright corner button: black filled with a fine white ring so
     the nav toggle stands apart from the dark bar on every page. */
  .header-actions .menu-toggle {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .header-actions .menu-toggle:hover,
  .header-actions .menu-toggle:focus-visible {
    background: var(--accent-color);
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .site-header.nav__active .header-actions .menu-toggle {
    background: var(--accent-color);
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .header-actions .menu-toggle:active { -webkit-transform: scale(0.92); transform: scale(0.92); }
  .header-actions .menu-toggle:focus-visible { outline: 3px solid #ffffff; outline-offset: 2px; }

  /* Desktop nav hidden on mobile; the panel replaces it. */
  .header-nav { display: none; }

  /* Fixed panel below the sticky header bar (Cedar Creek
     .header__mobileNav-wrapper system). */
  .header__mobileNav-wrapper {
    background:
      radial-gradient(circle at 15% 5%, rgba(179,113,36,0.18), transparent 42%),
      radial-gradient(circle at 90% 15%, rgba(80,48,72,0.4), transparent 48%),
      var(--accent-color);
    display: none;
    left: 0;
    height: calc(100vh - 64px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 100px;
    position: fixed;
    top: 64px;
    width: 100%;
    z-index: 9999;
  }
  .site-header.nav__active .header__mobileNav-wrapper { display: block; }
  .admin-bar .header__mobileNav-wrapper {
    top: calc(32px + 64px);
    height: calc(100vh - 32px - 64px);
  }

  /* Search row at the top of the panel (glass pill + gold icon). */
  .header__searchForm {
    align-items: center;
    display: flex;
    gap: 8px;
    margin: 8px 24px 0;
    height: 54px;
  }
  #searchQuery__mobile {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
    color: var(--white);
    line-height: 1;
    padding: 0 20px;
    font-size: 16px;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 52px;
    outline: none;
    -webkit-transition: background .2s ease, border-color .2s ease, color .2s ease;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
  }
  #searchQuery__mobile::-webkit-input-placeholder { color: rgba(255,255,255,0.5); }
  #searchQuery__mobile::-moz-placeholder { color: rgba(255,255,255,0.5); }
  #searchQuery__mobile:-ms-input-placeholder { color: rgba(255,255,255,0.5); }
  #searchQuery__mobile::placeholder { color: rgba(255,255,255,0.5); }
  #searchQuery__mobile:focus {
    background: #ffffff;
    border-color: rgba(255,255,255,0.9);
    color: #1b1b1b;
    box-shadow: none;
  }
  #searchQuery__mobile:focus::-webkit-input-placeholder { color: rgba(0,0,0,0.42); }
  #searchQuery__mobile:focus::-moz-placeholder { color: rgba(0,0,0,0.42); }
  #searchQuery__mobile:focus:-ms-input-placeholder { color: rgba(0,0,0,0.42); }
  #searchQuery__mobile:focus::placeholder { color: rgba(0,0,0,0.42); }
  #searchQuery__mobile::-webkit-search-cancel-button { -webkit-appearance: none; }
  .header__searchToggle--mobile {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: var(--brand-gold);
    color: #20150a;
    padding: 0;
    cursor: pointer;
    -webkit-transition: background .2s ease, color .2s ease, transform .2s ease;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .header__searchToggle--mobile:hover,
  .header__searchToggle--mobile:focus-visible {
    background: var(--brand-red);
    color: #ffffff;
  }
  .header__searchToggle--mobile:active { -webkit-transform: scale(0.92); transform: scale(0.92); }
  .header__searchToggle--mobile svg { display: block; width: 14px; height: 14px; }

  /* Accordion nav list (Cedar Creek .primaryNav--mobile system). */
  .primaryNav--mobile {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    text-transform: uppercase;
  }
  .primaryNav--mobile > li.nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 0 24px;
  }
  .primaryNav--mobile > li.nav-item:last-child { border-bottom: none; }
  .primaryNav--mobile li.nav-item {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .primaryNav--mobile .nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    height: 55px;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  .primaryNav--mobile a.nav-toggle { text-decoration: none; }
  .primaryNav--mobile .nav-toggle { color: var(--white);
    background: transparent;
  }
  .primaryNav--mobile > li.nav-item > .nav-toggle {
    font-weight: 700;
    font-size: 0;
  }
  .primaryNav--mobile .nav-label {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0.04em;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
  }
  .primaryNav--mobile > li.nav-item > .nav-toggle .nav-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }
  .primaryNav--mobile > li.nav-item > .nav-toggle:hover .nav-label,
  .primaryNav--mobile > li.nav-item.open > .nav-toggle .nav-label { color: var(--brand-gold); }

  /* Leaf items get a chevron at the right edge. */
  .primaryNav--mobile > li.nav-item > a.nav-toggle::after {
    content: "\203A";
    font-size: 24px;
    line-height: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: 1px 0 0;
    -webkit-transition: .5s ease all;
    transition: .5s ease all;
    color: var(--brand-gold);
  }

  /* Parent items get a plus/minus made from two bars. */
  .primaryNav--mobile > li.nav-item > button.nav-toggle::before,
  .primaryNav--mobile > li.nav-item > button.nav-toggle::after {
    background: var(--brand-gold);
    content: "";
    height: 2px;
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
    width: 12px;
  }
  .primaryNav--mobile > li.nav-item > button.nav-toggle::before {
    -webkit-transform: translate(0, -50%) rotate(90deg);
    -ms-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
  }
  .primaryNav--mobile > li.nav-item.open > button.nav-toggle::after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  /* Hide the desktop caret inside the panel; bars replace it. */
  .primaryNav--mobile .nav-toggle .nav-caret { display: none; }

  /* Submenus are accordion drawers revealed inside the panel. */
  .primaryNav--mobile .submenu {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    min-width: 0;
    width: auto;
    margin: 2px 0 12px;
    padding: 6px 0;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 14px 30px -18px rgba(0,0,0,0.7);
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: none;
  }
  .primaryNav--mobile li.nav-item.open .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .primaryNav--mobile .submenu ul {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
  }
  .primaryNav--mobile .submenu ul a {
    display: block;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 12px 16px 12px 0;
    font-size: 14px;
    letter-spacing: 0.01em;
    line-height: 1.35;
    white-space: normal;
    color: #d8d5cc;
    border-radius: 8px;
    -webkit-transition: color .18s ease, background .18s ease;
    transition: color .18s ease, background .18s ease;
  }
  .primaryNav--mobile .submenu ul a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.09);
  }
  .primaryNav--mobile .submenu ul a:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: -2px;
  }
  .primaryNav--mobile .submenu ul a.active {
    color: var(--brand-gold);
  }
  .primaryNav--mobile .submenu ul a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    border-radius: 3px;
    background: var(--brand-gold);
  }

  /* FAQs stays mixed-case in the hamburger submenu. */
  .primaryNav--mobile .submenu ul a[href$="faq.html"],
  .primaryNav--mobile .submenu ul a[href$="/faq/"] {
    text-transform: none;
  }

  /* Drawer footer: social links on a single row. */
  .nav-drawer-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 28px 24px 0;
    padding: 20px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .nav-drawer-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand-gold);
    margin: 0;
  }
  .nav-drawer-social {
    display: flex;
    gap: 8px;
  }
  .nav-drawer-social .hdr-icon {
    width: 40px;
    height: 40px;
  }

  /* Slimmer logo bar on mobile. */
  .header-inner { min-height: 64px; gap: 12px; }
  .brand img { height: 46px; }

  /* Slim the header search trigger on mobile (halved width;
     desktop header is untouched). */
  .header-actions .hdr-icon.search-toggle {
    width: 20px;
    height: 38px;
    border-radius: 10px;
  }

  /* Social icons live in the drawer footer now. */
  .header-actions .hdr-icon[href] { display: none; }
}

@media (max-width: 480px) {
  .header-inner { min-height: 60px; }
  .brand img { height: 40px; }
  .header-actions .hdr-icon:not(.menu-toggle) { width: 40px; height: 40px; }
  .header-actions .menu-toggle { width: 40px; height: 40px; }
  .header-actions .hdr-icon.search-toggle { width: 20px; height: 40px; }
  .search-overlay .search-form .btn { width: auto; }
  .header__mobileNav-wrapper {
    top: 60px;
    height: calc(100vh - 60px);
    padding: 6px 0 90px;
  }
  .admin-bar .header__mobileNav-wrapper {
    top: calc(32px + 60px);
    height: calc(100vh - 32px - 60px);
  }
}

/* =========================================================
   Masthead background images (top-level pages) with high
   contrast text. Each page-hero gets a modifier class below.
   ========================================================= */
.has-masthead-img {
  position: relative;
  background-size: cover;
  background-position: center;
}
.has-masthead-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0,0,0,0.86) 0%,
    rgba(0,0,0,0.7) 45%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.has-masthead-img .container { position: relative; z-index: 1; }
.has-masthead-img h1 { text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
.mast-about    { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/selby_audience.webp'); }
.mast-artists  { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2024/08/2509_JazzFest-2025_1194-scaled.webp'); }
.mast-schedule { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2024/09/MN-State-Band-1024x576.webp'); }
.mast-sponsors { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/official_001.webp'); }
.mast-vendors  { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/Copy-of-SAJF25372-3-1024x683.webp'); }

/* ---- Legal pages (privacy / terms / choices / notices) ---- */
.legal { max-width: 68ch; }
.legal .legal-intro {
  font-size: 1.05rem; line-height: 1.6; color: #e6e2d8;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 1.5rem; margin-bottom: 2rem;
}
.legal h2 {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700;
  color: var(--white); margin: 2rem 0 0.7rem;
}
.legal p { color: #c6c2b8; line-height: 1.65; margin-bottom: 1rem; }
.legal a { color: var(--brand-gold); }
.legal ul.legal-list { color: #c6c2b8; line-height: 1.65; margin: 0 0 1.2rem 1.4rem; }
.legal ul.legal-list li { margin-bottom: 0.5rem; }

/* ---- WordPress editor content (block editor output) ---- */
.page-content { max-width: 72ch; }
.page-content > *:first-child { margin-top: 0; }
.page-content h1, .page-content h2, .page-content h3, .page-content h4 {
  font-family: var(--font-heading); font-weight: 700; color: var(--white);
  margin: 2rem 0 0.7rem;
}
.page-content h1 { font-size: 2rem; }
.page-content h2 { font-size: 1.5rem; }
.page-content h3 { font-size: 1.25rem; }
.page-content p, .page-content li { color: #c6c2b8; line-height: 1.65; }
.page-content a { color: var(--brand-gold); text-decoration: underline; }
.page-content img { max-width: 100%; height: auto; }
.page-content .wp-block-image img { border-radius: 12px; }
.page-content ul, .page-content ol { padding-left: 1.4rem; margin: 0 0 1.2rem; }
.page-content .wp-block-button { margin: 1.5rem 0; }
.page-content .wp-block-button a {
  display: inline-block; padding: 0.9rem 1.9rem; border-radius: 999px;
  background: var(--brand-red); color: #fff; text-decoration: none; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem;
  border: 2px solid var(--brand-red);
}
.page-content .wp-block-button a:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); }

/* Post / archive listing fallback */
.post-entry {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 0 0 1.75rem; margin: 0 0 2rem;
}
.post-entry .entry-title { margin: 0 0 0.6rem; }
.post-entry .entry-title a { color: var(--white); text-decoration: none; }
.post-entry .entry-title a:hover { color: var(--brand-gold); }
.post-entry .entry-meta, .post-entry .entry-meta a { font-size: 0.85rem; color: #8f8b81; }
.pagination { margin: 2rem 0 0; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pagination .page-numbers {
  display: inline-block; padding: 0.5rem 0.85rem; border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px; color: #d6d2c8; text-decoration: none; font-size: 0.9rem;
}
.pagination .page-numbers.current { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }

/* WordPress search form inside content/404 the search overlay relies on #searchForm which
   get_search_form() outputs; keep the overlay layout intact outside of .page-content. */
.page-content form.search-form .search-box { max-width: 100%; }
.mast-volunteer{ background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/WW052-scaled.webp'); }
.mast-contact  { background-image: url('https://selbyavejazzfest.org/wp-content/uploads/2026/05/DFhd1.webp'); }

/* =========================================================
   Back-to-top button
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, visibility 0.3s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--brand-red-dark); }
.back-to-top:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top.visible { transition: none; transform: none; }
}

/* =========================================================
   Accessibility toolbar (reading-disability support)
   ========================================================= */
.a11y-bar-wrap { position: fixed; left: 18px; bottom: 18px; z-index: 998; }
.a11y-toggle {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--brand-gold);
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.a11y-toggle:hover { background: #1c1c1c; }
.a11y-toggle:focus-visible,
.a11y-btn:focus-visible { outline: 3px solid var(--brand-red); outline-offset: 2px; }
.a11y-panel {
  position: absolute;
  left: 0;
  bottom: 62px;
  width: 240px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.a11y-panel.open { display: flex; }
.a11y-panel h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-gold);
  margin-bottom: 0.2rem;
}
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.a11y-row label {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}
.a11y-btn {
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: var(--white);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.a11y-btn:hover { border-color: var(--brand-red); }
.a11y-btn.active { background: var(--brand-red); border-color: var(--brand-red); }
/* ============================================================
   Flash Mob Band page
   ============================================================ */
/* Masthead CTA inherits the site-wide pill .btn */
.page-hero .mast-btn {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
}

/* Intro split with image */
.fmb-intro {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: center;
}
.fmb-intro img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}
.fmb-intro p { color: #4a473f; margin-bottom: 1rem; }
@media (max-width: 980px) {
  .fmb-intro { grid-template-columns: 1fr; gap: 2rem; }
}

/* When & Where facts */
.fmb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.fmb-facts {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  max-width: 58ch;
  margin-bottom: 0;
}
.fmb-facts li {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  color: #e6e3da;
  font-size: 1.05rem;
}
.fmb-facts strong { color: var(--white); }
.fmb-facts em { color: #b9b5aa; font-size: 0.92rem; display: block; margin-top: 0.25rem; }
.fmb-cta {
  align-self: stretch;
  display: flex;
  align-items: center;
  color: #d6d3ca;
  font-family: var(--font-type);
  font-size: 1.2rem;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  border-left: 4px solid var(--brand-gold);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
}
.fmb-cta.flash-quote {
  animation: fmb-flash 4s ease-in-out infinite;
}
@keyframes fmb-flash {
  0%, 82% { opacity: 1; }
  86% { opacity: 0.25; }
  90% { opacity: 1; }
  94% { opacity: 0.25; }
  100% { opacity: 1; }
}
@media (max-width: 900px) {
  .fmb-split { grid-template-columns: 1fr; gap: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .fmb-cta.flash-quote { animation: none; }
}

/* Three Simple Steps */
.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.steps li {
  counter-increment: step;
  display: block;
  padding: 1.2rem 1.3rem;
  background: var(--white);
  border: 1px solid #e5e3dc;
  border-radius: 14px;
  color: #4a473f;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-type);
  color: var(--brand-red);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.steps strong { color: var(--accent-color); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
}

/* Sheet-music controls */
.sheet-controls { margin-bottom: 1.6rem; max-width: 720px; }
#sheetSearch {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
#sheetSearch::placeholder { color: #b9b5aa; }
#sheetSearch:focus { outline: 2px solid var(--brand-gold); outline-offset: 2px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #e6e3da;
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.chip:hover { border-color: var(--brand-gold); color: var(--white); }
.chip.active {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--accent-color);
}

/* Sheet-music grid */
.sheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.sheet-card {
  display: block;
  padding: 1.6rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  text-align: center;
  color: var(--white);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.sheet-card:hover, .sheet-card:focus-visible {
  border-color: var(--brand-gold);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}
.sheet-card span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.sheet-card small {
  color: var(--brand-gold);
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}
.sheet-card[hidden] { display: none; }
.sheet-empty {
  color: #b9b5aa;
  margin-top: 1.2rem;
}

/* Got Questions? full-width pane */
.fmb-questions {
  width: 100%;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  text-align: center;
}
.fmb-questions .section-title { max-width: none; }
.fmb-questions p {
  max-width: none;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

/* Text scaling applied to html */
.a11y-lg { font-size: 118%; }
.a11y-xlg { font-size: 132%; }
/* Reading-mode easing applied to body text blocks */
body.a11y-read p,
body.a11y-read li,
body.a11y-read .hero-sub,
body.a11y-read .drop-lede,
body.a11y-read .tier-card p,
body.a11y-read .acc-content p {
  font-size: 1.28em;
  line-height: 1.85;
  letter-spacing: 0.01em;
  max-width: 66ch;
}
/* Dyslexia-friendly type */
body.a11y-dys {
  font-family: "Comic Sans MS", "Comic Sans", "Trebuchet MS", sans-serif;
}
body.a11y-dys p,
body.a11y-dys li,
body.a11y-dys .hero-sub { letter-spacing: 0.04em; word-spacing: 0.16em; line-height: 1.7; }
/* High contrast */
body.a11y-hc {
  background: #000;
  color: #fff;
}
body.a11y-hc .section.grey,
body.a11y-hc .section.cream { background: #0d0d0d; color: #fff; }
body.a11y-hc p,
body.a11y-hc li,
body.a11y-hc .tier-card p,
body.a11y-hc .acc-content p,
body.a11y-hc .hero-sub { color: #fff !important; }
body.a11y-hc a { color: #ffd166; text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .a11y-panel, .back-to-top { transition: none; }
}
/* Skip link (keyboard users) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--brand-red);
  color: #fff;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Visually hidden text that remains available to assistive tech. */
.accessible-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* =========================================================
   Quick facts strip (artists page) — at-a-glance bar
   ========================================================= */
.facts-strip { padding: 0; }
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.12);
}
.fact {
  background: var(--background-color);
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fact-label {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--brand-red);
}
.fact-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--foreground-color);
}
.fact-sub { font-size: 0.86rem; color: #6b675f; }

/* =========================================================
   Callout cards (artists page — Flash Mob / Masterclass)
   ========================================================= */
.callout-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; margin-top: 1rem; }
.callout-card {
  border: 1px solid rgba(0,0,0,0.14);
  background: var(--white);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}
.callout-tag {
  font-family: var(--font-type);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--brand-gold);
}
.callout-card h3 { font-size: 2rem; margin: 0; }
.callout-card p { color: #55534c; }
.callout-card .btn { align-self: flex-start; margin-top: auto; }
.callout-card .arrow {
  margin-top: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-red);
  font-size: 1.1rem;
}

/* Three-across mission grid (strategic alignment page) */
.callout-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Keep the three mission card headers on a single line */
.callout-grid-3 .callout-card h3 {
  white-space: nowrap;
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
}

/* Where three tight columns can't hold the single-line headers, let them
   wrap and drop to two columns so nothing spills past the viewport. */
@media (max-width: 1000px) {
  .callout-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .callout-grid-3 .callout-card h3 { white-space: normal; }
}

/* Contrast fix: dark heading text inside white callout cards on dark sections */
.section.black .callout-card h3,
.section.dark .callout-card h3 { color: var(--foreground-color); }

/* =========================================================
   Presenter band (artists page — Walker|West)
   ========================================================= */
.presenter-band { text-align: center; }
.presenter-inner { display: flex; flex-direction: column; align-items: center; }
.presenter-band .section-title { margin-bottom: 0.2rem; }
.presenter-cta { justify-content: center; }

/* =========================================================
   Community quote ticker (home page)
   ========================================================= */
.quotes {
  position: relative;
  max-width: 80ch;
  margin: 1.5rem auto 0;
  min-height: 230px;
}
.quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  margin: 0;
  padding: 2.2rem 2.6rem;
  border-left: 4px solid var(--brand-gold);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.quote.is-active { opacity: 1; }
.quote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--foreground-color);
  margin: 0 0 0.9rem;
}
.quote footer {
  font-family: var(--font-type);
  font-size: 0.78rem;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* =========================================================
   Responsive: facts, callouts, quotes
   ========================================================= */
@media (max-width: 900px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .callout-grid { grid-template-columns: 1fr; }
  .callout-grid-3 .callout-card h3 { white-space: normal; }
}
@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; }
  .quotes { min-height: 300px; }
  .quote { padding: 1.8rem 1.4rem; }
}

/* ============================================================
   FAQ page — search, category tabs, accordions, badges, CTA
   ============================================================ */
.faq-badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem;
}
.faq-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-type); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.72rem; color: var(--brand-gold);
  border: 1px solid rgba(217,148,60,0.45); background: rgba(217,148,60,0.08);
  border-radius: 999px; padding: 0.4rem 0.8rem;
}
.faq-controls { margin: 1.8rem 0 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.faq-search {
  display: flex; align-items: center; gap: 0.7rem;
  background: #fff; border: 1px solid #ece9e0; border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1.1rem; color: #6a675e; max-width: 520px;
}
.faq-search svg { flex: 0 0 auto; }
.faq-search input {
  flex: 1 1 auto; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 0.95rem; color: var(--foreground-color); padding: 0.55rem 0;
}
.faq-search:focus-within { border-color: var(--brand-gold); box-shadow: 0 0 0 3px rgba(217,148,60,0.15); }
.faq-search input::placeholder { color: #a9a49a; }

.faq-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.faq-tab {
  font-family: var(--font-type); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.72rem; color: #d6d2c8; background: none;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px;
  padding: 0.45rem 0.95rem; cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.faq-tab:hover { border-color: var(--brand-gold); color: var(--white); }
.faq-tab.is-active { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }

.faq-list { margin-top: 0.5rem; }
.faq-category { margin-bottom: 1.6rem; }
.faq-cat-title {
  font-family: var(--font-type); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.82rem; color: var(--brand-gold); margin: 0 0 0.4rem; padding-top: 1rem;
}
.faq-category[hidden] { display: none; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0.2rem; font-family: var(--font-heading); font-size: 1.05rem; color: var(--white);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: 0 0 auto; font-size: 1.4rem; font-weight: 600; color: var(--brand-gold); line-height: 1;
  transition: transform .2s;
}
.faq-item[open] summary { color: var(--brand-gold); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { text-decoration: underline; text-underline-offset: 4px; }

.faq-answer { padding: 0 0.2rem 1.5rem; color: #cfccc2; line-height: 1.65; }
.faq-answer p { color: #cfccc2; line-height: 1.65; margin-bottom: 0.75rem; max-width: 72ch; }
.faq-answer strong { color: var(--white); }
.faq-answer a { color: var(--brand-gold); text-decoration: underline; }
.faq-answer ul, .faq-answer ol { margin: 0 0 0.9rem 1.3rem; color: #cfccc2; }
.faq-answer li { margin-bottom: 0.35rem; }

.faq-empty { text-align: center; color: #9c988e; padding: 2rem 0; }

.faq-cta { text-align: center; }
.faq-cta p { color: #6a675e; max-width: 60ch; margin: 0.6rem auto 0; line-height: 1.6; }
.faq-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }

@media (max-width: 560px) {
  .faq-badge { font-size: 0.66rem; }
  .faq-search { max-width: 100%; }
}

/* ============================================================
   Merch page — hero, product grid, variant selectors, cart drawer
   ============================================================ */
.merch-hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% 0%, #2a1c1c 0%, var(--accent-color) 60%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}
.merch-hero-inner { position: relative; z-index: 2; max-width: 62rem; }
.merch-hero .kicker { color: var(--brand-gold); margin-bottom: 1.1rem; }
.merch-hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.9rem); line-height: 1.02; letter-spacing: -0.02em;
}
.merch-hero h1 .merch-title { white-space: nowrap; }
.merch-jz { display: block; color: var(--brand-gold); font-family: var(--font-juno); font-weight: 500; }
.merch-hero p { color: #d8d1c6; max-width: 52ch; margin-top: 1.1rem; font-size: 1.05rem; line-height: 1.55; }
.merch-proceeds {
  margin-top: 1.8rem; display: inline-flex; align-items: center; gap: 0.75rem;
  border: 1px solid rgba(217,148,60,.45); background: rgba(217,148,60,.12);
  padding: 0.6rem 1.15rem; border-radius: 100px; font-size: 0.9rem;
}
.merch-proceeds .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand-gold); flex: none; }
.merch-proceeds strong { color: #fff; }

.merch-cat { background: var(--brand-gold-soft); padding: 3.5rem 0 4.5rem; }
.merch-cathead { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.merch-cathead .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.merch-count { font-family: var(--font-type); color: #8a8072; font-size: 0.85rem; }

.merch-ship-dyn {
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.86rem;
  background: #fff; color: #6b4a13; border: 1px solid #e6cf9e;
  border-radius: 10px; padding: 0.6rem 0.85rem; margin-bottom: 1.8rem;
}
.merch-ship-dyn svg { flex: none; color: var(--brand-red); }

.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.5rem; }
.merch-card {
  background: var(--white); border: 1px solid #ece4d6; border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .25s ease, transform .25s ease;
}
.merch-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(23,20,18,.12); }
.merch-media {
  position: relative; aspect-ratio: 1 / 1; background: #f4efe6; display: grid; place-items: center; padding: 1.4rem;
}
.merch-tag {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  background: var(--brand-red); color: #fff; font-family: var(--font-type);
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.28rem 0.6rem; border-radius: 4px;
}
.merch-badge {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
  background: var(--brand-gold); color: #2b1705; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 0.28rem 0.55rem; border-radius: 4px;
}
.merch-art { width: 100%; max-width: 150px; height: auto; }
img.merch-art { max-width: 100%; height: 100%; object-fit: contain; }
.merch-art .pa-red { fill: var(--brand-red); }
.merch-art .pa-ink { fill: var(--accent-color); }
.merch-art .pa-gold { fill: var(--brand-gold); }

.merch-info { padding: 1.1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.merch-info h3 { font-family: var(--font-heading); font-size: 1.08rem; font-weight: 700; line-height: 1.2; color: var(--foreground-color); margin: 0; }
.merch-price { display: flex; align-items: baseline; gap: 0.55rem; }
.merch-now { font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; color: var(--foreground-color); }
.merch-was { color: #a89c8b; text-decoration: line-through; font-size: 0.92rem; }

.merch-opts { display: flex; flex-direction: column; gap: 0.55rem; }
.merch-lbl { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8a8072; font-weight: 600; }
.merch-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.merch-chip {
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
  border: 1px solid #ddd2bf; background: #fff; color: #2a2a28; border-radius: 6px;
  padding: 0.28rem 0.6rem; cursor: pointer; transition: .15s;
}
.merch-chip:hover { border-color: var(--brand-red); color: var(--brand-red); }
.merch-chip.is-active { background: var(--accent-color); color: #fff; border-color: var(--accent-color); }
.merch-swatches { display: flex; gap: 0.4rem; }
.merch-sw {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff;
  box-shadow: 0 0 0 1px #cfc4b0; cursor: pointer; transition: transform .15s; padding: 0;
}
.merch-sw:hover { transform: scale(1.12); }
.merch-sw.is-active { box-shadow: 0 0 0 2px var(--brand-red); }

.merch-ctas { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.merch-btn {
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.02em;
  border-radius: 9px; padding: 0.72rem 0.9rem; font-size: 0.92rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.45rem; transition: .15s;
}
.merch-btn-add { background: var(--brand-red); color: #fff; border: 2px solid var(--brand-red); }
.merch-btn-add:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); }
.merch-btn-pre { background: var(--accent-color); color: #fff; border: 2px solid var(--accent-color); }
.merch-btn-pre:hover { background: #2a2420; }
.merch-pill { font-size: 0.62rem; background: var(--brand-gold); color: #2b1705; padding: 0.16rem 0.4rem; border-radius: 3px; letter-spacing: 0.05em; font-weight: 800; }

/* Cart FAB */
.merch-fab {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 60;
  background: var(--brand-red); color: #fff; border: none;
  border-radius: 14px; box-shadow: 0 10px 24px rgba(190,56,56,.4);
  padding: 0.95rem 1.1rem; cursor: pointer; font-family: var(--font-heading);
  font-weight: 700; display: inline-flex; align-items: center; gap: 0.6rem;
}
.merch-fab-count {
  background: #fff; color: var(--brand-red); font-size: 0.78rem; font-weight: 800;
  min-width: 20px; height: 20px; border-radius: 10px; display: grid; place-items: center;
}

/* Cart drawer */
.merch-backdrop {
  position: fixed; inset: 0; background: rgba(16,13,13,.55); z-index: 1000;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.merch-backdrop.is-open { opacity: 1; visibility: visible; }
.merch-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100vw);
  background: var(--brand-gold-soft); color: var(--foreground-color); z-index: 1001;
  transform: translateX(105%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column; box-shadow: -12px 0 34px rgba(0,0,0,.25);
}
.merch-drawer.is-open { transform: translateX(0); }
.merch-dh {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.3rem; border-bottom: 1px solid #e9dfcd; background: var(--accent-color); color: #fff;
}
.merch-dh h2 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin: 0; }
.merch-x { background: none; border: none; color: var(--brand-gold); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.merch-db { padding: 1.1rem 1.3rem; overflow-y: auto; flex: 1; }
.merch-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.merch-item {
  display: flex; gap: 0.8rem; background: #fff; border: 1px solid #ece4d6;
  border-radius: 12px; padding: 0.7rem; align-items: center;
}
.merch-item-art {
  width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center;
  background: #f0e9dc; border-radius: 8px; overflow: hidden;
}
.merch-item-art svg { max-width: 42px; }
.merch-item-info { flex: 1; min-width: 0; }
.merch-item-info b { font-family: var(--font-heading); font-size: 0.92rem; display: block; color: var(--foreground-color); }
.merch-item-info > span { display: block; font-size: 0.78rem; color: #8a8072; }
.merch-item-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.merch-qty { display: inline-flex; align-items: center; gap: 0.4rem; }
.merch-qty button {
  width: 22px; height: 22px; border-radius: 6px; border: 1px solid #d9ceba;
  background: #fff; cursor: pointer; font-weight: 700; line-height: 1; padding: 0;
}
.merch-remove { color: var(--brand-red); background: none; border: none; cursor: pointer; font-size: 0.78rem; text-decoration: underline; padding: 0; }
.merch-item-price { font-weight: 800; color: var(--foreground-color); font-size: 0.92rem; }
.merch-empty { color: #8a8072; text-align: center; padding: 2rem 0; font-family: var(--font-type); }

.merch-summary { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.merch-sec { border-top: 1px dashed #d9ceba; padding-top: 0.9rem; }
.merch-lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: #8a8072; margin-bottom: 0.5rem; display: block; }
.merch-seg { display: grid; grid-template-columns: 1fr 1fr; background: #eee4d0; border-radius: 10px; padding: 0.25rem; gap: 0.25rem; }
.merch-seg-btn {
  border: none; background: transparent; padding: 0.5rem; border-radius: 8px;
  font-weight: 600; font-size: 0.82rem; cursor: pointer; color: #6b5c45; font-family: var(--font-heading);
}
.merch-seg-btn.is-active { background: #fff; color: var(--brand-red); box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.merch-don { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.merch-don-btn {
  border: 1px solid #d9ceba; background: #fff; border-radius: 8px; padding: 0.45rem 0.7rem;
  font-weight: 700; cursor: pointer; font-size: 0.85rem; font-family: var(--font-heading);
}
.merch-don-btn.is-active { background: var(--brand-red); color: #fff; border-color: var(--brand-red); }
.merch-total { display: flex; justify-content: space-between; font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--foreground-color); }
.merch-shipnote {
  display: flex; gap: 0.5rem; font-size: 0.8rem; color: #6b5c45;
  background: #fff; border: 1px solid #e6cf9e; border-radius: 8px; padding: 0.55rem 0.7rem; line-height: 1.45;
}
.merch-checkout {
  background: var(--brand-red); color: #fff; border: none; border-radius: 10px;
  padding: 0.9rem; font-weight: 800; font-size: 1rem; cursor: pointer; font-family: var(--font-heading);
}
.merch-checkout:hover { background: var(--brand-red-dark); }
.merch-checkout[hidden] { display: none; }
.merch-msg { font-size: 0.82rem; color: #1d6b33; background: #eef5e6; border: 1px solid #cfe3bd; border-radius: 8px; padding: 0.6rem; text-align: center; margin: 0; }
.merch-msg[hidden] { display: none; }

/* ===== Order form (static catalog + mailto) ===== */
.merch-order { background: #fff; padding: 3.5rem 0 4rem; border-top: 1px solid #efe8d9; }
.merch-order .merch-cathead { justify-content: center; text-align: center; }
.merch-order .merch-count { display: block; width: 100%; }
.merch-order-note { color: #6a675e; max-width: 72ch; line-height: 1.6; margin: 0 auto 1.8rem; text-align: center; }
.order-form { max-width: 44rem; margin: 0 auto; }
.order-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.4rem; }
.order-field { display: flex; flex-direction: column; gap: 0.45rem; }
.order-field label { font-size: 0.82rem; font-weight: 700; color: var(--foreground-color); }
.order-field label em { font-weight: 500; color: #8a8072; font-style: normal; }
.order-field input,
.order-field select,
.order-field textarea {
  font-family: var(--font-heading); font-size: 0.98rem; color: var(--foreground-color);
  background: #fff; border: 1px solid #d9ceba; border-radius: 10px;
  padding: 0.7rem 0.85rem; width: 100%; box-sizing: border-box;
}
.order-field input:focus, .order-field select:focus, .order-field textarea:focus {
  outline: none; border-color: var(--brand-red); box-shadow: 0 0 0 3px rgba(190,56,56,.12);
}
.order-items { border: 1px solid #ece4d6; border-radius: 14px; padding: 1.1rem 1.2rem; margin: 1.4rem 0; background: #fbf8f1; }
.order-items legend { font-family: var(--font-heading); font-weight: 700; color: var(--foreground-color); padding: 0 0.4rem; font-size: 0.95rem; }
.order-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 0.6rem 0.8rem; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid #eee7d8; }
.order-row:last-child { border-bottom: none; }
.order-head { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8072; font-weight: 700; padding-bottom: 0.35rem; border-bottom-color: #dfd5c0; }
.order-name { font-weight: 600; font-size: 0.92rem; color: var(--foreground-color); }
.order-ctrl select {
  font-family: var(--font-heading); font-size: 0.9rem; color: var(--foreground-color);
  background: #fff; border: 1px solid #d9ceba; border-radius: 8px; padding: 0.45rem 0.5rem; width: 100%;
}
.order-ctrl select:focus { outline: none; border-color: var(--brand-red); }
.order-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.4rem; }
.order-alt { margin: 0; font-size: 0.82rem; color: #8a8072; }
.btn-brand { background: var(--brand-red); color: #fff; }
.btn-brand:hover { background: var(--brand-red-dark); }
.merch-order-contact { margin-top: 1.6rem; color: #6a675e; font-size: 0.92rem; text-align: center; }
.merch-order-contact a { color: var(--brand-red); text-decoration: underline; }

@media (max-width: 560px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .order-head { display: none; }
}

@media (max-width: 640px) { .merch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .merch-grid { grid-template-columns: 1fr; } }


/* ================================================================
   Jam Session page – Rondo heritage palette
   Deep amber  #B97B2C · Velvet purple #4B2248 · Brass gold #D4A23C
   Rich charcoal #181818
   ================================================================ */

:root {
  --jam-amber: #B97B2C;
  --jam-purple: #4B2248;
  --jam-gold: #D4A23C;
  --jam-charcoal: #181818;
}

/* Hero — matches the standard page-hero masthead treatment used
   across the site (dark overlay + background image). */
.mast-jam {
  background-image: url('https://drive.google.com/thumbnail?id=1UBO4Lxftf3USTgQl5NHpCqi0pZbE6e8X&sz=w1920');
}
.mast-jam .kicker { color: var(--brand-gold); margin-bottom: .6rem; }
.mast-jam h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); line-height: 1.08; max-width: 22ch; }
.mast-jam .hero-lede { color: #d6d3ca; max-width: 52ch; margin-top: 1rem; font-size: 1.1rem; }
.mast-jam .jam-meta-bar,
.mast-jam .jam-badge { position: relative; z-index: 1; color: var(--white); }

/* Metadata bar */
.jam-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.6rem;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(212,162,60,.35);
  font-size: .88rem;
  color: #ccc;
}
.jam-meta-bar .jam-meta { display: flex; align-items: center; gap: .45rem; }
.jam-meta-bar svg { flex-shrink: 0; }

/* Badge */
.jam-badge {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .55rem 1.1rem;
  background: var(--jam-amber);
  color: var(--jam-charcoal);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 4px;
}

/* Overview / heritage */
.jam-overview { max-width: 72ch; }
.jam-overview h2 { margin-bottom: .8rem; }
.jam-overview p { color: #55534c; line-height: 1.65; }
.jam-overview p + p { margin-top: 1rem; }

/* Legacy text + Marvelous host panel: side-by-side on desktop, stacked on mobile */
.jam-host-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 769px) {
  .jam-host-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3.5rem;
  }
}
.jam-host-card .kicker { margin-bottom: .6rem; }
.jam-host-card .section-title { margin-bottom: 1.6rem; }
/* Left-align the Marvelous host card with the panel title */
.jam-host-card .artist-grid.centered {
  grid-template-columns: 1fr;
  justify-items: start;
}
.jam-host-card .artist-grid.centered .artist-card { max-width: 360px; }

/* Artist lineup grid (reuse .artist-grid + .artist-card) */
.jam-section-head { max-width: 68ch; margin-bottom: 2.4rem; }

/* Bandstand photo band (beneath the lineup on black) */
.bandstand-photo-band { margin-top: 2.6rem; }
.bandstand-photo-band .kicker { margin-bottom: .4rem; }
.bandstand-photo-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--white);
  margin: 0 0 1.4rem;
}
.bandstand-photo-band .gallery-grid { margin-top: 0; }

/* Rules list */
.jam-rules { max-width: 72ch; }
.jam-rules ul { list-style: none; padding: 0; margin: 0; }
.jam-rules li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .85rem;
  font-size: 1rem;
  line-height: 1.55;
}
.jam-rules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: .65rem;
  height: .65rem;
  background: var(--jam-gold);
  border-radius: 50%;
}

/* Rules / quote split */
.jr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.jr-split .pull-quote {
  max-width: none;
  margin: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .jr-split { grid-template-columns: 1fr; gap: 2rem; }
}

/* Timeline */
.jam-timeline { max-width: 64ch; margin: 0 auto; }
.jam-timeline-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0 1.2rem;
  align-items: start;
  padding-bottom: 2rem;
  position: relative;
}
.jam-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 2.25rem;
  top: 1.6rem;
  bottom: 0;
  width: 2px;
  background: rgba(212,162,60,.3);
}
.jam-timeline-time {
  font-family: var(--font-type);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--jam-gold);
  text-align: right;
  padding-top: .1rem;
}
.jam-timeline-body h3 { font-size: 1.1rem; margin: 0 0 .25rem; }
.jam-timeline-body p { color: #cfccc2; font-size: .92rem; margin: 0; }

/* Map card */
.jam-map-card {
  margin-top: 2.5rem;
  border: 1px solid rgba(212,162,60,.3);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
}
.jam-map-card iframe { display: block; width: 100%; height: 320px; border: 0; }
.jam-map-info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  font-size: .88rem;
  color: #cfccc2;
}
.jam-map-info strong { color: var(--white); }

/* Gallery (reuse existing .gallery-grid) */
.jam-gallery .section-title { margin-bottom: 1.6rem; }

/* Free admission footer strip */
.jam-free-strip {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(212,162,60,.25);
}
.jam-free-strip .jam-strip-links { margin-top: 1.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

body.no-scroll { overflow: hidden; }
