/* Newnan Cougar Theatre — site styles built on project/tokens.css */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font: var(--text-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { color: var(--brand-gold-strong); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 var(--space-4); }
.container.narrow { max-width: 720px; }

.skip-link {
  position: absolute; left: var(--space-4); top: -100px;
  background: var(--brand-gold); color: var(--on-gold); padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md); z-index: 10;
}
.skip-link:focus { top: var(--space-2); }

/* Marquee bulbs — round white lamps with a warm glow, alternating like a chase. */
:root {
  --bulb: #fffaf0;
  --bulb-glow: rgba(255, 241, 194, 0.55);
  --bulb-pitch: 28px;
  --bulb-band: 22px;
  --facade: #0b233f;
  --facade-deep: #071829;
  --trim: #b6a36b;
  --trim-soft: #f1ecdd;
}
.bulb-strip { position: absolute; display: block; pointer-events: none; }
.bulb-strip::before, .bulb-strip::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--bulb) 0 3.5px, var(--bulb-glow) 4.5px, rgba(255, 241, 194, 0.18) 7px, transparent 9px);
  background-repeat: repeat;
}
.bulb-strip-h { height: var(--bulb-band); left: 0; right: 0; }
.bulb-strip-h::before, .bulb-strip-h::after { background-size: calc(var(--bulb-pitch) * 2) var(--bulb-band); background-position: 0 50%; }
.bulb-strip-h::after { background-position: var(--bulb-pitch) 50%; }
.bulb-strip-v { width: var(--bulb-band); top: 0; bottom: 0; }
.bulb-strip-v::before, .bulb-strip-v::after { background-size: var(--bulb-band) calc(var(--bulb-pitch) * 2); background-position: 50% 0; }
.bulb-strip-v::after { background-position: 50% var(--bulb-pitch); }
.bulb-strip::after { opacity: 0.45; }
@keyframes chase-a { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.45; } }
@keyframes chase-b { 0%, 49% { opacity: 0.45; } 50%, 100% { opacity: 1; } }
@media (prefers-reduced-motion: no-preference) {
  .marquee .bulb-strip::before { animation: chase-a 1.4s steps(1) infinite; }
  .marquee .bulb-strip::after { animation: chase-b 1.4s steps(1) infinite; }
}

/* NavBar — the canopy */
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  background: var(--brand-navy); color: var(--on-navy);
  padding: var(--space-3) var(--space-6);
  flex-wrap: wrap;
  position: relative;
}
.canopy { padding-bottom: calc(var(--space-3) + var(--bulb-band)); border-bottom: 3px solid var(--trim); }
.canopy-bulbs { bottom: 0; }
.brand { display: flex; align-items: center; text-decoration: none; color: var(--on-navy); }
.mark { height: 56px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35)); }
.links { display: flex; align-items: center; gap: var(--space-6); flex: 1; justify-content: center; flex-wrap: wrap; }
.link {
  font: var(--text-label); text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--on-navy); text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent;
}
.link.active { border-bottom-color: var(--brand-gold); }
.link:focus-visible, .nav .btn:focus-visible { outline-color: var(--brand-gold); }

/* Buttons */
.btn {
  appearance: none; border: none; cursor: pointer; text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font: var(--text-label); text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  white-space: nowrap;
}
.btn-primary { background: var(--brand-navy); color: var(--on-navy); }
.btn-primary:hover { background: var(--brand-navy-strong); }
.btn-secondary { background: var(--brand-gold); color: var(--on-gold); }
.btn-secondary:hover { filter: brightness(0.94); }
.btn-ghost { background: transparent; color: var(--brand-navy-strong); border: 1px solid var(--border); padding: calc(var(--space-3) - 1px) calc(var(--space-6) - 1px); }
.btn-ghost:hover { background: var(--surface-sunken); }
.btn-ghost-on-navy { background: transparent; color: var(--on-navy); border: 1px solid rgba(255,255,255,0.5); padding: calc(var(--space-3) - 1px) calc(var(--space-6) - 1px); }
.btn-ghost-on-navy:hover { background: rgba(255,255,255,0.08); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.nav-cta { padding: var(--space-2) var(--space-5); }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: 12px; line-height: 16px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.badge-genre { background: var(--brand-gold); color: var(--on-gold); }
.badge-neutral { background: var(--surface-sunken); color: var(--ink-muted); border: 1px solid var(--border-subtle); }
.badge-warning { background: var(--warning); color: var(--on-warning); }
.badge-danger { background: var(--danger); color: var(--on-danger); }
.badge-success { background: var(--success); color: var(--on-success); }
.badges { display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: flex-end; }

/* Facade — the night-lit front of the house */
.hero.facade {
  color: var(--on-navy);
  padding: var(--space-12) 0 var(--space-16);
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 241, 194, 0.06), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 96px),
    radial-gradient(ellipse 70% 60% at 50% 100%, #1a3a63, transparent 70%),
    var(--facade);
}
.hero.facade.compact { padding: var(--space-8) 0; }

/* Marquee — a lit sign framed in trim and round bulbs */
.marquee, .marquee-lite {
  position: relative;
  background: var(--facade-deep);
  border: 3px solid var(--trim);
  box-shadow: 0 0 0 6px var(--facade-deep), 0 0 0 7px rgba(232, 179, 44, 0.45), 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 0 40px rgba(255, 241, 194, 0.06);
  border-radius: var(--radius-sm);
}
.marquee { padding: var(--bulb-band); }
.marquee-lite { padding: var(--bulb-band) 0; }
.marquee-top { top: 0; }
.marquee-bottom { bottom: 0; }
.marquee-left { left: 0; }
.marquee-right { right: 0; }
.marquee-board {
  background: var(--brand-navy);
  border: 1px solid rgba(232, 179, 44, 0.35);
  padding: var(--space-8) var(--space-8) var(--space-10, 40px);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3);
}
.marquee-lite .marquee-board { padding: var(--space-6) var(--space-8); border-left: none; border-right: none; }
.marquee-mark { height: 88px; width: auto; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)); margin-bottom: var(--space-2); }
.letterboard {
  display: inline-block;
  background: var(--trim-soft); color: var(--facade);
  font: var(--text-label); text-transform: uppercase; letter-spacing: 0.18em;
  padding: var(--space-1) var(--space-4);
  border-radius: 2px;
  box-shadow: inset 0 -2px 0 rgba(10, 24, 48, 0.15);
}
.eyebrow { font-size: 13px; line-height: 16px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-gold); }
.eyebrow-ink { color: var(--brand-gold-strong); }
.marquee .display-1 { color: #fff8e1; max-width: 820px; overflow-wrap: anywhere; text-shadow: 0 0 28px rgba(255, 241, 194, 0.28), 0 2px 0 rgba(0, 0, 0, 0.4); }
.marquee-lite .display-2 { color: #fff8e1; text-shadow: 0 0 20px rgba(255, 241, 194, 0.22); }
.marquee .sub, .marquee-lite .sub { font: var(--text-body-lg); color: var(--on-navy); opacity: 0.85; max-width: 600px; }
.marquee .actions { justify-content: center; }
.marquee-lite .top-row { justify-content: center; align-items: center; flex-wrap: wrap; }
.marquee-lite.event { margin-bottom: var(--space-6); }
.actions { display: flex; gap: var(--space-4); margin-top: var(--space-2); flex-wrap: wrap; }

/* Rialto-style crown marquee (home page). Small screens keep the rectangular sign above. */
/* Limelight is a deco marquee face; the fallbacks keep the weight if it fails to load. */
:root { --font-marquee: 'Limelight', 'Abril Fatface', Georgia, serif; }
.marquee-frame { display: none; }
.marquee-name { font-family: var(--font-marquee); font-size: 40px; line-height: 1; color: #fff8e1; text-shadow: 0 0 22px rgba(255, 241, 194, 0.35), 0 2px 0 rgba(0, 0, 0, 0.4); margin-top: var(--space-2); }
.presents { font: var(--text-label); text-transform: uppercase; letter-spacing: 0.32em; color: var(--brand-gold); }
.letterboard-panel {
  position: relative; width: 100%;
  background: #f7f1df; color: #0b0b0b;
  padding: var(--space-5) var(--space-4);
  border: 2px solid var(--trim);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.08), 0 0 36px rgba(255, 241, 194, 0.28);
  margin: var(--space-3) 0;
}
.letterboard-panel .display-1 {
  font-family: var(--font-sans); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 32px; line-height: 1.1; color: #0b0b0b; text-shadow: none; max-width: none; overflow-wrap: anywhere;
  text-wrap: balance;
}
.letterboard-panel .eyebrow { color: #0b0b0b; letter-spacing: 0.3em; margin-top: var(--space-2); }

@media (min-width: 700px) {
  .marquee.rialto {
    container-type: inline-size;
    aspect-ratio: 1000 / 800;
    background: transparent; border: none; box-shadow: none; padding: 0;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.5));
  }
  .rialto .marquee-top, .rialto .marquee-bottom, .rialto .marquee-left, .rialto .marquee-right { display: none; }
  .rialto .marquee-frame { display: block; position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
  .frame-outer { fill: var(--facade-deep); stroke: var(--trim); stroke-width: 5; }
  .frame-trim { fill: none; stroke: rgba(232, 179, 44, 0.45); stroke-width: 1.5; }
  .frame-board { fill: var(--brand-navy); }
  .frame-inner-trim { fill: none; stroke: rgba(232, 179, 44, 0.35); stroke-width: 1; }
  .frame-bulbs path { fill: none; stroke: var(--bulb); stroke-width: 9; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 0.01 27; vector-effect: non-scaling-stroke; }
  .frame-bulbs .bulbs-b { stroke-dashoffset: 13.5; opacity: 0.45; }
  @media (prefers-reduced-motion: no-preference) {
    .frame-bulbs .bulbs-a { animation: chase-a 1.4s steps(1) infinite; }
    .frame-bulbs .bulbs-b { animation: chase-b 1.4s steps(1) infinite; }
  }
  .rialto .marquee-board {
    position: relative; height: auto; min-height: 100%; box-sizing: border-box;
    background: transparent; border: none;
    /* Bottom padding keeps a long title clear of the bottom bulb row; the sign grows with its content. */
    padding: 10.5% 14% 13%;
    justify-content: flex-start; gap: 1.1cqw;
  }
  .rialto .marquee-mark { height: 11cqw; margin: 0; }
  .rialto .marquee-name { font-size: 5.4cqw; margin: 0; white-space: nowrap; }
  .rialto .presents { font-size: 1.5cqw; }
  .rialto .letterboard-panel { padding: 2.4cqw 3cqw; margin: 1.4cqw 0 0.6cqw; }
  .rialto .letterboard-panel .display-1 { font-size: 5.4cqw; letter-spacing: 0.1em; }
  .rialto .letterboard-panel .eyebrow { font-size: 1.7cqw; margin-top: 1cqw; }
  .rialto .sub { font-size: 1.85cqw; line-height: 1.45; max-width: 66cqw; margin-top: 0.8cqw; }
  .rialto .actions { margin-top: 0.6cqw; }
}
@media (min-width: 1000px) {
  .marquee.rialto { aspect-ratio: 1000 / 720; }
  .rialto .marquee-board { padding-bottom: 10%; }
}

/* Ornamented headings — Beaux-Arts lobby rules */
.ornate { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-6); }
.ornate .h1, .ornate .h2 { margin: 0; white-space: nowrap; }
.ornate .rule { flex: 1; height: 0; border-top: 1px solid var(--brand-gold-strong); position: relative; opacity: 0.7; }
.ornate .rule::before { content: ""; position: absolute; top: -4px; left: 50%; width: 7px; height: 7px; background: var(--brand-gold-strong); transform: translateX(-50%) rotate(45deg); }
.ornate:not(.left) .rule::before { left: 100%; }
.ornate:not(.left) .rule + .h2 + .rule::before { left: 0; }
.ornate.left .rule::before { left: 0; }

/* Sections */
.section { padding: var(--space-12) 0; }
.section.band { background: var(--surface-sunken); }
.section > .container > .h2 { margin-bottom: var(--space-6); }
.page-head { padding-bottom: 0; }
.page-head .h1, .page-head .display-2 { margin-bottom: var(--space-3); }
.page-head .body-lg { color: var(--ink-muted); max-width: 720px; }
.page-head .badge { margin-bottom: var(--space-3); }
.page-head .btn { margin-top: var(--space-6); }
.top-row { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-3); }
.meta { color: var(--ink-muted); }

/* ShowCard grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-6); }
.card {
  background: var(--surface-raised); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
  display: flex; flex-direction: column;
}
.poster { height: 200px; background: var(--brand-navy); position: relative; overflow: hidden; }
.poster svg, .poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.card-title { font-family: var(--font-display); font-size: 32px; line-height: 34px; font-weight: 400; }
.card-title a { color: var(--ink); text-decoration: none; }
.card-title a:hover { text-decoration: underline; text-decoration-color: var(--brand-gold); }
.synopsis { color: var(--ink-muted); flex: 1; }
.card .actions { margin-top: var(--space-2); }

/* Support band */
.support { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-12); align-items: start; }
.support .body-lg { margin: var(--space-3) 0 var(--space-4); color: var(--ink-muted); }
.tier-list { display: grid; gap: var(--space-3); }
.tier-list li {
  display: grid; grid-template-columns: 1fr auto; gap: 0 var(--space-4);
  padding: var(--space-4); background: var(--surface-raised); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.tier-list .label { text-transform: uppercase; color: var(--ink-muted); }
.tier-list .h3 { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.tier-list .body-sm { color: var(--ink-muted); }

/* Show page */
.show-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-12); align-items: start; }
.show-copy { display: flex; flex-direction: column; gap: var(--space-4); }
.show-copy .h2 { margin-top: var(--space-4); }
.perf-list { display: flex; flex-direction: column; }
.perf {
  display: grid; grid-template-columns: 1fr auto auto; gap: var(--space-3); align-items: center;
  padding: var(--space-3) 0; border-bottom: 1px solid var(--border-subtle);
}
.perf.past { color: var(--ink-faint); }
.perf .body-sm { color: var(--ink-muted); }

.panel {
  background: var(--surface-raised); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: var(--space-6);
}
.panel .h2 { margin-bottom: var(--space-4); }
.panel.wide { max-width: 880px; margin: 0 auto; }
.panel.event { text-align: center; margin-bottom: var(--space-6); }
.panel.event .display-2 { margin: var(--space-2) 0; }
.panel + .fine, .panel.wide + .fine { margin: var(--space-6) auto 0; max-width: 880px; color: var(--ink-muted); }

/* Forms */
.checkout { display: flex; flex-direction: column; gap: var(--space-5); }
fieldset { border: none; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; margin-bottom: var(--space-3); }
legend.label { text-transform: uppercase; color: var(--ink-muted); }
.field { display: flex; flex-direction: column; gap: var(--space-1); margin-bottom: var(--space-3); }
.field label { font: var(--text-body-sm); font-weight: 600; }
.field .hint { font-weight: 400; color: var(--ink-muted); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="number"], .field input[type="url"], .field select {
  font: var(--text-body); color: var(--ink); background: var(--surface-raised);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3); min-height: 44px; width: 100%;
}
.field.checkbox { flex-direction: row; align-items: flex-start; gap: var(--space-2); }
.field.checkbox input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--brand-navy); }
.field.checkbox label { font-weight: 400; color: var(--ink-muted); }
.buyer legend { margin-bottom: var(--space-3); }
.field .error { color: var(--danger); }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--danger); }

.tiers { display: flex; flex-direction: column; }
.tier-row {
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-3);
  padding: var(--space-2) 0; border-bottom: 1px solid var(--border-subtle);
}
.tier-row label { display: flex; gap: var(--space-2); align-items: baseline; }
.tier-row .price { color: var(--ink-muted); }
.tier-row input {
  width: 72px; min-height: 44px; text-align: center; font: var(--text-body);
  border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-raised); color: var(--ink);
}

.amount-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: var(--space-2); margin-bottom: var(--space-3); }
.amount { position: relative; display: block; }
.amount input { position: absolute; opacity: 0; inset: 0; margin: 0; }
.amount span {
  display: flex; align-items: center; justify-content: center; min-height: 48px;
  border: 1px solid var(--border); border-radius: var(--radius-md); font: var(--text-h3); color: var(--ink);
}
.amount input:checked + span { background: var(--brand-navy); color: var(--on-navy); border-color: var(--brand-navy); }
.amount input:focus-visible + span { outline: 2px solid var(--focus-ring); outline-offset: 2px; }

.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-3); }
.tier-option { position: relative; display: block; }
.tier-option input { position: absolute; opacity: 0; inset: 0; margin: 0; }
.tier-card {
  display: flex; flex-direction: column; gap: var(--space-1); height: 100%;
  padding: var(--space-4); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.tier-card .label { text-transform: uppercase; color: var(--ink-muted); }
.tier-card .body-sm { color: var(--ink-muted); }
.tier-option input:checked + .tier-card { border-color: var(--brand-navy); box-shadow: inset 0 0 0 1px var(--brand-navy); background: var(--surface); }
.tier-option input:focus-visible + .tier-card { outline: 2px solid var(--focus-ring); outline-offset: 2px; }

.pay { display: flex; flex-direction: column; gap: var(--space-3); padding-top: var(--space-4); border-top: 1px solid var(--border); }
.summary { display: flex; justify-content: space-between; align-items: baseline; }
.summary .label { text-transform: uppercase; color: var(--ink-muted); }
.form-error { color: var(--danger); }
.pay .caption { color: var(--ink-muted); }
.pay.busy { opacity: 0.6; pointer-events: none; }

/* Order + tickets */
.ticket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-4); margin-bottom: var(--space-6); }
.ticket {
  background: var(--surface-raised); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); align-items: center;
}
.ticket.used { opacity: 0.6; }
.qr { width: 160px; height: 160px; background: #fff; padding: var(--space-2); border-radius: var(--radius-sm); }
.qr svg { width: 100%; height: 100%; display: block; }
.ticket-meta { display: flex; flex-direction: column; align-items: center; gap: var(--space-1); }
.ticket-meta .label { text-transform: uppercase; color: var(--ink-muted); }
.code { font: var(--text-h3); font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }

.summary-table { width: 100%; border-collapse: collapse; margin: var(--space-3) 0; }
.summary-table td { padding: var(--space-2) 0; border-bottom: 1px solid var(--border-subtle); }
.summary-table .num { text-align: right; white-space: nowrap; }
.summary-table .total td { font-weight: 700; border-bottom: none; }
.panel .caption { color: var(--ink-muted); display: block; margin-top: var(--space-2); }

/* Footer — a small valance of bulbs above the lobby-cream base */
.valance { position: relative; height: calc(var(--bulb-band) + 8px); background: var(--brand-navy); margin-top: var(--space-12); border-top: 3px solid var(--trim); }
.valance .bulb-strip { top: 4px; }
.footer { background: var(--surface-sunken); color: var(--ink); padding: var(--space-12) 0 var(--space-6); }
.footer-mark { height: 72px; width: auto; display: block; margin-bottom: var(--space-3); }
.cols { display: flex; gap: var(--space-12); flex-wrap: wrap; }
.col h2 { font-size: 14px; line-height: 20px; font-weight: 700; margin: 0 0 var(--space-3); }
.col a, .col p { display: block; font: var(--text-body-sm); color: var(--ink-muted); text-decoration: none; margin: 0 0 var(--space-2); }
.col a:hover { color: var(--brand-navy-strong); text-decoration: underline; }
.bottom {
  margin-top: var(--space-8); padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font: var(--text-caption); color: var(--ink-muted); flex-wrap: wrap; gap: var(--space-2);
}

/* Print (tickets) */
@media print {
  .nav, .footer, .valance, .skip-link, .bulb-strip { display: none; }
  .marquee-lite { background: #fff; color: #000; border-color: #999; box-shadow: none; }
  .marquee-lite .marquee-board { background: #fff; }
  .marquee-lite .display-2, .marquee-lite .sub { color: #000; text-shadow: none; opacity: 1; }
  body { background: #fff; color: #000; }
  .section { padding: 0 0 24px; }
  .panel, .ticket { box-shadow: none; border: 1px solid #999; break-inside: avoid; }
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
  a { color: inherit; text-decoration: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .support, .show-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}
@media (max-width: 640px) {
  .nav { padding: var(--space-3) var(--space-4); gap: var(--space-3); }
  .canopy { padding-bottom: calc(var(--space-3) + var(--bulb-band)); }
  .links { order: 3; flex: none; width: 100%; justify-content: flex-start; gap: var(--space-4); flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; mask-image: linear-gradient(90deg, #000 88%, transparent); }
  .links::-webkit-scrollbar { display: none; }
  .link { font-size: 12px; letter-spacing: 0.04em; white-space: nowrap; flex: none; }
  .mark { height: 44px; }
  .hero.facade { padding: var(--space-6) 0 var(--space-8); }
  .marquee { padding: var(--bulb-band) 0; }
  .marquee-left, .marquee-right { display: none; }
  .marquee-board { padding: var(--space-6) var(--space-4); }
  .marquee-mark { height: 64px; }
  .marquee .display-1 { font-size: 40px; line-height: 44px; }
  .marquee-name { font-size: 28px; }
  .letterboard-panel .display-1 { font-size: 24px; }
  .ornate .h1, .ornate .h2 { white-space: normal; }
  .display-2 { font-size: 36px; line-height: 40px; }
  .section { padding: var(--space-8) 0; }
  .panel { padding: var(--space-4); }
  .top-row { flex-direction: column; }
  .badges { justify-content: flex-start; }
}

/* Shop */
.bag-count { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 6px; border-radius: 999px; background: var(--brand-gold); color: var(--brand-navy); font: 600 11px/18px var(--font-sans); vertical-align: middle; }
.bag-count[hidden] { display: none; }
.product-media { height: 240px; display: block; }
.product-media.large { height: auto; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.product-title { font-size: 28px; line-height: 32px; }
.price-tag { font: var(--text-h3); color: var(--brand-navy); }
.price-tag.large { font: var(--text-h2); margin: var(--space-2) 0 var(--space-4); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-8); align-items: start; }
@media (max-width: 800px) { .product-layout { grid-template-columns: 1fr; } }
.product-copy .eyebrow a { color: var(--ink-muted); }
.add-to-bag { margin-top: var(--space-5); padding: var(--space-5); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface-raised); }
.add-to-bag .qty-field input { max-width: 120px; }
.add-to-bag .actions { display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }
.form-success { color: var(--success, #1b7f5c); margin-top: var(--space-3); }
.fine-print { margin-top: var(--space-6); color: var(--ink-muted); display: flex; flex-direction: column; gap: var(--space-2); }
.bag legend, .fulfillment legend { margin-bottom: var(--space-3); }
.bag-rows { display: flex; flex-direction: column; }
.bag-row { display: grid; grid-template-columns: 1fr auto 84px auto; gap: var(--space-3); align-items: center; padding: var(--space-2) 0; border-bottom: 1px solid var(--border-subtle); }
.bag-row .price { color: var(--ink-muted); }
.bag-row input[type="number"] { font: var(--text-body); color: var(--ink); background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: var(--space-2); min-height: 44px; width: 84px; text-align: center; }
.bag-row.shipping-row { color: var(--ink-muted); }
.bag-row .num { text-align: right; }
.btn-link { background: none; border: none; padding: 0; color: var(--ink-muted); text-decoration: underline; cursor: pointer; font: var(--text-body-sm); }
.btn-link:hover { color: var(--ink); }
.fulfillment { margin-top: var(--space-6); }
.fulfillment .tier-grid { margin-bottom: var(--space-4); }
.address-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-3); }
.address-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 560px) { .address-grid { grid-template-columns: 1fr; } .bag-row { grid-template-columns: 1fr auto; } .bag-row .price { grid-column: 1; } }
.fulfillment-panel .body { margin-top: var(--space-2); }

/* PWA install */
.install-btn { margin-top: var(--space-3); }
.install-btn[hidden], .install-hint[hidden] { display: none; }
.install-hint { color: var(--ink-muted); margin-top: var(--space-3); max-width: 28ch; }

/* Calendar page */
.date-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.date-row { display: grid; grid-template-columns: auto 1fr auto; gap: var(--space-4); align-items: center; padding: var(--space-3) var(--space-4); background: var(--surface-raised); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.date-badge { width: 64px; padding: 6px 0; border-radius: var(--radius-md); background: var(--brand-navy); color: var(--on-navy); text-align: center; display: flex; flex-direction: column; line-height: 1; border-bottom: 3px solid var(--brand-gold); }
.date-badge .mon { font: 600 11px/1.2 var(--font-sans); letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-gold); }
.date-badge .day { font: 400 30px/1.1 var(--font-display); }
.date-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.date-copy .h3 { color: var(--ink); text-decoration: none; }
.date-copy .h3:hover { text-decoration: underline; text-decoration-color: var(--brand-gold); }
.calendar-frame { position: relative; background: var(--brand-navy); border-radius: var(--radius-lg); padding: calc(var(--bulb-band) + 10px) 14px; box-shadow: var(--shadow-md); }
.calendar-frame .bulb-strip { left: 12px; right: 12px; }
.calendar-frame .marquee-top { top: 6px; }
.calendar-frame .marquee-bottom { bottom: 6px; }
.calendar-board { background: var(--surface); border: 3px solid var(--trim, var(--brand-gold)); border-radius: var(--radius-md); overflow: hidden; }
.gcal { display: block; width: 100%; border: 0; background: var(--surface); }
.gcal-month { height: 720px; }
.gcal-agenda { display: none; height: 620px; }
.calendar-banner .marquee-board { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); }
.calendar-banner .marquee-mark { margin-bottom: 0; }
.calendar-banner .display-2 { margin: 0; }
.calendar-banner .sub { max-width: 64ch; margin: 0; color: var(--on-navy-muted, rgba(255, 248, 225, 0.8)); text-wrap: balance; }
/* Contact page */
.stack { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-12); align-items: start; }
.contact-info .h2 { margin: var(--space-2) 0 var(--space-3); }
.contact-info .h3 { margin-bottom: var(--space-1); }
.contact-info .body { color: var(--ink-muted); }
.contact-address { font-style: normal; line-height: 1.6; }
.contact-panel .h2 { margin-bottom: var(--space-4); }
.field textarea { font: var(--text-body); color: var(--ink); background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: var(--space-2) var(--space-3); width: 100%; resize: vertical; min-height: 160px; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--danger); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-sent .h2 { margin: var(--space-2) 0 var(--space-3); }
.row-between { display: flex; justify-content: space-between; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; gap: var(--space-8); } }

/* Productions archive */
.season-title { white-space: nowrap; }
.poster-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-8) var(--space-6); justify-content: center; }
.poster-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-2); }
.poster-frame { display: block; width: 100%; background: var(--brand-navy); padding: 8px; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.poster-frame img, .poster-placeholder { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border: 2px solid var(--brand-gold); border-radius: 4px; background: #000; }
a.poster-frame img { transition: transform .25s ease; }
a.poster-frame:hover img { transform: scale(1.02); }
.poster-placeholder { display: grid; place-items: center; background: radial-gradient(ellipse at 50% 30%, #1a3a63, var(--brand-navy-strong)); }
.poster-letter { font: var(--text-display-1); color: var(--brand-gold); }
.poster-title { margin-top: var(--space-2); }
.poster-kind { color: var(--ink-muted); }

/* Courses page */
.cougar-mark { height: 132px; width: auto; border-radius: 50%; box-shadow: 0 0 0 3px var(--brand-gold), 0 6px 18px rgba(0, 0, 0, 0.45); filter: none; }
@media (max-width: 640px) { .cougar-mark { height: 104px; } }
.start-here { text-align: center; max-width: 66ch; margin: 0 auto; }
.start-here .eyebrow { margin-bottom: var(--space-3); }
.start-here .display-2 { margin-bottom: var(--space-4); text-wrap: balance; }
.start-here .body-lg { color: var(--ink-muted); text-wrap: pretty; }
.tracks { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.track { background: var(--surface-raised); border-radius: var(--radius-lg); padding: var(--space-6); border-top: 4px solid var(--brand-gold); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-3); }
.track .body { color: var(--ink-muted); }
.track-list { list-style: none; margin: var(--space-2) 0 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.track-list li { display: flex; gap: var(--space-3); align-items: center; padding: var(--space-3) 0; border-top: 1px solid var(--border-subtle); }
.track-level { flex: 0 0 auto; min-width: 64px; text-align: center; background: var(--brand-navy); color: var(--brand-gold); font: var(--text-label); letter-spacing: 0.08em; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--brand-gold); }
.seal-band .eyebrow { color: var(--on-gold); opacity: .8; margin-bottom: var(--space-3); }
.seal-band .why-title { max-width: 26ch; margin-left: auto; margin-right: auto; margin-bottom: var(--space-4); text-wrap: balance; }
.seal-band .body-lg { color: var(--on-gold); max-width: 50ch; margin: 0 auto; }
.seal-band .story-actions .btn-ghost { border-color: var(--brand-navy); color: var(--brand-navy); }
@media (max-width: 800px) { .tracks { grid-template-columns: 1fr; } }

/* Thespians page */
.why-band { background: var(--brand-gold); color: var(--on-gold); text-align: center; }
.why-title { margin-bottom: var(--space-8); color: var(--on-gold); }
.why-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.why-grid li { display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.why-grid .body-lg { max-width: 30ch; color: var(--on-gold); }
.mask-badge { width: 176px; height: 176px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); border: 3px solid var(--brand-navy); }
.mask-badge img { width: 132px; height: auto; display: block; }
.ga-thespians { display: inline-block; background: #fff; border-radius: var(--radius-sm); padding: 2px 10px; margin-top: var(--space-2); box-shadow: var(--shadow-sm); }
.ga-thespians img { display: block; height: 96px; width: auto; }
@media (max-width: 640px) { .ga-thespians img { height: 72px; } }
.req-list { list-style: none; margin: 0 auto; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-5); max-width: 1100px; }
.req-list li { flex: 0 1 340px; }
.req-list li { display: flex; gap: var(--space-4); align-items: flex-start; box-sizing: border-box; background: var(--surface-raised); border-radius: var(--radius-lg); padding: var(--space-5); border-top: 3px solid var(--brand-gold); box-shadow: var(--shadow-sm); }
.req-list .body { color: var(--ink-muted); margin-top: var(--space-1); }
.req-num { flex: 0 0 44px; height: 44px; border-radius: 50%; background: var(--brand-navy); color: var(--brand-gold); font: var(--text-h3); display: grid; place-items: center; border: 2px solid var(--brand-gold); }
.req-note { text-align: center; margin-top: var(--space-5); }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; gap: var(--space-6); } .mask-badge { width: 150px; height: 150px; } .mask-badge img { width: 110px; } .req-list li { flex-basis: 100%; } }

.calendar-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; margin-top: var(--space-5); }
.calendar-empty { text-align: center; }
@media (max-width: 720px) {
  .gcal-month { display: none; }
  .gcal-agenda { display: block; }
  .date-row { grid-template-columns: auto 1fr; }
  .date-row .btn { grid-column: 2; justify-self: start; }
}

/* Photo galleries */
/* Home: "Sharing our why" — students first, in a mixed-size mosaic */
.story-band { background: var(--surface); }
.story-copy { text-align: center; max-width: 72ch; margin: 0 auto var(--space-8); }
.story-copy .eyebrow { margin-bottom: var(--space-3); }
.story-heading { margin-bottom: var(--space-4); text-wrap: balance; }
.story-body { color: var(--ink-muted); text-wrap: pretty; }
.story-actions { justify-content: center; margin-top: var(--space-8); }
.mosaic { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: var(--space-4); }
.mosaic-item { background: var(--brand-navy); border-radius: var(--radius-md); padding: 6px; box-shadow: var(--shadow-md); min-width: 0; }
.mosaic.few { grid-auto-rows: 280px; }
.mosaic.cols-1 { grid-template-columns: minmax(0, 640px); justify-content: center; }
.mosaic.cols-2 { grid-template-columns: repeat(2, 1fr); }
.mosaic.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mosaic.few .mosaic-item.wide, .mosaic.few .mosaic-item.tall { grid-column: auto; grid-row: auto; }
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.feature { grid-column: span 2; grid-row: span 2; }
.mosaic-item a { position: relative; display: block; height: 100%; border: 2px solid var(--brand-gold); border-radius: 4px; overflow: hidden; background: #000; }
.mosaic-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.mosaic-item a:hover img, .mosaic-item a:focus-visible img { transform: scale(1.04); }
.mosaic-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-5) var(--space-3) var(--space-2);
  color: #fff8e1; font: var(--text-body-sm); text-align: left;
  background: linear-gradient(180deg, transparent, rgba(11, 35, 63, 0.85));
}
@media (max-width: 900px) { .mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; gap: var(--space-3); } }
@media (max-width: 640px) { .mosaic, .mosaic.cols-3 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } .mosaic.few { grid-auto-rows: 180px; } .mosaic-item.wide { grid-column: span 2; } .mosaic-caption { display: none; } }

/* Support band */
.support-band .support-lede { text-align: center; max-width: 60ch; margin: 0 auto var(--space-8); color: var(--ink-muted); }
.impact { list-style: none; margin: 0 0 var(--space-12); padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-4); }
.impact li { background: var(--surface-raised); border-radius: var(--radius-lg); padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); border-top: 3px solid var(--brand-gold); box-shadow: var(--shadow-sm); }
.impact-icon { font-size: 28px; line-height: 1; }
.impact .body-sm { color: var(--ink-muted); }
.support-band .support { align-items: center; }

.faq { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); }
.faq-item { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item .body { color: var(--ink-muted); }
.page-head .eyebrow { color: var(--brand-gold-strong); margin-bottom: var(--space-2); }
