/* ============================================================
   POLKAMANIA — The Loudest Tabloid in the Polka Universe
   ============================================================
   In the spirit of Weird Al Yankovic. Tabloid bones inherited
   from the OnlyInOhio design system, then cranked through an
   accordion, sprinkled with polka dots, and dressed in a
   Hawaiian shirt.
   ============================================================ */

:root {
  --polka-red: #d4252b;
  --polka-red-dark: #7a0d13;
  --polka-gold: #f4b400;
  --polka-gold-light: #ffd86b;
  --polka-teal: #1a9d9f;
  --polka-teal-dark: #0e6c6e;
  --polka-pink: #ff5d8f;
  --polka-purple: #7c3aed;
  --polka-green: #166534;
  --polka-blue: #1d4ed8;
  --cream: #fef8e7;
  --cream-dark: #f2e9c8;
  --cream-light: #fffdf3;
  --ink: #1a0f0a;
  --ink-light: #4a3a2a;
  --white: #ffffff;
  --black: #000000;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-label: 'Oswald', 'Arial Narrow', Helvetica, sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-quirky: 'Special Elite', 'Courier New', monospace;
  --font-shout: 'Bungee', 'Impact', sans-serif;
  --font-loud: 'Rye', 'Bungee', Impact, sans-serif;

  --gap: clamp(1rem, 3vw, 2rem);
  --section-pad: clamp(2rem, 6vw, 5rem);
  --max-width: 1280px;
  --radius: 4px;

  /* a polka dot pattern, used as a layered watermark */
  --dot-pattern:
    radial-gradient(circle at 25% 25%, rgba(212, 37, 43, 0.10) 2.5px, transparent 3px),
    radial-gradient(circle at 75% 75%, rgba(244, 180, 0, 0.10) 2.5px, transparent 3px);
  --dot-size: 40px 40px;
}

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

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--polka-red); color: var(--white);
  padding: 0.5rem 1rem; z-index: 9999;
  font-family: var(--font-label); font-size: 0.85rem;
  text-decoration: none; border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  background-image: var(--dot-pattern);
  background-size: var(--dot-size), var(--dot-size);
  background-attachment: fixed;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--polka-red); text-decoration: none; }
a:hover { color: var(--polka-red-dark); }
strong { font-weight: 600; }

/* ============================================================
   MASTHEAD — the loud one
   ============================================================ */
.masthead {
  background: var(--cream-light);
  border-bottom: 4px solid var(--ink);
  text-align: center;
  padding: 0.5rem var(--gap) 0;
  position: relative;
  overflow: hidden;
}
.masthead::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, var(--polka-red) 18px, transparent 19px),
    radial-gradient(circle at 90% 10%, var(--polka-gold) 14px, transparent 15px),
    radial-gradient(circle at 92% 88%, var(--polka-teal) 10px, transparent 11px),
    radial-gradient(circle at 8% 12%, var(--polka-pink) 12px, transparent 13px);
  opacity: 0.35;
  pointer-events: none;
}
.masthead > * { position: relative; z-index: 1; }

.masthead-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-light);
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--polka-red);
}
.masthead-note { font-style: italic; text-transform: none; letter-spacing: 0; font-size: 0.65rem; }
.masthead-weather { color: var(--polka-red); font-weight: 600; }

.masthead-main { padding: 0.6rem 0 0.8rem; }
.masthead-logo-row {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.masthead-logo {
  width: clamp(80px, 12vw, 140px); height: auto; flex-shrink: 0;
  filter: drop-shadow(0 3px 0 var(--polka-gold));
}
.masthead-title-group { text-align: center; }

.masthead-rule { height: 3px; background: var(--ink); margin: 0 auto; position: relative; }
.masthead-rule::after {
  content: '';
  position: absolute; top: 5px; left: 0; right: 0;
  height: 1px; background: var(--ink);
}

.masthead-title {
  font-family: var(--font-loud);
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--polka-red);
  text-transform: uppercase;
  margin: 0.3rem 0 0.15rem;
  text-shadow:
    3px 3px 0 var(--polka-gold),
    6px 6px 0 var(--ink);
}
.masthead-title a { color: inherit; text-decoration: none; }
.masthead-title a:hover { color: var(--polka-red-dark); }

.masthead-tagline {
  font-family: var(--font-quirky);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: var(--ink-light);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ============================================================
   TICKER — the news-of-the-polka crawl
   ============================================================ */
.ticker {
  background: var(--polka-red);
  color: var(--white);
  display: flex; align-items: stretch; overflow: hidden;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-top: 2px solid var(--polka-gold);
  border-bottom: 2px solid var(--polka-red-dark);
}
.ticker-label {
  background: var(--polka-red-dark);
  color: var(--polka-gold-light);
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  display: flex; align-items: center;
  z-index: 2; position: relative;
}
.ticker-label::after {
  content: ''; position: absolute; right: -8px; top: 0; bottom: 0;
  width: 8px; background: linear-gradient(to right, rgba(122,13,19,0.6), transparent);
}
.ticker-track { flex: 1; overflow: hidden; display: flex; align-items: center; }
.ticker-content {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker-scroll 80s linear infinite;
  padding-left: 1rem;
}
.ticker-content span { padding: 0 0.7rem; }
.ticker-dot { opacity: 0.6; color: var(--polka-gold-light); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker:hover .ticker-content { animation-play-state: paused; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  background: var(--ink);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 3px solid var(--polka-gold);
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0, transparent 80px,
      rgba(244,180,0,0.05) 80px, rgba(244,180,0,0.05) 82px);
}
.nav-links {
  list-style: none;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; max-width: var(--max-width); margin: 0 auto;
}
.nav-links li { display: flex; }
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  padding: 0.75rem 1rem;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.nav-links a:hover { background: var(--polka-gold); color: var(--ink); }
.nav-links a.active { background: var(--polka-red); color: var(--white); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.8rem 1rem; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); transition: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  max-width: var(--max-width); margin: 0 auto;
  padding: var(--gap);
  position: relative; z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--gap);
  align-items: start;
}
.hero-main {
  border: 2px solid var(--ink);
  background: var(--white);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--polka-gold);
}
.hero-img-wrap {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--polka-red-dark) 0%, var(--polka-red) 50%, var(--polka-gold) 100%);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }

.hero-text { padding: 1.3rem 1.6rem 1.6rem; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin: 0.5rem 0 0.5rem;
}
.hero-headline a { color: var(--ink); text-decoration: none; }
.hero-headline a:hover { color: var(--polka-red); }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.45;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dotted var(--polka-red);
}
.hero-body p { margin-bottom: 0.85rem; font-size: 0.98rem; }

.hero-sidebar { display: flex; flex-direction: column; gap: var(--gap); }
.sidebar-card {
  display: block; background: var(--white);
  border: 2px solid var(--ink);
  padding: 1rem 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--polka-teal);
}
.sidebar-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--polka-teal);
  color: var(--ink);
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  line-height: 1.25;
  margin: 0.45rem 0 0.5rem;
}
.sidebar-card p { font-size: 0.86rem; color: var(--ink-light); line-height: 1.5; }

/* ============================================================
   CATEGORY CHIPS + STAMPS
   ============================================================ */
.category {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
}
.cat-king       { background: var(--polka-red); color: var(--white); }
.cat-weird-al   { background: var(--polka-teal); color: var(--white); }
.cat-history    { background: var(--polka-purple); color: var(--white); }
.cat-resources  { background: var(--polka-blue); color: var(--white); }
.cat-party      { background: var(--polka-pink); color: var(--white); }
.cat-humor      { background: var(--polka-gold); color: var(--ink); }
.cat-involved   { background: var(--polka-green); color: var(--white); }
.cat-polka      { background: var(--ink); color: var(--polka-gold-light); }

.stamp {
  position: absolute;
  font-family: var(--font-label);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  transform: rotate(-4deg);
  z-index: 3;
}
.stamp-exclusive {
  top: 1rem; right: 1rem;
  background: var(--polka-red); color: var(--white);
  border: 2px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.stamp-vintage {
  top: 1rem; left: 1rem;
  background: var(--polka-gold); color: var(--ink);
  border: 2px solid var(--ink); transform: rotate(3deg);
}
.stamp-party {
  bottom: 1rem; right: 1rem;
  background: var(--polka-pink); color: var(--white);
  border: 2px solid var(--white); transform: rotate(-2deg);
}
.stamp-static {
  position: static; display: inline-block;
  background: var(--polka-red); color: var(--white);
  border: 2px solid var(--polka-red);
  margin-bottom: 0.5rem; transform: rotate(-1deg);
}

/* ============================================================
   HEADLINES ROW (cards)
   ============================================================ */
.headlines-row {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--gap) var(--gap);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  position: relative; z-index: 2;
}
.headline-card {
  background: var(--white);
  border: 2px solid var(--ink);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--ink);
}
.headline-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--polka-red);
  color: var(--ink);
}
.headline-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  background: linear-gradient(135deg, var(--polka-red-dark), var(--polka-gold));
  filter: contrast(1.05) saturate(1.05);
  border-bottom: 3px solid var(--cream-dark);
}
.headline-card .category { margin: 0.8rem 0.8rem 0; }
.headline-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  line-height: 1.3; padding: 0.4rem 0.8rem 0;
}
.headline-card p {
  font-size: 0.82rem; color: var(--ink-light);
  padding: 0.3rem 0.8rem 1rem; line-height: 1.5;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header { text-align: center; margin-bottom: 2rem; }
.section-label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--polka-red); margin-bottom: 0.3rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.05;
  color: var(--ink); margin-bottom: 0.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--polka-red);
}
.section-intro {
  font-size: 1rem; color: var(--ink-light);
  max-width: 720px; margin: 0 auto;
}

/* ============================================================
   WEIRD AL SHRINE (red-velvet section)
   ============================================================ */
.section-shrine {
  background: linear-gradient(135deg, #2b0a0a, #4a0d10);
  color: var(--cream);
  padding: var(--section-pad) var(--gap);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--polka-gold);
  border-bottom: 4px solid var(--polka-gold);
}
.section-shrine::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,216,107,0.07) 4px, transparent 5px),
    radial-gradient(circle at 80% 70%, rgba(255,93,143,0.07) 3px, transparent 4px);
  background-size: 60px 60px, 80px 80px;
  pointer-events: none;
}
.section-shrine > * { position: relative; z-index: 1; }
.section-shrine .section-label { color: var(--polka-gold-light); }
.section-shrine .section-title { color: var(--cream); }
.shrine-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--gap);
  align-items: stretch;
}
.shrine-portrait {
  position: relative; overflow: hidden;
  border: 3px solid var(--polka-gold);
  box-shadow: 0 0 0 6px var(--polka-red-dark), 0 12px 30px rgba(0,0,0,0.5);
  aspect-ratio: 4/5;
}
.shrine-portrait img { width: 100%; height: 100%; object-fit: cover; }
.shrine-text { padding: 1rem 0; }
.shrine-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--polka-gold-light);
  margin-bottom: 0.4rem;
}
.shrine-text p {
  font-size: 0.95rem; line-height: 1.7;
  color: rgba(254,248,231,0.9);
  margin-bottom: 0.8rem;
}
.shrine-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem; margin: 1rem 0;
}
.shrine-stat {
  border: 1px solid rgba(255,216,107,0.3);
  padding: 0.8rem 0.6rem; text-align: center;
  background: rgba(0,0,0,0.25);
}
.shrine-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  color: var(--polka-gold-light);
}
.shrine-stat span {
  font-family: var(--font-label);
  font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(254,248,231,0.7);
}

/* ============================================================
   POLKAS MEDLEY (cards-grid w/ playful)
   ============================================================ */
.section-medley {
  max-width: var(--max-width); margin: 0 auto;
  padding: var(--section-pad) var(--gap);
}
.medley-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.medley-card {
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 1.2rem 1.4rem;
  position: relative;
  transition: transform 0.2s;
}
.medley-card::before {
  content: '';
  position: absolute; top: -8px; left: -8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--polka-red);
}
.medley-card::after {
  content: '';
  position: absolute; bottom: -8px; right: -8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--polka-gold);
}
.medley-card:hover { transform: rotate(-0.5deg) translateY(-3px); }
.medley-card:nth-child(even):hover { transform: rotate(0.5deg) translateY(-3px); }
.medley-year {
  display: inline-block;
  font-family: var(--font-shout);
  font-size: 0.95rem;
  color: var(--polka-red);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.medley-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.medley-card .medley-tagline {
  font-family: var(--font-quirky);
  font-size: 0.8rem; color: var(--polka-red);
  margin-bottom: 0.5rem;
}
.medley-card p {
  font-size: 0.88rem; line-height: 1.6;
  color: var(--ink-light);
}

/* ============================================================
   POLKA KINGS (gallery row)
   ============================================================ */
.section-kings {
  background: var(--cream-dark);
  padding: var(--section-pad) var(--gap);
  border-top: 4px double var(--ink);
}
.section-kings .section-header {
  max-width: var(--max-width); margin: 0 auto 2rem;
}
.kings-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.king-card {
  background: var(--white);
  border: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.king-card:hover { transform: translateY(-4px); }
.king-card .crown {
  position: absolute; top: 0.5rem; right: 0.6rem;
  font-size: 1.8rem; z-index: 2;
  filter: drop-shadow(0 2px 0 var(--ink));
}
.king-img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  background: linear-gradient(135deg, var(--polka-red), var(--polka-gold));
  filter: contrast(1.05) saturate(1.05);
}
.king-text { padding: 0.8rem 1rem 1rem; }
.king-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800; margin-bottom: 0.2rem;
}
.king-reign {
  font-family: var(--font-label);
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--polka-red);
  margin-bottom: 0.5rem; display: block;
}
.king-text p { font-size: 0.85rem; line-height: 1.55; color: var(--ink-light); }

/* ============================================================
   HISTORY OF POLKA (timeline)
   ============================================================ */
.section-history {
  max-width: var(--max-width); margin: 0 auto;
  padding: var(--section-pad) var(--gap);
  border-top: 4px double var(--ink);
}
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before {
  content: ''; position: absolute;
  top: 0; bottom: 0; left: 0.65rem;
  width: 4px;
  background: repeating-linear-gradient(to bottom,
    var(--polka-red) 0, var(--polka-red) 12px,
    var(--polka-gold) 12px, var(--polka-gold) 24px);
}
.timeline-event {
  position: relative; padding: 0.6rem 0 1.4rem;
}
.timeline-event::before {
  content: ''; position: absolute;
  left: -2.2rem; top: 0.9rem;
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--polka-red);
  box-shadow: 0 0 0 3px var(--cream);
}
.timeline-year {
  font-family: var(--font-shout);
  font-size: 1.2rem;
  color: var(--polka-red);
  display: inline-block;
  margin-right: 0.6rem;
}
.timeline-event h4 {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--ink);
}
.timeline-event p {
  font-size: 0.95rem; line-height: 1.65;
  color: var(--ink-light); margin-top: 0.4rem;
}

/* ============================================================
   YOUTUBE / VIDEO EMBEDS
   ============================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 1rem;
}
.video-card {
  background: var(--white);
  border: 2px solid var(--ink);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--polka-red);
}
.video-frame {
  position: relative; aspect-ratio: 16/9; background: var(--ink);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.video-card-link {
  display: block; color: var(--ink); text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-card-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--polka-gold);
  color: var(--ink);
}
.video-frame-search {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--polka-red-dark), var(--polka-red), var(--polka-gold));
  color: var(--white);
  gap: 0.6rem;
}
.video-play-badge {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); color: var(--polka-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; padding-left: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  transition: transform 0.2s;
}
.video-card-link:hover .video-play-badge { transform: scale(1.1); }
.video-search-text {
  font-family: var(--font-label); font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.video-text { padding: 0.8rem 1rem 1rem; }

/* Inline portrait — floats next to an article section's text */
.portrait-frame {
  float: right;
  width: clamp(170px, 30%, 240px);
  margin: 0.3rem 0 1rem 1.4rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--polka-gold);
  background: var(--white);
  overflow: hidden;
}
.portrait-frame img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.portrait-frame figcaption {
  font-family: var(--font-quirky);
  font-size: 0.72rem;
  padding: 0.4rem 0.6rem;
  color: var(--ink-light);
  border-top: 1px solid #ddd;
  background: var(--cream-light);
}
@media (max-width: 600px) {
  .portrait-frame {
    float: none;
    width: 100%;
    margin: 0.6rem 0 1.2rem 0;
  }
  .portrait-frame img { aspect-ratio: 16/10; }
}

/* Image credits / attribution footer */
.image-credits {
  max-width: 820px; margin: 0 auto;
  padding: 1.4rem 1.6rem;
  background: var(--cream-light);
  border: 1px solid #ddd;
  border-left: 4px solid var(--polka-teal);
  font-family: var(--font-quirky);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink-light);
}
.image-credits h4 {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--polka-red);
  margin-bottom: 0.5rem;
}
.image-credits a {
  color: var(--polka-red);
  text-decoration: underline;
}

/* Inline "Watch on YouTube" pill button — sits next to a heading */
.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--polka-red);
  color: var(--white);
  padding: 0.32rem 0.85rem 0.32rem 0.7rem;
  border-radius: 999px;
  margin-left: 0.7rem;
  vertical-align: 0.15em;
  text-decoration: none;
  border: 2px solid var(--polka-red);
  transition: background 0.15s, transform 0.15s, color 0.15s, border-color 0.15s;
}
.watch-btn:hover {
  background: var(--polka-red-dark);
  border-color: var(--polka-red-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.watch-btn::before {
  content: '\25B6';
  font-size: 0.65rem;
  display: inline-block;
  width: 1.05rem; height: 1.05rem;
  line-height: 1.05rem; text-align: center;
  padding-left: 0.15rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--polka-red);
}
@media (max-width: 600px) {
  .watch-btn {
    display: inline-flex;
    margin: 0.4rem 0 0 0;
  }
}
.video-text h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  margin-bottom: 0.2rem;
}
.video-text p {
  font-size: 0.82rem; line-height: 1.55;
  color: var(--ink-light);
}

/* ============================================================
   POLKA PARTY (festival-tent banner section)
   ============================================================ */
.section-party {
  background:
    repeating-linear-gradient(0deg,
      transparent 0, transparent 28px,
      rgba(255,216,107,0.05) 28px, rgba(255,216,107,0.05) 30px),
    linear-gradient(135deg, #c81d25 0%, #ff5d8f 100%);
  color: var(--white);
  padding: var(--section-pad) var(--gap);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-party::before {
  content: '';
  position: absolute; top: -20px; left: 0; right: 0;
  height: 30px;
  background:
    radial-gradient(circle at 20px 30px, var(--cream) 14px, transparent 15px) repeat-x,
    radial-gradient(circle at 60px 30px, var(--cream) 14px, transparent 15px) repeat-x;
  background-size: 80px 30px;
}
.section-party::after {
  content: '';
  position: absolute; bottom: -20px; left: 0; right: 0;
  height: 30px;
  background:
    radial-gradient(circle at 20px 0, var(--cream) 14px, transparent 15px) repeat-x,
    radial-gradient(circle at 60px 0, var(--cream) 14px, transparent 15px) repeat-x;
  background-size: 80px 30px;
}
.party-headline {
  font-family: var(--font-loud);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  text-shadow: 4px 4px 0 var(--polka-red-dark);
}
.party-sub {
  font-family: var(--font-quirky);
  font-size: 1.1rem;
  max-width: 600px; margin: 0 auto 1.5rem;
}
.party-cta {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  background: var(--polka-gold); color: var(--ink);
  padding: 1rem 2rem;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.party-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
}

/* ============================================================
   FAQ / HUMOR (typewriter)
   ============================================================ */
.section-humor {
  background: var(--cream);
  padding: var(--section-pad) var(--gap);
  border-top: 4px double var(--ink);
}
.humor-wrap {
  max-width: 880px; margin: 0 auto;
  background: var(--cream-light);
  border: 2px solid var(--ink);
  padding: 2rem 2.4rem;
  box-shadow: 6px 6px 0 var(--polka-gold);
}
.humor-q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--polka-red);
  margin-top: 1.2rem;
}
.humor-q:first-child { margin-top: 0; }
.humor-a {
  font-family: var(--font-quirky);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 0.3rem;
}

/* ============================================================
   TOWN NAMES → POLKA SONG TITLES
   ============================================================ */
.section-titles {
  background: var(--cream-dark);
  padding: var(--section-pad) var(--gap);
  border-top: 4px double var(--ink);
}
.section-titles .section-header {
  max-width: var(--max-width); margin: 0 auto 2rem;
}
.titles-wrap {
  max-width: var(--max-width); margin: 0 auto 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.8rem;
}
.title-pill {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid var(--ink);
  transition: transform 0.2s, background 0.2s, color 0.2s;
  cursor: default;
}
.title-pill:hover {
  transform: rotate(-2deg) scale(1.05);
  background: var(--polka-gold);
}
.title-pill:nth-child(even):hover {
  transform: rotate(2deg) scale(1.05);
  background: var(--polka-pink); color: var(--white);
}
.title-featured {
  background: var(--polka-red); color: var(--white);
  border-color: var(--polka-red);
}
.title-featured:hover { background: var(--polka-red-dark); color: var(--white); }

.titles-footnote {
  max-width: var(--max-width); margin: 0 auto;
  font-size: 0.86rem; text-align: center;
  color: var(--ink-light);
}

/* ============================================================
   BY THE NUMBERS
   ============================================================ */
.section-numbers {
  max-width: var(--max-width); margin: 0 auto;
  padding: var(--section-pad) var(--gap);
  text-align: center;
  border-top: 4px double var(--ink);
}
.numbers-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 2rem;
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.number-item {
  padding: 1.2rem;
  border: 2px solid var(--ink);
  background: var(--white);
  position: relative;
}
.number-item::before {
  content: '';
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--polka-red); border-radius: 50%;
  border: 2px solid var(--ink);
}
.big-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 900;
  color: var(--polka-red);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.number-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-top: 0.3rem;
}

/* ============================================================
   READ MORE LINKS
   ============================================================ */
.read-more {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--polka-red);
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.read-more:hover { color: var(--polka-red-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: var(--cream);
  text-align: center; padding: 2.4rem var(--gap);
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(244,180,0,0.07) 6px, transparent 7px),
    radial-gradient(circle at 90% 50%, rgba(212,37,43,0.07) 8px, transparent 9px);
  background-size: 80px 80px, 100px 100px;
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer-rule { height: 1px; background: rgba(254,248,231,0.2); margin: 0 auto; max-width: 400px; }
.footer-logo { width: 80px; height: auto; margin: 0.5rem auto; opacity: 0.85; }
.footer-title {
  font-family: var(--font-loud);
  font-size: 1.6rem; font-weight: 900;
  text-transform: uppercase;
  padding: 0.4rem 0;
  color: var(--polka-gold-light);
}
.footer-tagline {
  font-family: var(--font-quirky);
  font-size: 0.88rem;
  color: rgba(254,248,231,0.65);
  margin-bottom: 1rem;
}
.footer-nav {
  display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-nav a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(254,248,231,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--polka-gold-light); }
.footer-links {
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
  font-family: var(--font-label);
  font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(254,248,231,0.5);
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-family: var(--font-quirky);
  font-size: 0.76rem; color: rgba(254,248,231,0.35);
}

/* Hidden rabbit-hole trigger — looks like a regular period in the disclaimer.
   Doesn't underline by default. On hover, becomes a glowing brass-gold polka dot. */
.bellowed-dot {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
  cursor: default;
  transition: color 0.3s, text-shadow 0.3s;
  outline: none;
}
.bellowed-dot:hover,
.bellowed-dot:focus {
  color: var(--polka-gold-light);
  text-shadow: 0 0 6px rgba(244,180,0,0.6);
  cursor: pointer;
}

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.masthead-sub { padding: 0.3rem var(--gap) 0; border-bottom: 3px solid var(--ink); }
.masthead-sub .masthead-logo { width: clamp(50px, 8vw, 80px); }
.masthead-sub .masthead-title {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
  text-shadow: 2px 2px 0 var(--polka-gold), 4px 4px 0 var(--ink);
}

.article-hero {
  position: relative; max-width: var(--max-width);
  margin: 0 auto; overflow: hidden;
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, var(--polka-red-dark), var(--polka-red), var(--polka-gold));
}
.article-hero img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.65) contrast(1.1);
}
.article-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
}
.article-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  font-weight: 900; line-height: 1.05;
  margin: 0.4rem 0 0.4rem;
  color: var(--white);
}
.article-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 760px;
}
.article-hero .stamp { top: 1.5rem; right: 1.5rem; }

.article-main { background: var(--cream); }
.article-body {
  max-width: 820px; margin: 0 auto;
  padding: var(--section-pad) var(--gap);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 900; line-height: 1.15;
  margin: 0 0 0.4rem; color: var(--ink);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  margin: 1.8rem 0 0.5rem;
  color: var(--polka-red-dark);
}
.article-body p {
  font-size: 1.04rem; line-height: 1.85; margin-bottom: 1rem;
}
.article-body section { margin-bottom: 1.2rem; }

.article-tagline {
  font-family: var(--font-quirky);
  font-size: 1rem; color: var(--polka-red);
  margin-bottom: 1rem; display: block;
}
.article-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.article-list { margin: 0.5rem 0 1.5rem 1.5rem; }
.article-list li { margin-bottom: 0.6rem; font-size: 0.98rem; line-height: 1.7; }
.article-divider {
  border: none; height: 18px;
  background-image: radial-gradient(circle, var(--polka-red) 4px, transparent 5px);
  background-size: 30px 18px; background-repeat: repeat-x;
  margin: 2.4rem 0;
}

.article-inline-img {
  position: relative; margin: 1.8rem -2rem;
  overflow: hidden; border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--polka-gold);
}
.article-inline-img img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.article-inline-img .stamp { top: 1rem; right: 1rem; }

.article-pullquote {
  margin: 2.6rem -2rem;
  padding: 2rem;
  border-left: 6px solid var(--polka-red);
  border-right: 6px solid var(--polka-gold);
  background: var(--cream-dark);
}
.article-pullquote blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  text-align: center;
}

.article-more-stories {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--gap) var(--section-pad);
  border-top: 4px double var(--ink);
}
.article-more-stories h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 900;
  text-align: center; margin: 2rem 0 1.5rem;
}
.more-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.more-card {
  display: block; background: var(--white);
  border: 2px solid var(--ink); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--ink);
}
.more-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--polka-teal);
  color: var(--ink);
}
.more-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.more-card .category { margin: 0.8rem 0.8rem 0; }
.more-card h4 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  padding: 0.3rem 0.8rem 0.8rem;
  line-height: 1.3;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { flex-direction: row; }
  .sidebar-card { flex: 1; }
  .headlines-row { grid-template-columns: repeat(2, 1fr); }
  .medley-grid { grid-template-columns: repeat(2, 1fr); }
  .kings-grid { grid-template-columns: repeat(2, 1fr); }
  .shrine-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .masthead-top { justify-content: center; text-align: center; }
  .masthead-title { font-size: clamp(2.2rem, 12vw, 3.6rem); }

  .nav-toggle { display: flex; }
  .nav {
    display: flex; align-items: center; justify-content: flex-end;
    padding-right: 0.5rem; position: sticky; top: 0;
  }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    border-bottom: 3px solid var(--polka-gold);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

  .hero-sidebar { flex-direction: column; }
  .headlines-row { grid-template-columns: 1fr; }
  .medley-grid { grid-template-columns: 1fr; }
  .kings-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
  .article-inline-img { margin: 1.2rem 0; }
  .article-pullquote { margin: 2rem 0; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .kings-grid { grid-template-columns: 1fr; }
}
