/* ============================================================
   SPARKLE CITY RIVER DANCE — BASE (structure & components)
   ============================================================
   Year-agnostic layout, components, and behavior. All colors and
   fonts come from the tokens defined in theme.css (loaded first).
   When restyling for a new season, edit theme.css — this file
   should only change when a component itself changes.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  font-size: 0.95rem;
}
.script { font-family: var(--display-i); }

/* ---------- Nav ---------- */
.nav {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--forest-deep);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1.5rem;
  gap: 1rem;
}
.nav-logo { text-decoration: none; display: inline-block; line-height: 1; }
.nav-logo-img { display: block; height: 54px; width: auto; }
@media (max-width: 640px) { .nav-logo-img { height: 44px; } }
.nav-logo .top {
  font-family: var(--eyebrow); color: var(--lime);
  letter-spacing: 0.34em; font-size: 0.72rem; text-transform: uppercase; display: block;
  margin-bottom: 0.32rem;
}
.nav-logo .bottom {
  font-family: var(--display); color: var(--blush);
  font-size: 1.25rem; letter-spacing: 0.01em;
  display: block; line-height: 1.05;
}
.nav-links { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.nav-links a {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.92rem; color: var(--cream); text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--lime); }
.btn-tickets {
  background: var(--lime); color: var(--ink) !important;
  padding: 0.45rem 1.1rem; border-radius: 4px;
  font-weight: 600;
}
.btn-tickets:hover { background: var(--blush); color: var(--ink) !important; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--blush); margin: 5px 0; }
@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; width: 100%; flex-direction: column; align-items: flex-start;
    padding: 0.5rem 0 1rem; gap: 0.9rem;
  }
  .nav-links.open { display: flex; }
  .nav-inner { flex-wrap: wrap; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 1rem; font-weight: 600;
  padding: 0.85rem 1.9rem; border-radius: 4px;
  border: 2px solid var(--ink);
}
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: var(--blush); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-dark { background: var(--forest); color: var(--cream); border-color: var(--forest-deep); }
.btn-dark:hover { background: var(--forest-deep); }
.btn[disabled], .btn.soon { opacity: 0.85; cursor: default; border-style: dashed; background: var(--cream); color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section.dark { background: var(--forest); color: var(--cream); }
.section.dark h2 { color: var(--blush); }
.section.river { background: var(--river); }
.section h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.section .eyebrow { margin-bottom: 0.6rem; display: block; }
.section.dark .eyebrow { color: var(--lime); }
.section.light .eyebrow { color: var(--amber); }
.center { text-align: center; }
.lead { font-size: 1.2rem; max-width: 46rem; }
.center .lead { margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--forest); color: var(--cream);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.hero-content {
  position: relative; max-width: 1100px; margin: 0 auto;
  padding: 4rem 1.5rem 4.25rem; text-align: center;
}
.hero .eyebrow { color: var(--lime); display: block; margin-bottom: 0.9rem; }
.hero-lockup-top {
  font-family: var(--eyebrow); letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--cream); font-size: clamp(1rem, 2.5vw, 1.5rem); display: block; margin-bottom: 0.4rem;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: var(--blush);
  text-transform: uppercase;
}
.hero-logo-wrap { margin: 0; line-height: 0; }
.hero-logo {
  display: block; margin: 0 auto;
  width: clamp(340px, 84vw, 820px); height: auto;
  aspect-ratio: 298.3 / 182.8; /* logo-tight.svg viewBox — reserves the box before the SVG loads, prevents layout shift (CLS) */
}
.hero .dates {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: clamp(1rem, 2.2vw, 1.3rem); margin-top: 1.2rem; color: var(--cream);
}
.hero .tagline {
  font-family: var(--display-i); color: var(--lime);
  font-size: clamp(1.3rem, 3vw, 2rem); margin-top: 1rem;
}
.hero-ctas { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Cards ---------- */
.cards { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.cards.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards.four { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--cream); border: 2px solid var(--ink); border-radius: 6px;
  padding: 1.8rem;
}
.card h3 { font-size: 1.35rem; margin: 0.8rem 0 0.5rem; }
.card .icon { height: 64px; }
.card img.icon { height: 92px; width: auto; display: block; margin: 0 auto 0.2rem; }
.section.dark .card { background: var(--forest-deep); border-color: var(--ink); color: var(--cream); }
.section.dark .card h3 { color: var(--blush); }
.card .cta {
  display: inline-block; margin-top: 1rem;
  overflow-wrap: anywhere;
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.15em;
  font-weight: 600; color: var(--amber); text-decoration: none; font-size: 0.95rem;
}
.card .cta:hover { color: var(--ink); }
.section.dark .card .cta { color: var(--lime); }
.section.dark .card .cta:hover { color: var(--blush); }

/* ---------- Get Involved cards (depth + identity) ---------- */
.gi-cards { gap: 1.8rem; }
.gi-card {
  position: relative; overflow: hidden;
  border: 2px solid var(--ink); border-radius: 8px;
  padding-top: 2.4rem;
  box-shadow: 6px 6px 0 var(--forest);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.gi-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background: var(--accent, var(--lime));
}
.gi-card .gi-emoji {
  position: absolute; top: 0.7rem; right: 0.9rem;
  font-size: 2.4rem; line-height: 1; opacity: 0.9;
}
.gi-card .gi-icon {
  position: absolute; top: 0.6rem; right: 0.8rem;
  width: 60px; height: 60px; object-fit: contain;
}
.gi-card h3 { font-size: 1.5rem; color: var(--forest); margin: 0 0 0.6rem; }
.gi-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--forest); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; gap: 0.8rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover; border-radius: 4px;
  border: 2px solid var(--ink);
}
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .tall img { height: 100%; min-height: 532px; }

/* photo strip on home */
.photo-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.8rem; margin-top: 2rem; }
.photo-strip img { height: 220px; width: 100%; object-fit: cover; border-radius: 4px; border: 2px solid var(--ink); }

/* ---------- Lineup ---------- */
.lineup-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 2.5rem; }
.lineup-day h3 {
  font-size: 2rem; color: var(--lime);
  border-bottom: 3px solid var(--blush); padding-bottom: 0.5rem; margin-bottom: 1.2rem;
}
.lineup-day h3 .end-time {
  font-family: var(--eyebrow);
  font-size: 1rem; color: var(--blush);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 500; white-space: nowrap; margin-left: 0.6rem;
  vertical-align: middle;
}
.lineup-day ul { list-style: none; }
.lineup-day li {
  font-family: var(--display); font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--cream); padding: 0.45rem 0; text-transform: uppercase;
}
.lineup-day li .with { font-family: var(--eyebrow); font-size: 1rem; color: var(--blush); letter-spacing: 0.15em; }
.lineup-day li.headliner { color: var(--blush); }

/* ---------- Lineup poster ---------- */
.poster {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(var(--lime-rgb), 0.10), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(var(--blush-rgb), 0.12), transparent 45%),
    var(--forest);
  border: 3px solid var(--ink); border-radius: 10px;
  box-shadow: 8px 8px 0 var(--forest-deep);
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1.2rem, 4vw, 3rem);
  margin-top: 2.5rem; text-align: center;
}
.poster-inner { position: relative; z-index: 2; }
.poster-eyebrow {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--lime); font-size: 0.9rem; display: block; margin-bottom: 0.5rem;
}
.poster-headliner {
  font-family: var(--display); color: var(--blush);
  font-size: clamp(2.6rem, 9vw, 6rem); line-height: 0.95;
  text-transform: uppercase; margin: 0.2rem 0 0.4rem;
  text-shadow: 4px 4px 0 var(--forest-deep);
}
.poster-wave {
  display: block; width: 78%; max-width: 540px; height: auto;
  margin: clamp(1.4rem,3.5vw,2.2rem) auto clamp(0.6rem,2vw,1.2rem);
}
/* Saturday closing-headliner marquee */
.poster-headliner-slot {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.5rem, 2vw, 1rem); flex-wrap: nowrap; margin: 0.6rem 0 0.3rem;
}
.poster-marquee {
  font-family: var(--display); text-transform: uppercase; color: var(--blush);
  font-size: clamp(2.1rem, 6.4vw, 4rem); line-height: 0.95;
  text-shadow: 4px 4px 0 var(--forest-deep);
}
.poster-mq-ball { width: clamp(32px, 6vw, 56px); height: auto; flex: 0 0 auto; }
.poster-marquee-tag {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--lime); font-size: clamp(0.78rem, 1.8vw, 1rem);
  opacity: 0.9; margin-bottom: 1.1rem;
}
.poster-night { margin: clamp(1.4rem, 3.5vw, 2.4rem) 0; }
.poster-night-head {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--lime); font-size: clamp(1rem, 2.4vw, 1.35rem); margin-bottom: 0.9rem;
}
.poster-night-head .end {
  display: inline-block; color: var(--blush); font-size: 0.78em;
  letter-spacing: 0.12em; margin-left: 0.5rem; opacity: 0.9;
}
.poster-acts { max-width: 50rem; margin: 0 auto; }
.poster-act {
  font-family: var(--display); text-transform: uppercase; line-height: 1.18;
  font-size: clamp(1.3rem, 3.6vw, 2.2rem); color: var(--cream);
  margin: 0.32rem auto; text-align: center;
}
.poster-act.marquee { color: var(--blush); }
.poster-act a { text-decoration: none; transition: color 0.15s, transform 0.15s; display: inline-block; }
.poster-act a:hover { color: var(--gold); transform: translateY(-2px); }
.poster-act .x {
  font-family: var(--display); font-size: 0.92em; color: var(--gold);
  margin: 0 0.18em; vertical-align: baseline;
}
.poster-act .loc {
  font-family: var(--body); text-transform: none; font-size: 0.42em;
  opacity: 0.7; letter-spacing: 0.02em; vertical-align: middle; margin-left: 0.25em;
}
.poster-foot {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--cream); font-size: 0.85rem; opacity: 0.8; margin-top: 2rem;
}
/* floating critters / nature motifs */
/* big disco ball sits BEHIND the headliner text (.poster-inner is z-index:2) */
.poster-ball {
  position: absolute; z-index: 1; pointer-events: none;
  top: -2%; left: 50%; transform: translateX(-50%);
  width: clamp(240px, 46%, 400px);
}
/* galonzo wordmark — signature in the bottom padding, below the foot text */
.poster-mark {
  position: absolute; z-index: 1; pointer-events: none; opacity: 1;
  bottom: 1.2%; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: clamp(170px, 32%, 250px);
}
/* scattered critters — fully opaque, clear of the text.
   frog-and-turtle-in-the-canoe is the prominent one. */
.poster-critter { position: absolute; z-index: 1; pointer-events: none; opacity: 1; }
.poster-critter.k-frog    { top: 36%; left: 0.5%;  width: 112px; transform: rotate(-8deg); }
.poster-critter.k-raccoon { top: 65%; left: 1%;    width: 88px; transform: rotate(-6deg); }
.poster-critter.k-tent    { bottom: 4.5%; left: 2.5%;  width: 74px; transform: rotate(5deg); }
.poster-critter.k-canoe   { bottom: 4.5%; right: 2.5%; width: 94px; transform: rotate(-7deg); }
.poster-critter.k-b1 { top: 28%; right: 2.5%; width: 60px; transform: rotate(8deg); }
.poster-critter.k-b2 { top: 53%; left: 8%;   width: 50px; transform: rotate(-10deg); }
.poster-critter.k-b3 { top: 73%; right: 9%;  width: 54px; transform: rotate(12deg); }
@media (max-width: 640px) {
  .poster-ball { width: clamp(180px, 60%, 260px); }
  .poster-mark { width: clamp(130px, 44%, 180px); }
  .poster-critter.k-frog { width: 72px; }
  .poster-critter.k-raccoon, .poster-critter.k-b2, .poster-critter.k-b3 { display: none; }
}

/* ---------- Schedule ---------- */
.sched { margin-top: 2rem; display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.sched-day { background: var(--cream); color: var(--ink); border: 2px solid var(--ink); border-radius: 6px; padding: 1.6rem; }
.sched-day h3 { color: var(--forest); font-size: 1.5rem; margin-bottom: 1rem; }
.sched-day table { width: 100%; border-collapse: collapse; }
.sched-day td { padding: 0.45rem 0; vertical-align: top; border-bottom: 1px dashed rgba(var(--ink-rgb), 0.25); }
.sched-day td.time {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; white-space: nowrap; padding-right: 1rem; color: var(--amber);
}

.sched-day tr.act td { font-weight: 600; }
.sched-day tr:last-child td { border-bottom: 0; }
.sched-note {
  font-family: var(--display); color: var(--forest);
  font-size: 1.6rem; line-height: 1.1; text-align: center;
  padding: 0.6rem 0 1rem;
}

/* ---------- Grounds map ---------- */
.map-figure { margin-top: 2rem; }
.map-figure img {
  display: block; width: 100%; height: auto; max-width: 900px; margin: 0 auto;
  border: 2px solid var(--ink); border-radius: 6px;
  box-shadow: 6px 6px 0 var(--forest); cursor: zoom-in;
}
.map-figure figcaption {
  max-width: 900px; margin: 1.2rem auto 0; text-align: center;
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.85rem; font-weight: 600; color: var(--amber);
}
@media (max-width: 700px) {
  .map-figure img { box-shadow: 4px 4px 0 var(--forest); }
}

/* ---------- Stamps & badges ---------- */
.stamp {
  display: inline-block; transform: rotate(-3deg);
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.85rem; font-weight: 600;
  border: 2px dashed var(--amber); color: var(--amber);
  padding: 0.3rem 0.9rem; border-radius: 4px; margin-bottom: 1.2rem;
}
.section.dark .stamp { border-color: var(--lime); color: var(--lime); }

/* ---------- Timeline (about / 10 years) ---------- */
.years {
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 2rem;
}
.year-chip {
  font-family: var(--display); font-size: 1.1rem;
  background: var(--forest-deep); color: var(--cream);
  border: 2px solid var(--ink); border-radius: 4px; padding: 0.4rem 0.9rem;
}
.year-chip.hiatus { opacity: 0.45; font-size: 0.95rem; }
.year-chip.now { background: var(--lime); color: var(--ink); transform: rotate(-2deg); }
a.year-chip { text-decoration: none; display: inline-block; transition: transform 0.15s ease, box-shadow 0.15s ease; cursor: pointer; }
a.year-chip.now:hover { transform: rotate(-2deg) scale(1.06); box-shadow: 3px 3px 0 var(--ink); }

/* ---------- Bios ---------- */
.bios { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.duo-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.duo-photos img { border: 2px solid var(--ink); border-radius: 6px; height: 320px; width: 100%; object-fit: cover; }
.duo-intro { margin-top: 3.5rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.duo-intro p { font-size: 1.15rem; }
.duo-bios { margin-top: 1.75rem; max-width: 760px; margin-left: auto; margin-right: auto; }
.duo-bios .bio h3 { margin-top: 0; }
.bio img { border: 2px solid var(--ink); border-radius: 6px; height: 320px; width: 100%; object-fit: cover; }
.bio h3 { margin-top: 1rem; font-size: 1.4rem; }
.bio .role { font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.16em; color: var(--amber); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2rem; max-width: 50rem; }
.faq details {
  border: 2px solid var(--ink); border-radius: 6px; background: var(--cream);
  margin-bottom: 0.8rem; padding: 1rem 1.3rem;
}
.faq summary {
  font-family: var(--display); font-size: 1.1rem; cursor: pointer; list-style: none;
}
.faq summary::before { content: "✦ "; color: var(--amber); }
.faq details[open] summary { color: var(--forest); }
.faq details p { margin-top: 0.6rem; }

/* ---------- Map ---------- */
.map-wrap { margin-top: 2rem; border: 2px solid var(--ink); border-radius: 6px; overflow: hidden; background: var(--forest-deep); }
.map-wrap svg { display: block; width: 100%; height: auto; }

/* ---------- Video embed ---------- */
.video-wrap {
  position: relative; padding-top: 56.25%; border: 2px solid var(--ink);
  border-radius: 6px; overflow: hidden; margin-top: 2rem; background: var(--ink);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Divider waves ---------- */
.waves { display: block; width: 100%; height: 38px; }

/* ---------- Footer ---------- */
.footer { background: var(--forest-deep); color: var(--cream); padding: 3.5rem 1.5rem 2.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.footer h4 { font-family: var(--display); color: var(--blush); margin-bottom: 0.7rem; font-size: 1.1rem; }
.footer a { color: var(--lime); text-decoration: none; }
.footer a:hover { color: var(--blush); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.4rem; }
.footer .legal {
  max-width: 1100px; margin: 2.5rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--cream-rgb), 0.2);
  font-size: 0.85rem; opacity: 0.7; text-align: center;
}
.footer .supernature { font-family: var(--display-i); color: var(--lime); font-size: 1.3rem; }

/* ---------- Page header (interior pages) ---------- */
.page-head { background: var(--forest); color: var(--cream); padding: 4rem 1.5rem 3rem; text-align: center; }
.page-head h1 { font-family: var(--display); color: var(--blush); font-size: clamp(2.4rem, 6vw, 4rem); text-transform: uppercase; }
.page-head .eyebrow { color: var(--lime); display: block; margin-bottom: 0.8rem; }
.page-head p { max-width: 42rem; margin: 1rem auto 0; }

/* ---------- Sparkle decorations ---------- */
.sparkle { position: absolute; pointer-events: none; }

/* ---------- Sponsor tiers ---------- */
.tiers { display: grid; gap: 1.5rem; margin-top: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); text-align: left; }
.tier {
  background: var(--forest-deep); border: 2px solid var(--ink); border-radius: 6px;
  padding: 1.8rem; display: flex; flex-direction: column;
}
.tier .tier-num {
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.9rem; color: var(--lime);
}
.tier .tier-price { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.2rem); color: var(--blush); line-height: 1.1; margin: 0.3rem 0 1rem; }
.tier ul { list-style: none; margin-top: 0.2rem; }
.tier li { padding: 0.45rem 0; border-bottom: 1px dashed rgba(var(--cream-rgb), 0.25); font-size: 0.98rem; }
.tier li:last-child { border-bottom: 0; }
.tier li::before { content: "✦ "; color: var(--lime); }
.tier.featured { background: var(--forest); border-color: var(--lime); box-shadow: 6px 6px 0 var(--ink); }

/* ---------- Misc ---------- */
.note { font-size: 0.95rem; opacity: 0.8; margin-top: 1rem; }
.bignum { font-family: var(--display); font-size: clamp(2.6rem, 6vw, 4rem); color: var(--lime); line-height: 1; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-top: 2.5rem; text-align: center; }
.stats .label { font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.9rem; margin-top: 0.4rem; }

/* ---------- Gallery lightbox ---------- */
.gallery-grid div { cursor: zoom-in; }
.lb-overlay {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(var(--ink-rgb), 0.94);
  flex-direction: column; align-items: center; justify-content: center;
  padding: 2.5rem 1rem;
}
.lb-overlay img {
  max-width: min(92vw, 1400px); max-height: 78vh; width: auto; height: auto;
  border-radius: 6px; border: 2px solid var(--cream);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.55);
  cursor: zoom-out;
}
.lb-count {
  font-family: var(--eyebrow); letter-spacing: 0.2em;
  color: var(--lime); font-size: 0.8rem; margin-top: 0.35rem; opacity: 0.85;
}
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 1001;
  background: none; border: 0; color: var(--cream);
  font-size: 3.4rem; line-height: 1; cursor: pointer; padding: 1rem 1.1rem; opacity: 0.85;
}
.lb-btn:hover { color: var(--lime); opacity: 1; }
.lb-prev { left: 0.4rem; }
.lb-next { right: 0.4rem; }
.lb-close { top: 0.6rem; right: 0.8rem; transform: none; font-size: 2.6rem; }
body.lb-open { overflow: hidden; }
@media (max-width: 640px) {
  .lb-btn { font-size: 2.4rem; padding: 0.6rem; }
  .lb-overlay img { max-height: 70vh; }
}


/* --- Artist social links: inherit the surrounding look exactly --- */
.artist-link{
  color: inherit;
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
  -webkit-text-fill-color: inherit;
  background: inherit;
  -webkit-background-clip: inherit;
  background-clip: inherit;
}
.artist-link:hover,
.artist-link:focus-visible{ text-decoration: underline; text-underline-offset: .18em; }
.poster-act .artist-link:hover{ text-decoration: none; }


/* ---------- Footer: mail glyph + Admit One ticket ---------- */
.foot-mail { display: inline-flex; align-items: center; line-height: 1; }
.foot-mail svg { transition: transform 0.15s; }
.foot-mail:hover svg { transform: translateY(-1px); }

.footer li.foot-ticket-li { margin-top: 0.85rem; }
.foot-ticket {
  display: inline-block; position: relative;
  background: var(--lime); color: var(--forest-deep) !important;
  border-radius: 4px; padding: 3px;
  transition: background 0.15s, transform 0.15s;
}
.foot-ticket span {
  display: block;
  border: 1px dashed rgba(var(--forest-deep-rgb), 0.55);
  border-radius: 2px;
  padding: 0.34rem 0.85rem;
  font-family: var(--eyebrow);
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; line-height: 1;
}
/* punched notches — sit on the footer's solid background */
.foot-ticket::before, .foot-ticket::after {
  content: ""; position: absolute; top: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--forest-deep); transform: translateY(-50%);
}
.foot-ticket::before { left: -5px; }
.foot-ticket::after  { right: -5px; }
.foot-ticket:hover { background: var(--blush); transform: translateY(-1px); }

/* ---------- Gallery year switcher ---------- */
/* Same chip DNA as the About-page timeline, made clickable. Sits under the
   sticky nav; --navh is measured by js/gallery-years.js. */
[hidden] { display: none !important; }

.gyearbar {
  position: sticky; top: var(--navh, 81px); z-index: 40;
  background: var(--forest-deep);
  border-bottom: 3px solid var(--ink);
  padding: 0.75rem 1rem;
}
.gyears {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
}
.gyear {
  font-family: var(--display); font-size: 1.05rem; line-height: 1.2;
  background: var(--forest); color: var(--cream);
  border: 2px solid var(--ink); border-radius: 4px;
  padding: 0.42rem 1rem; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.gyear:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--ink); }
.gyear.on {
  background: var(--lime); color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.gyear.on:hover { transform: none; }
.gyear:focus-visible { outline: 3px solid var(--blush); outline-offset: 2px; }
.gyear-all {
  background: transparent; color: var(--lime);
  border-style: dashed; border-color: var(--lime);
}
.gyear-all.on { background: var(--lime); color: var(--ink); border-style: solid; border-color: var(--ink); }

@media (max-width: 640px) {
  .gyearbar { padding: 0.6rem 0.7rem; }
  .gyear { font-size: 0.95rem; padding: 0.36rem 0.8rem; }
}

/* photo credit under a season's grid */
.photo-credit {
  margin-top: 1.6rem; text-align: center;
  font-family: var(--eyebrow); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.8rem; opacity: 0.75;
}
.photo-credit a { color: var(--lime); text-decoration: none; }
.photo-credit a:hover { color: var(--blush); }
.section.light .photo-credit a { color: var(--amber); }
.section.light .photo-credit a:hover { color: var(--forest); }

/* anchor jumps land below the sticky nav + year bar */
.section[data-gyear] { scroll-margin-top: calc(var(--navh, 81px) + 62px); }
