/* ============================================================
   THE REP STL — Main Stylesheet
   assets/css/main.css
   ============================================================ */

/* ----- CUSTOM PROPERTIES ----- */
:root {
  /* ── Colors ── */
  --red:        #cd1543;
  --red-dark:   #a41136;
  --black:      #1a1a1a;
  --charcoal:   #2d2d2d;
  --gray-light: #f4f4f4;
  --gray-mid:   #dddddd;
  --gray-text:  #666666;
  --white:      #ffffff;
  --off-white:  #f5f5f5;

  --serif:            'Poppins', -apple-system, Helvetica, Arial, sans-serif;
  --sans:             'Poppins', -apple-system, Helvetica, Arial, sans-serif;
  --font-size-base:   17px;
  --line-height-base: 1.65;

  /* ── Layout ── */
  --max-width:        1140px;
  --gutter:           24px;
  --nav-height:       100px;
  --section-padding:  68px;

  /* ── Motion ── */
  --transition: 0.2s;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--black); background: var(--white); font-size: var(--font-size-base); line-height: var(--line-height-base); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ----- UTILITIES ----- */
.container         { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only           { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section           { padding: var(--section-padding) 0; }
.section-alt       { background: var(--gray-light); }
.section-label     { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section-heading   { font-family: var(--serif); font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--black); line-height: 1.15; }
.section-header-row{ display: flex; align-items: center; gap: 20px; margin-bottom: 44px; }
.section-header-row .section-heading { white-space: nowrap; }
.rule              { flex: 1; height: 1px; background: var(--gray-mid); }
.view-all          { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); white-space: nowrap; }
.view-all:hover    { text-decoration: underline; }

/* Mobile */
@media (max-width: 600px) {
  .section-header-row { flex-wrap: wrap; row-gap: 8px; }
  .section-header-row .section-heading { white-space: normal; }
}

/* ----- BUTTONS ----- */
.btn              { display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 13px 26px; transition: background var(--transition), color var(--transition), border-color var(--transition); line-height: 1; font-variant-numeric: lining-nums; }
.btn-red          { background: var(--red); color: var(--white); }
.btn-red:hover    { background: var(--red-dark); color: var(--white); }
.btn-ghost        { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-ghost:hover  { border-color: var(--white); }
.btn-white        { background: var(--white); color: var(--red); }
.btn-white:hover  { background: #f0f0f0; }
.btn-red-outline  { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-red-outline:hover { background: var(--red); color: var(--white); }

.wp-block-button__link {
  display: inline-block; font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 13px 26px; line-height: 1;
  font-variant-numeric: lining-nums; border-radius: 0;
  background: var(--red); color: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.wp-block-button__link:hover { background: var(--red-dark); color: var(--white); }

/* Mobile*/
@media (max-width: 600px) {
  .wp-block-button.has-custom-width { width: 100% !important; }
}

/* ----- UTILITY BAR ----- */
.util-bar         { background: var(--black); color: rgba(255,255,255,0.7); font-size: 13px; padding: 6px 0; }
.util-bar__inner  { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: flex-end; gap: 24px; }
.util-bar a       { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.util-bar a:hover { color: var(--white); }

/* ----- SITE HEADER ----- */
.site-header { background: var(--white); border-bottom: 4px solid var(--red); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 6px rgba(0,0,0,0.07); overflow: visible; }
.site-header__inner      { width: 100%; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }
.site-header__branding   { font-family: var(--serif); font-size: 1.3rem; font-weight: 900; color: var(--black); line-height: 1.1; flex-shrink: 0; display: flex; align-items: center; }
.site-header__branding span { display: block; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-text); }
.site-header__branding a { display: flex; align-items: center; }

/* ----- PRIMARY NAV ----- */
.primary-nav             { display: flex; align-items: center; gap: 2px; }
.primary-nav__link       { font-size: 18px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--charcoal); padding: 8px 16px; position: relative; transition: color var(--transition); }
.primary-nav__link::after { content: ''; position: absolute; bottom: -4px; left: 13px; right: 13px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform var(--transition); }
.primary-nav__link:hover { color: var(--red); }
.primary-nav__link:hover::after { transform: scaleX(1); }
.primary-nav__donate     { background: var(--red); color: var(--white); margin-left: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 9px 20px; transition: background var(--transition); }
.primary-nav__donate:hover { background: var(--red-dark); color: var(--white); }

/* Mobile nav toggle */
.nav-toggle              { display: none; background: none; border: none; padding: 6px; color: var(--black); }
.nav-toggle svg          { width: 24px; height: 24px; }

/* ----- HERO ----- */
.hero                    { position: relative; overflow: hidden; width: 100%; }
.hero__slides            { width: 100%; aspect-ratio: 1600 / 700; }
.hero__slide             { display: none; width: 100%; height: 100%; position: relative; }
.hero__slide.is-active   { display: block; }
.hero__slide-img         { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__slide-video       { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__slide-link        { display: block; width: 100%; height: 100%; }

/* Background YouTube/Vimeo embed, scaled to always cover the hero box */
.hero__slide-embed-wrap          { position: absolute; inset: 0; overflow: hidden; }
.hero__slide-embed-wrap iframe   { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; pointer-events: none; }

/* Optional promo text overlay (heading/subtext/button) on a slide */
.hero__overlay           { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0.05) 75%); }
.hero__content           { position: absolute; left: 0; bottom: 0; z-index: 2; width: 100%; max-width: 640px; padding: 32px var(--gutter) 56px; color: var(--white); }
.hero__heading           { font-family: var(--serif); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.08; margin-bottom: 14px; }
.hero__subtext           { font-size: 17px; line-height: 1.5; margin-bottom: 26px; max-width: 520px; }
.hero__cta               { display: inline-block; }

@media (max-width: 600px) {
  .hero__slides          { aspect-ratio: 4 / 3; }
  .hero__slide-img       { object-fit: contain; background: var(--black); }
  .hero__content          { padding: 24px var(--gutter) 36px; max-width: 100%; }
  .hero__heading          { font-size: 1.5rem; }
  .hero__subtext          { font-size: 15px; margin-bottom: 20px; }
}

/* Slider controls */
.hero__prev,
.hero__next              { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(0,0,0,0.4); border: none; color: var(--white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); }
.hero__prev:hover,
.hero__next:hover        { background: var(--red); }
.hero__prev              { left: 16px; }
.hero__next              { right: 16px; }
.hero__prev svg,
.hero__next svg          { width: 20px; height: 20px; }

.hero__dots              { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero__dot               { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: background var(--transition); }
.hero__dot.is-active     { background: var(--white); }

/* ----- SEASON BANNER ----- */
.season-banner           { background: var(--red); color: var(--white); padding: 13px 0; }
.season-banner__inner    { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.season-banner__text     { font-size: 20px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.season-banner__link     { color: var(--white); font-size: 20px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; letter-spacing: 0.05em; }

/* ----- CUSTOM LOGO ----- */
.site-header__branding img,
.site-header__branding .custom-logo-link img,
.custom-logo { height: var(--nav-height) !important; width: auto !important; max-width: none !important; display: block !important; }

/* ----- SHOW CARDS ----- */
.shows-grid              { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; }
.show-card               { background: var(--white); border: 1px solid var(--gray-mid); display: flex; flex-direction: column; position: relative; }
.show-card__img          { background: #1c1c1c; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; }
.show-card__img img      { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.show-card:hover .show-card__img img { transform: scale(1.02); }
.show-card__img-placeholder { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,0.2); font-style: italic; text-align: center; padding: 20px; line-height: 1.4; }
.show-card__body         { padding: 18px 18px 0; flex: 1; }
.show-card__dates        { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 5px; }
.show-card__title        { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 6px; }
.show-card__byline       { font-size: 16px; color: var(--gray-text); font-style: italic; line-height: 1.4; }
.show-card__byline p:not(:first-child) { margin-top: 4px; }
.show-card__footer       { border-top: 1px solid var(--gray-mid); padding: 12px 18px; margin-top: 16px; display: flex; justify-content: flex-end; }
.show-card__link         { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.show-card__link:hover   { text-decoration: underline; }
.show-card__link::after  { content: ''; position: absolute; inset: 0; }

/* Mobile: horizontal swipe strip instead of a grid (no auto-cycling) */
@media (max-width: 600px) {
  .shows-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    margin: 0 calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 12px;
  }
  .shows-grid::-webkit-scrollbar { display: none; }
  .shows-grid .show-card {
    scroll-snap-align: start;
    flex: 0 0 78%;
  }
}

/* ----- SPOTLIGHT (image + text half) ----- */
.spotlight               { display: grid; grid-template-columns: 1fr 1fr; }
.spotlight__img          { min-height: 460px; background: #111; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.spotlight__img img      { width: 100%; height: 100%; object-fit: cover; }
.spotlight__img-placeholder { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,0.18); font-style: italic; text-align: center; padding: 40px; }
.spotlight__text         { background: var(--black); color: var(--white); padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; }
.spotlight__text .section-label { color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.spotlight__title        { font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; }
.spotlight__desc         { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }

/* ----- BOX OFFICE HOURS ----- */
.boxoffice-section      { background: var(--black); color: var(--white); padding: 56px 0; }
.boxoffice__layout      { display: block; }
.boxoffice__layout.has-image { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.boxoffice__heading     { font-family: var(--sans); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.boxoffice__hours-summary { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 32px; text-align: center; }
.boxoffice__grid        { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.boxoffice__item        { display: flex; align-items: flex-start; gap: 20px; }
.boxoffice__icon        { flex-shrink: 0; width: 48px; height: 48px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.boxoffice__icon svg    { width: 22px; height: 22px; color: var(--white); }
.boxoffice__label       { font-size: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.boxoffice__phone       { display: block; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.04em; margin-bottom: 8px; font-variant-numeric: lining-nums; }
.boxoffice__phone:hover { color: rgba(255,255,255,0.8); }
.boxoffice__address     { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.boxoffice__notes       { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; flex-direction: column; gap: 10px; max-width: 600px; }
.boxoffice__notes p     { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.65; }
.boxoffice__media       { align-self: stretch; }
.boxoffice__media-img   { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .boxoffice__layout.has-image { grid-template-columns: 1fr; gap: 32px; }
  .boxoffice__media { order: -1; }
  .boxoffice__media-img { min-height: 220px; }
}
@media (max-width: 600px) {
  /*  */
  .boxoffice__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ----- DONATE BAND ----- */
.donate-band             { margin-top: 24px; background: var(--red); color: var(--white); padding: var(--section-padding) 0; text-align: center; }
.donate-band__title      { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 14px; line-height: 1.1; }
.donate-band__desc       { font-size: 20px; font-weight: 500; max-width: 540px; margin: 0 auto 32px; opacity: 0.9; line-height: 1.6; }

.donate-band--image      { padding: 0; background: none; }
.donate-band__image-link { display: block; transition: opacity var(--transition); }
.donate-band__image-link:hover,
.donate-band__image-link:focus-visible { opacity: 0.92; }
.donate-band__image      { width: 100%; height: auto; display: block; }

/* ----- BLOCKQUOTE ----- */
.blockquote-section      { padding: 56px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.blockquote-section blockquote { border-left: 4px solid var(--red); padding: 16px 32px; }
.blockquote-section blockquote p { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--black); line-height: 1.45; margin-bottom: 10px; }
.blockquote-section blockquote cite { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); font-style: normal; }

/* ----- EMAIL SIGNUP ----- */
.signup-bar              { background: var(--gray-light); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); padding: 40px 0; }
.signup-bar__inner       { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.signup-bar__heading     { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.signup-bar__sub         { font-size: 14px; color: var(--gray-text); }
.signup-bar__form        { display: flex; }
.signup-bar__input       { padding: 12px 16px; font-family: var(--sans); font-size: 14px; border: 1px solid var(--gray-mid); border-right: none; outline: none; min-width: 260px; color: var(--black); background: var(--white); }
.signup-bar__input:focus { border-color: var(--red); }
.signup-bar__btn         { background: var(--red); color: var(--white); border: none; padding: 12px 20px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background var(--transition); }
.signup-bar__btn:hover   { background: var(--red-dark); }

/* ----- SITE FOOTER ----- */
.site-footer              { background: var(--black); color: rgba(255,255,255,0.65); }

/* Dark nav band */
.site-footer__nav         { padding: 56px 0 40px; }

/* */
.site-footer__grid        { display: grid; grid-template-columns: 210px repeat(4, minmax(130px, 1fr)) 210px; gap: 28px; align-items: start; }
.site-footer__col h4      { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer__col li      { margin-bottom: 8px; }
.site-footer__col a       { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.site-footer__col a:hover { color: var(--white); }

.site-footer__brand       { display: flex; flex-direction: column; gap: 18px; }
.site-footer__logo img,
.site-footer__logo .custom-logo { max-width: 150px; height: auto; }
.site-footer__brand-name  { font-family: var(--serif); font-size: 1.2rem; font-weight: 900; color: var(--white); line-height: 1.2; }
.site-footer__social      { display: grid; grid-template-columns: repeat(3, auto); gap: 8px; }
.site-footer__social-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: transparent !important;
  border: 2px solid var(--red) !important;
  color: var(--red) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.site-footer__social-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor !important;
}
.site-footer__social-icon:hover,
.site-footer__social-icon:focus-visible {
  background: var(--red) !important;
  color: var(--white) !important;
}
.site-footer__social-icon:hover { background: var(--red); color: var(--white); }

.site-footer__contact-name { font-family: var(--serif); font-size: 1rem; font-weight: 900; color: var(--white); margin-bottom: 14px; line-height: 1.3; }
.site-footer__address,
.site-footer__phones       { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 10px; }
.site-footer__phones a     { color: var(--red); white-space: nowrap; }
.site-footer__phones a:hover { text-decoration: underline; }

/* Bottom bar */
.site-footer__bottom       { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; font-size: 12px; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.site-footer__bottom a     { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.site-footer__bottom a:hover { color: var(--white); }
.site-footer__legal        { display: flex; gap: 20px; }

/* ----- SITE FOOTER RESPONSIVE ----- */
@media (max-width: 1024px) {
  .site-footer__grid       { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .site-footer__grid       { grid-template-columns: 1fr; }
}

/* ----- INTERIOR PAGE LAYOUT ----- */
.page-header             { background: var(--black); color: var(--white); padding: 48px 0 40px; border-bottom: 4px solid var(--red); }
.page-header__title      { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; }
.page-header__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 12px; letter-spacing: 0.05em; }
.page-header__breadcrumb a { color: rgba(255,255,255,0.5); }
.page-header__breadcrumb a:hover { color: var(--white); }
.page-header--light      { background: var(--white); color: var(--black); border-bottom: 1px solid var(--gray-mid); }

.content-area            { padding: 56px 0; }
.entry-content            { max-width: 1140px; margin: 0 auto; }
.entry-content > *        { max-width: 760px; margin-left: auto; margin-right: auto; }
.entry-content > .alignwide { max-width: 1000px; }
.entry-content > .alignfull  { max-width: none; }
.entry-content p         { margin-bottom: 1.4em; }
.entry-content h2        { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; margin: 1.8em 0 0.6em; }
.entry-content h3        { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin: 1.5em 0 0.5em; }
.entry-content ul        { list-style: none; padding-left: 0; margin-bottom: 1.4em; }
.entry-content ul li     { position: relative; padding-left: 1.4em; margin-bottom: 0.4em; }
.entry-content ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; background: var(--red); }
.entry-content ol        { list-style: decimal; padding-left: 1.5em; margin-bottom: 1.4em; }
.entry-content a:not(.btn):not(.wp-block-button__link) { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.entry-content blockquote { border-left: 4px solid var(--red); padding: 14px 28px; background: var(--gray-light); margin: 2em 0; font-family: var(--serif); font-style: italic; font-size: 1.1rem; }

/* ----- WORDPRESS ALIGNMENT CLASSES ----- */
.alignleft   { float: left; margin: 0 1.5em 1em 0; }
.alignright  { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.alignwide   { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull   { width: 100vw; margin-left: calc(50% - 50vw); }

/* ----- RESPONSIVE ----- */

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; }
  .primary-nav { display: none; }
  .primary-nav.is-open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--red); padding: 16px var(--gutter); gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .primary-nav__link { padding: 20px 0; }
  .primary-nav__donate { margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: block; }
  .site-header { position: relative; }
}
@media (max-width: 600px) {
  .signup-bar__inner { flex-direction: column; align-items: flex-start; }
  .signup-bar__input { min-width: 200px; }
  .spotlight__text { padding: 40px 24px; }
  .season-banner__inner { flex-direction: column; align-items: flex-start; }
}

/* ----- SHOW PAGE ----- */

/* Hero */
.show-hero               { position: relative; width: 100%; background: var(--black); overflow: hidden; }
.show-hero__img          { display: block; width: 100%; height: auto; }
.show-hero__overlay      { display: none; }
.show-hero__content      { position: relative; z-index: 1; width: 100%; padding: 56px 0; }
.show-hero__breadcrumb   { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 16px; letter-spacing: 0.04em; }
.show-hero__breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.show-hero__breadcrumb a:hover { color: var(--white); }
.show-hero__dates        { font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; opacity: 0.9; }
.show-hero__title        { font-family: var(--serif); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--white); line-height: 1.0; margin-bottom: 12px; }
.show-hero__byline       { font-size: 16px; color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 28px; }
.show-hero__cta          { font-size: 14px; padding: 15px 36px; }
.show-hero__onsale       { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 13px 26px; }

/* Body layout */
.show-body               { padding: 56px 0; }
.show-body__grid         { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }

/* Sidebar */
.show-sidebar__poster    { margin-bottom: 0; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.show-sidebar__info      { background: var(--gray-light); border-top: 3px solid var(--red); padding: 24px; margin-top: 0; }
.show-sidebar__row       { padding: 12px 0; border-bottom: 1px solid var(--gray-mid); }
.show-sidebar__row:last-of-type { border-bottom: none; }
.show-sidebar__label     { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 4px; }
.show-sidebar__value     { display: block; font-size: 15px; font-weight: 600; color: var(--black); }
.show-sidebar__btn       { display: block; text-align: center; margin-top: 20px; padding: 14px; font-size: 14px; }
.show-sidebar__onsale    { margin-top: 20px; padding: 14px; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); background: var(--gray-mid); }

/* Sponsors */
.show-sidebar__sponsors       { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-mid); }
.show-sidebar__sponsors-label { font-size: 17px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 10px; }
.show-sidebar__sponsors-subtitle { font-size: 15px; font-weight: 700; color: var(--black); margin: 14px 0 8px; }
.show-sidebar__sponsors-list  { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.show-sidebar__sponsors-img   { width: 100%; height: auto; display: block; }
.show-sidebar__sponsors-name  { font-family: var(--serif); font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--black); line-height: 1.25; }

/* Main content */
.show-main__description  { font-size: 18px; line-height: 1.75; color: var(--charcoal); margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-mid); }
.show-main__description p { margin-bottom: 1.2em; }
.show-main__description strong { color: var(--black); }

/* */
@media (max-width: 900px) {
  .show-body__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Video embed */
.show-video              { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-mid); }
.show-video__wrapper     { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; background: var(--black); }
.show-video__wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Press quotes */
.show-press              { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-mid); }

.show-press__card        {
  position: relative;
  background: #faf9f7;
  border-radius: 18px;
  padding: 40px 56px;
  min-height: 0;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(0,0,0,.07),
    0 6px 16px rgba(0,0,0,.05);
}

/* Each quote is absolutely stacked — opacity crossfade */
.show-press__quote       {
  position: absolute;
  inset: 0;
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.show-press__quote.is-active { opacity: 1; pointer-events: auto; }

.show-press__text        {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: normal;
  font-weight: 500;
  color: var(--black);
  line-height: 1.45;
  margin: 0 0 20px;
  max-width: 820px;
  border: none; padding: 0; background: none;
}

.show-press__attribution {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.show-press__attribution a,
.show-press__attribution a:visited {
  color: var(--gray-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.22);
}
.show-press__attribution a:hover {
  border-bottom-color: var(--red);
}

@media (max-width: 768px) {
  .show-press__card,
  .show-press__quote { padding: 28px 24px; }
  .show-press__text  { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .show-press__quote { transition: none; }
}

/* Schedule */
.show-schedule           { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-mid); }
.show-schedule__heading  { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--black); margin-bottom: 24px; }
.show-schedule__grid     { display: flex; flex-direction: column; gap: 0; }
.show-schedule__row      { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
.show-schedule__row:last-child { border-bottom: none; }
.show-schedule__date     { font-size: 15px; font-weight: 600; color: var(--black); }
.show-schedule__time     { font-size: 14px; color: var(--gray-text); font-weight: 600; letter-spacing: 0.05em; }
.show-schedule__btn      { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: var(--red); padding: 7px 16px; transition: background var(--transition); white-space: nowrap; }
.show-schedule__btn:hover{ background: var(--red-dark); }
.show-schedule__tba      { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); white-space: nowrap; }
.show-schedule__special  { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-top: 3px; }
.show-schedule__dur      { font-size: 13px; color: var(--gray-text); }
.show-schedule__sold     { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--charcoal); padding: 5px 12px; white-space: nowrap; }
.show-schedule__cancel   { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); text-decoration: line-through; white-space: nowrap; }

/* */
@media (max-width: 600px) {
  .show-schedule__row { grid-template-columns: 1fr auto; row-gap: 6px; }
}

/* Creative team — simple list */
.show-creative           { max-width: 600px; margin: 0 auto 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-mid); }
.show-creative__heading  { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--black); margin-bottom: 20px; text-align: center; }
.show-creative__list     { display: flex; flex-direction: column; }
.show-creative__row      { display: grid; grid-template-columns: 180px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
.show-creative__row:last-child { border-bottom: none; }
.show-creative__role     { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-text); padding-top: 2px; }
.show-creative__name     { font-size: 16px; font-weight: 600; color: var(--black); }
.show-creative__note     { font-size: 13px; font-style: italic; color: var(--gray-text); line-height: 1.6; margin-top: 16px; }

/* */
@media (max-width: 480px) {
  .show-creative__row { grid-template-columns: 1fr; gap: 2px; }
}

/* Cast & Crew — photo grid */
.show-people             { padding: 40px 0; background: var(--gray-light); }
.show-people + .show-people { padding-top: 0; }
.show-people + .section-alt { padding-top: 24px; }
.show-people__heading    { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--black); text-align: center; margin-bottom: 40px; }
.show-people__grid       { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 32px; max-width: 900px; margin: 0 auto; text-align: center; }
.show-people__card       { display: flex; flex-direction: column; align-items: center; flex: 0 1 200px; max-width: 240px; }
.show-people__photo      { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; display: block; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.show-people__photo--placeholder { background: var(--gray-mid); display: flex; align-items: center; justify-content: center; }
.show-people__photo--placeholder svg { width: 70px; height: 70px; }
.show-people__name       { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; line-height: 1.3; }
.show-people__role       { font-size: 13px; color: var(--gray-text); line-height: 1.4; }
.show-people__note       { font-size: 13px; font-style: italic; color: var(--gray-text); line-height: 1.6; text-align: center; max-width: 700px; margin: 32px auto 0; }

/* ----- PAGE SECTIONS / ACCORDIONS ----- */
.show-sections           { margin-bottom: 48px; padding-bottom: 0; }
.show-section            { border-radius: 8px; overflow: hidden; margin-bottom: 10px; }

.show-section__toggle    {
  width: 100%; display: flex; align-items: center; gap: 16px;
  background: var(--red); color: var(--white);
  border: none; padding: 18px 24px; cursor: pointer; text-align: left;
  border-radius: 8px; transition: background var(--transition);
}
.show-section__toggle:hover { background: var(--red-dark); }
.show-section__toggle[aria-expanded="true"] { border-radius: 8px 8px 0 0; }
.show-section__toggle-label {
  font-size: 13px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; flex: 1;
  border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 2px;
}
.show-section__toggle-hint  { font-size: 13px; color: rgba(255,255,255,0.8); white-space: nowrap; }
.show-section__toggle[aria-expanded="true"] .show-section__toggle-hint { display: none; }
.show-section__toggle-icon  { width: 20px; height: 20px; position: relative; flex-shrink: 0; }
.show-section__toggle-icon::before,
.show-section__toggle-icon::after {
  content: ''; position: absolute; background: var(--white);
  border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
.show-section__toggle-icon::before { width: 2px; height: 20px; top: 0; left: 9px; }
.show-section__toggle-icon::after  { width: 20px; height: 2px; top: 9px; left: 0; }
.show-section__toggle[aria-expanded="true"] .show-section__toggle-icon::before { transform: rotate(90deg); opacity: 0; }

.show-section__static-header {
  background: var(--red); color: var(--white);
  padding: 18px 24px; border-radius: 8px 8px 0 0;
}
.show-section__static-header .show-section__toggle-label {
  font-size: 13px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 2px;
  display: inline-block;
}
.show-section__body      {
  background: var(--white);
  border: 1px solid var(--gray-mid); border-top: none;
  border-radius: 0 0 8px 8px; padding: 24px;
}
.show-section__body[hidden] { display: none; }
.show-section__issuu     { max-width: 720px; margin: 0 auto; }
.show-section__issuu-frame {
  position: relative; padding-bottom: 65%; height: 0;
  overflow: hidden; border-radius: 6px; background: #111;
}
.show-section__issuu-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.show-section__text      { font-size: 16px; line-height: 1.7; color: var(--charcoal); }
.show-section__text p    { margin-bottom: 1em; }
.show-section__text a:not(.btn):not(.wp-block-button__link) { color: var(--red); text-decoration: underline; }
.show-section__cards     { display: flex; flex-direction: column; gap: 12px; }
.show-section__card      { border: 2px solid var(--red); border-radius: 8px; padding: 20px 24px; }
.show-section__card-title { font-size: 18px; font-weight: 700; color: var(--red); margin-bottom: 6px; }
.show-section__card-meta  { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.show-section__card-body  { font-size: 15px; color: var(--charcoal); line-height: 1.6; margin-bottom: 10px; white-space: pre-line; }
.show-section__card-link  { font-size: 14px; font-weight: 700; color: var(--red); }
.show-section__card-link:hover { text-decoration: underline; }

/* Production photo gallery slideshow */
.show-gallery            { margin-bottom: 28px; }
.show-gallery__stage     {  position: relative;  width: 100%;  aspect-ratio: 3 / 2;  overflow: hidden;  border-radius: 8px;  background: var(--black);}
.show-gallery__stage img {  position: absolute;  inset: 0;  width: 100%;  height: 100%;  object-fit: cover;  opacity: 0;  transition: opacity 0.9s ease;}
.show-gallery__stage img.is-active { opacity: 1; }

/* ----- NAV DROPDOWN ----- */
.primary-nav__dropdown-wrap { position: relative; }
.primary-nav__dropdown {    display: none;    position: absolute;    top: 100%;    left: 0;    background: var(--white);    border-top: 3px solid var(--red);    box-shadow: 0 4px 16px rgba(0,0,0,0.12);    min-width: 240px;    z-index: 300;    padding: 8px 0;    list-style: none;}
.primary-nav__dropdown li a {    display: block;    padding: 10px 20px;    font-size: 14px;    font-weight: 600;    letter-spacing: 0.04em;    text-transform: uppercase;    color: var(--charcoal);    transition: background 0.15s, color 0.15s;}
.primary-nav__dropdown li a:hover { background: var(--gray-light); color: var(--red); }
.primary-nav__dropdown-wrap:hover .primary-nav__dropdown { display: block; }

/* ----- MEGA MENU ----- */
.primary-nav__mega-wrap { position: static; display: flex; align-items: center; }
.primary-nav__link--has-mega::after { content: ' ▾'; font-size: 10px; vertical-align: middle; }
.mega-menu {    display: none;    position: absolute;    left: 0; right: 0; top: 100%;    background: var(--black);    border-top: 3px solid var(--red);    box-shadow: 0 8px 32px rgba(0,0,0,0.4);    z-index: 500; margin-top: 0;    max-height: calc(100vh - var(--nav-height)); overflow-y: auto;}
.mega-menu__inner {    max-width: var(--max-width); margin: 0 auto;    padding: 36px var(--gutter) 40px;    display: grid; grid-template-columns: 2fr 1.5fr; gap: 40px;}
/* flexible grid*/
.mega-menu--info .mega-menu__inner { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
/* See A Show — "grouped" variant (Customizer: Mega Menu — See A Show Style,
   repstl_seeshow_menu_style = 'grouped'). Coexists permanently with the
   "classic" variant below (.mega-menu--shows-classic) — both are real,
   maintained layouts selected via header.php at render time, not a
   demo/one-off toggle to be deleted once one wins. Renamed from the
   original .mega-menu--shows to .mega-menu--shows-grouped once "classic"
   became a real sibling instead of just "the old version on master".
   Two zones: the venue/"Upcoming Shows" columns share one contained panel
   (.mega-menu__shows-group) so they read as one "Shows" category, and
   Subscription Plans sits beside it as its own fixed-width, red-accented
   card so it reads as a distinct, promotional category rather than a 7th
   identical list.
   Wrapped in min-width: 901px — the mobile accordion below already sets its
   own display/gap/flex-direction on plain .mega-menu__inner (900px block,
   further down this file). `.mega-menu--shows-grouped .mega-menu__inner`
   has higher specificity than that plain selector (two classes vs. one), so an
   unguarded display/align-items/gap here would win the cascade at ALL
   widths — including overriding the mobile block's gap: 22px and adding a
   new align-items: flex-start it never had — regardless of source order or
   being outside the media query. Guarding with min-width keeps this whole
   redesign strictly desktop-only, so the existing mobile accordion is
   provably untouched rather than "probably fine."
   max-width: .mega-menu--info doesn't actually have a wider-viewport pattern
   to match — it only overrides grid-template-columns and still inherits the
   base .mega-menu__inner's max-width: var(--max-width) (1140px), same as
   everything else. There's no existing "roomier panel" value in this file to
   extend, so 1400px here is a new, deliberate choice, not a match to
   something established — picked because it's the upper end of the
   "1140-1400px typical desktop" range this thread has already been
   designing around, wide enough to visibly loosen the panel against the
   full-bleed dark background without going wide enough to feel sparse or
   full-bleed itself. gap bumped 40 → 52px (within your 48-56px range) to
   separate the two zones more clearly at the new width. */
@media (min-width: 901px) {
  .mega-menu--shows-grouped .mega-menu__inner { display: flex; align-items: flex-start; gap: 52px; max-width: 1400px; }

  /* Panel background: var(--charcoal) against the menu's own var(--black)
     background — reuses the exact elevation relationship this codebase
     already establishes between the two (the mobile/accordion version of
     .mega-menu itself sits on --charcoal against the site's black; the
     .show-schedule__sold badge does the same). No new tint invented — just
     the one step up from black this theme already uses for "a surface that
     needs to read as a layer above black." No border on the panel itself;
     the color-block against --black is enough to read as contained, and
     adding a --gray-mid hairline on top of it read as fussier without
     adding clarity — happy to add one if you'd rather see it explicitly.
     align-items: start — carried over from the old single-grid rule when
     this grid was split out into its own .mega-menu__shows-group; it didn't
     make the move at the time, so this nested grid has been quietly running
     on the default (stretch) since then. Re-added now: a venue whose heading
     wraps past the 2-line min-height budget below would otherwise stretch
     every other column in its row to match, reproducing the exact uneven-gap
     bug from two requests ago, just one level deeper.
     padding 24 → 36px, gap 24 → 32px, per your ask — pushed the width math
     below along with them.
     minmax(150px, …): recomputed for the new dimensions. Inner width
     available to the group = 1400 (new max-width) − 48 (2×24px
     .mega-menu__inner gutter, unchanged) − 52 (new outer gap) − 260 (Plans
     card's new fixed width, see below) = 1040px. Minus this panel's own new
     36px×2 padding = 968px left for the grid itself. Typical count is still
     5 columns (5 venues; the no-venue "Upcoming Shows" fallback is empty
     today), with 4 × 32px (new) gaps between them: 5X + 128 ≤ 968 →
     X ≤ ~168px is the ceiling for 5 columns to fit on one row. 150px leaves
     ~18px of margin below that — more slack than the previous 130px call had,
     which fits "roomier" as a goal in its own right: at viewports narrower
     than the full 1400px cap, more slack means 5 columns keep fitting on one
     row over a wider range of real-world widths before anything wraps. */
  .mega-menu__shows-group {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    align-items: start;
    background: var(--charcoal);
    border-radius: 8px;
    padding: 36px;
  }
  /* Ragged heading heights: venue names range from one word ("Mainstage") to
     five ("Mainstage: Loretto-Hilton Center", "Diamond Anniversary Concert
     Series"), so .mega-menu__heading wraps to a different number of lines
     per column, and each column's show list started at a different
     vertical position. Scoped to this group only — Subscription Plans' and
     the other mega-menus' headings weren't part of the reported issue and
     don't need it.
     min-height was originally budgeted for 2 lines (62px) — turned out
     wrong once real venue names rendered: "Mainstage: Loretto-Hilton
     Center", "Diamond Anniversary Concert Series", and "Imaginary Theatre
     Company" actually wrap to 3 lines at this column width, taller than
     the 2-line budget, so those columns' real heading height (not the
     min-height floor) was what ended up controlling where their list
     started — the exact ragged-start bug this rule exists to prevent, just
     re-appearing one line-count higher than planned for.
     Rebudgeted for 3 lines instead of 2: .mega-menu__heading is 15px with
     no line-height of its own, so it inherits body's line-height: 1.65 →
     15 × 1.65 ≈ 24.75px per line × 3 lines ≈ 74.25px, plus its own
     padding-bottom (10px) and border-bottom (1px) — both count toward
     min-height since box-sizing is border-box globally — ≈ 85.25px total,
     rounded up to 88px. A 1- or 2-line heading just gets more empty space
     below it before its list starts, same mechanism as before, now sized
     to what venue names actually do instead of what seemed like a safe
     guess. If a still-longer venue name shows up later and wraps to 4
     lines, this will need another bump — there's no fully future-proof
     fixed number here without switching to CSS subgrid, which felt like
     more complexity than this needed for 5 columns of a known length.
     margin-bottom 16px → 20px: unchanged from last pass, still the
     heading-to-list gap itself, unrelated to this min-height fix. */
  .mega-menu__shows-group .mega-menu__heading { min-height: 88px; margin-bottom: 20px; }

  /* Subscription Plans — same red-border-as-distinct language
     .show-section__card already uses elsewhere in this file (border: 2px
     solid var(--red), no special background), just at the 1px weight you
     specified and matched to --charcoal instead of that pattern's
     light-page background, since this card sits on the mega-menu's dark
     surface, not a white page. Sharing --charcoal with
     .mega-menu__shows-group (rather than a different token) is deliberate —
     it keeps both reading as the same card "family" at a glance, so the red
     border is what marks Plans as the outlier, not a mismatched fill.
     padding 20 → 36px to match the shows-group exactly, so the two don't
     feel mismatched in density as you flagged. flex-basis bumped 220 → 260px
     along with it — judgment call beyond what was asked, flagging it: at the
     same 220px width, +16px of padding per side would have shrunk the
     card's own usable content width (220 − 72 = 148px vs. the old
     220 − 40 = 180px), tightening the subscription list text while the box
     around it grew — the opposite of "roomier." Widening to 260px nets a
     real gain instead (260 − 72 = 188px, wider than before). */
  .mega-menu__col--plans {
    flex: 0 0 260px;
    background: var(--charcoal);
    border: 1px solid var(--red);
    border-radius: 8px;
    padding: 36px;
  }

  /* See A Show — "classic" variant (Customizer: Mega Menu — See A Show
     Style, repstl_seeshow_menu_style = 'classic', the default — this is
     what the live site shows until someone flips the Customizer control).
     A pinned, literal copy of the .mega-menu__inner grid this menu used
     before any of the grouped redesign above: display:grid;
     grid-template-columns: 2fr 1.5fr; gap:40px — the exact values the
     shared base .mega-menu__inner rule near the top of this section still
     has today. Declared explicitly here rather than left to fall through
     to that shared rule, so a future edit to the base rule for some other
     reason (e.g. tuning a different mega menu) can't silently change what
     "classic" looks like out from under it — this selector is the
     permanent, intentional record of the original layout, not a leftover.
     Inside this same min-width: 901px guard for the same reason the
     grouped rules above are: `.mega-menu--shows-classic .mega-menu__inner`
     also has higher specificity (two classes) than the mobile block's
     plain `.mega-menu__inner` (one class) below. Caught this while writing
     the comment that originally claimed "no guard needed" here — that was
     wrong: matching the base rule's *values* doesn't matter, the mobile
     block's `display:flex; gap:22px` would still have lost the cascade to
     this selector's higher specificity regardless of what values it
     carried, exactly like the grouped rule two commits ago. */
  .mega-menu--shows-classic .mega-menu__inner { display: grid; grid-template-columns: 2fr 1.5fr; gap: 40px; }
}

.mega-menu__heading {    font-size: 15px; font-weight: 800; letter-spacing: 0.2em;    text-transform: uppercase; color: var(--white);    margin-bottom: 16px; padding-bottom: 10px;    border-bottom: 1px solid rgba(255,255,255,0.1);}
.mega-menu__heading a    { color: var(--white); text-decoration: none; }
.mega-menu__heading a:hover { color: rgba(255,255,255,0.7); }
.mega-menu__venue-label {
    font-size: 14px; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--red);
    margin: 18px 0 8px;
}
.mega-menu__venue-label:first-of-type { margin-top: 0; }
.mega-menu--single .mega-menu__inner { grid-template-columns: minmax(0, 340px); padding: 28px var(--gutter) 32px; }
.mega-menu__col ul { list-style: none; }
.mega-menu__col ul li { margin-bottom: 10px; }
.mega-menu__col ul li a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75); transition: color var(--transition); display: block; }
.mega-menu__col ul li a:hover { color: var(--red-dark); }

/* Chevron button injected */
.primary-nav__mega-toggle { display: none; }
.primary-nav__mega-toggle:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }

@media (max-width: 900px) {
  .primary-nav.is-open .primary-nav__mega-wrap {
    position: relative;
    flex-wrap: wrap;
    align-self: stretch;
  }
  .primary-nav.is-open .primary-nav__link--has-mega {
    flex: 1 1 auto;
    padding-right: 44px;
  }
  .primary-nav__link--has-mega::after { display: none; }

  .primary-nav__mega-toggle {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 0; right: 0;
    width: 44px; height: 44px;
    background: none; border: none; color: var(--charcoal);
  }
  .primary-nav__mega-toggle svg { width: 16px; height: 16px; transition: transform var(--transition); }
  .primary-nav__mega-wrap.is-open .primary-nav__mega-toggle       { color: var(--red); }
  .primary-nav__mega-wrap.is-open .primary-nav__mega-toggle svg   { transform: rotate(180deg); }

  .mega-menu {
    display: none;
    position: static;
    flex: 1 0 100%;
    width: 100%;
    background: var(--charcoal);
    border-top: none;
    box-shadow: none;
    z-index: auto;
  }
  .primary-nav__mega-wrap.is-open .mega-menu { display: block; }

  .mega-menu__inner {
    max-width: none; margin: 0;
    padding: 8px 4px 20px 16px;
    display: flex; flex-direction: column; gap: 22px;
  }
  .mega-menu__heading { margin-bottom: 10px; padding-bottom: 8px; }
}

/* ----- SUBSCRIPTION PAGES ----- */

/* Page header extras (tagline + hero CTA under the title) */
.page-header__tagline    { font-size: 18px; color: rgba(255,255,255,0.75); margin-top: 14px; max-width: 640px; line-height: 1.55; }
.sub-hero__cta           { margin-top: 24px; font-size: 13px; padding: 14px 32px; }

/* Featured image hero */
.sub-hero-img            { line-height: 0; overflow: hidden; }
.sub-hero-img img        { width: 100%; height: auto; display: block; }

/* Title / tagline / CTA below hero image */
.sub-hero-text           { padding: 56px 1rem 52px; text-align: center; background: var(--off-white); }
.sub-hero-text__title    { font-family: var(--sans); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; line-height: 1.1; color: var(--red); text-transform: uppercase; letter-spacing: 0.03em; }
.sub-hero-text__tagline  { font-size: 18px; color: var(--charcoal); margin: 20px auto 0; max-width: 600px; line-height: 1.6; }
.sub-hero__cta           { margin-top: 28px; display: inline-block; }

/* Outer wrapper */
.sub-page                { padding: 0; }
.sub-page__body          { padding: 56px 0; }

/* Intro copy (WP editor, if used) */
.sub-intro               { max-width: 760px; margin-bottom: 0; padding: 56px 0; border-bottom: 1px solid var(--gray-mid); font-size: 18px; line-height: 1.75; color: var(--charcoal); }
.sub-intro p             { margin-bottom: 1.2em; }

/* Shared section heading */
.sub-section-heading     { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--black); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 2px solid var(--red); display: inline-block; }

/* ── Highlight cards (full-bleed section) ── */
.sub-cards               { background: #f9f9f9; padding: 3rem 1rem; }
.sub-cards__heading      { text-align: center; font-family: var(--sans); font-size: 2rem; font-weight: 800; color: var(--red); margin-bottom: 2.5rem; }
.sub-cards__grid         { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; max-width: 820px; margin: 0 auto; }
.sub-cards__card         { flex: 0 0 45%; padding: 0.75rem; border: 1px solid var(--gray-mid); border-radius: 8px; text-align: center; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; min-height: 80px; }
.sub-cards__icon         { font-size: 1.1rem; line-height: 1; flex-shrink: 0; }
.sub-cards__label        { font-family: var(--sans); font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 0; }
.sub-cards__desc         { flex: 1 1 100%; font-size: 15px; color: var(--charcoal); line-height: 1.55; margin: 0; }

/* ── How It Works steps ── */
.sub-steps               { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--gray-mid); }
.sub-steps__list         { display: flex; flex-direction: column; gap: 0; }
.sub-steps__step         { display: grid; grid-template-columns: 52px 1fr; gap: 24px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--gray-light); }
.sub-steps__step:last-child { border-bottom: none; }
.sub-steps__num          { width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: var(--white); font-family: var(--serif); font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.sub-steps__heading      { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.sub-steps__copy         { font-size: 16px; color: var(--charcoal); line-height: 1.65; margin-bottom: 14px; }
.sub-steps__cta          { font-size: 12px; padding: 10px 22px; }

/* ── Purchase CTAs ── */
.sub-purchase            { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--gray-mid); text-align: center; }
.sub-purchase__ctas      { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.sub-purchase__btn       { font-size: 14px; padding: 15px 32px; }
.sub-purchase__cards       { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; align-items: stretch; }
.sub-purchase__card        { border: 1px solid var(--gray-mid); border-radius: 10px; padding: 24px; max-width: 500px; width: 100%; text-align: center; display: flex; flex-direction: column; }
.sub-purchase__card-heading { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.sub-purchase__bullets     { list-style: none; text-align: left; padding-left: 0; margin: 0 0 24px; }
.sub-purchase__bullets li  { position: relative; font-size: 18px; color: var(--charcoal); line-height: 1.6; margin-bottom: 10px; padding-left: 1.4em; }
.sub-purchase__bullets li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; background: var(--red); }
.sub-purchase__bullets a   { color: inherit; text-decoration: none; }
.sub-purchase__card .sub-purchase__btn { margin-top: auto; align-self: center; }

/* ── Spotlight list ── */
.sub-spotlight             { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--gray-mid); }
.sub-spotlight__list       { display: flex; flex-direction: column; }
.sub-spotlight__item       { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--gray-light); align-items: start; }
.sub-spotlight__item:last-child { border-bottom: none; }
.sub-spotlight__img img    { width: 100%; height: auto; display: block; border-radius: 4px; }
.sub-spotlight__title      { font-family: var(--serif); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; color: var(--black); margin-bottom: 10px; line-height: 1.2; }
.sub-spotlight__title a    { color: inherit; }
.sub-spotlight__title a:hover { color: var(--red); }
.sub-spotlight__text       { font-size: 15px; color: var(--charcoal); line-height: 1.7; }
.sub-spotlight__text p     { margin-bottom: 1em; }
.sub-spotlight__text p:last-child { margin-bottom: 0; }
.sub-spotlight__text strong { color: var(--black); }
.sub-spotlight__text a     { color: var(--red); text-decoration: underline; }

@media (max-width: 600px) {
  .sub-spotlight__item     { grid-template-columns: 1fr; }
}

/* ── Seating chart ── */
.sub-seating             { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--gray-mid); text-align: center; }
.sub-seating__legend     { font-size: 17px; font-weight: 600; color: var(--charcoal); margin: 0 auto 24px; max-width: 700px; line-height: 1.6; }
.sub-seating__img-wrap   { margin: 0 auto 24px; max-width: 860px; }
.sub-seating__img        { max-width: 100%; height: auto; display: block; margin: 0 auto; border: 1px solid var(--gray-mid); border-radius: 4px; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.sub-seating__cta-wrap   { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; justify-content: center; }

/* ── Benefits ── */
.sub-benefits            { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--gray-mid); }
.sub-benefits__list      { display: flex; flex-direction: column; gap: 0; }
.sub-benefits__item      { padding: 20px 0; border-bottom: 1px solid var(--gray-light); }
.sub-benefits__item:last-child { border-bottom: none; }
.sub-benefits__label     { display: block; font-size: 20px; font-weight: 700; color: var(--red); margin-bottom: 6px; }
.sub-benefits__desc      { font-size: 17px; color: var(--charcoal); line-height: 1.65; margin: 0; }

/* ── Disclaimers ── */
.sub-disclaimers         { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--gray-mid); }
.sub-disclaimers__inner  { font-size: 16px; color: var(--gray-text); line-height: 1.7; padding-top: 24px; }

/* ── Closing note & final CTA ── */
.sub-closing             { max-width: 700px; margin: 32px auto 48px; text-align: center; }
.sub-closing__heading    { font-size: 1.1rem; color: var(--black); margin-bottom: 16px; }
.sub-closing__body       { font-size: 17px; color: var(--charcoal); line-height: 1.7; margin-bottom: 16px; }
.sub-closing__contact    { font-size: 16px; color: var(--charcoal); margin-bottom: 24px; }
.sub-closing__contact a  { color: var(--red); text-decoration: underline; }
.sub-closing__btn        { font-size: 16px; padding: 16px 24px; }

/* ── Other subscriptions row ── */
.sub-other__grid         { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.sub-other__card         { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-mid); padding: 24px; transition: border-color var(--transition), box-shadow var(--transition); }
.sub-other__card:hover   { border-color: var(--red); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.sub-other__title        { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 8px; line-height: 1.2; }
.sub-other__tagline      { font-size: 14px; color: var(--gray-text); line-height: 1.5; flex: 1; margin-bottom: 16px; }
.sub-other__link         { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-top: auto; }
.sub-other__card:hover .sub-other__link { text-decoration: underline; }

/* ── Subscription responsive ── */
@media (max-width: 600px) {
  .sub-cards__card       { flex: 1 1 100%; }
  .sub-steps__step       { grid-template-columns: 40px 1fr; gap: 16px; }
  .sub-steps__num        { width: 40px; height: 40px; font-size: 1.1rem; }
  .sub-purchase__ctas,
  .sub-seating__cta-wrap { flex-direction: column; }
  .sub-purchase__btn     { text-align: center; }
}
/* ----- FEATURED VIDEOS ----- */
.video-grid              { display: grid; gap: 32px; }
.video-grid--1           { grid-template-columns: 1fr; max-width: 1000px; margin: 0 auto; }
.video-grid--2           { grid-template-columns: repeat(2, 1fr); }
.video-grid--3           { grid-template-columns: repeat(3, 1fr); }
.video-card__embed       { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 6px; background: #000; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.video-card__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card__expand      { position: absolute; inset: 0; width: 100%; height: 100%; background: transparent; border: none; padding: 0; cursor: pointer; z-index: 2; }
.video-card__expand-icon {
  position: absolute; bottom: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.55); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85; transition: background var(--transition), opacity var(--transition), transform var(--transition);
}
.video-card__expand-icon svg { width: 18px; height: 18px; }
.video-card__expand:hover .video-card__expand-icon,
.video-card__expand:focus-visible .video-card__expand-icon { background: var(--red); opacity: 1; transform: scale(1.08); }
.video-card__expand:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.video-card__body        { padding-top: 14px; }
.video-card__title       { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 0 0 6px; line-height: 1.3; }
.video-card__desc        { font-size: 15px; color: var(--charcoal); line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
  .video-grid--3         { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-grid--2,
  .video-grid--3         { grid-template-columns: 1fr; }
}

/* ----- EVENTS PREVIEW ----- */
.events-preview__cta     { margin-top: 32px; text-align: center; }

/* ----- CALENDAR MODAL ----- */
.cal-modal               { display: none; position: fixed; inset: 0; z-index: 1000; }
.cal-modal[hidden]       { display: none; }
.cal-modal.is-open       { display: flex; align-items: center; justify-content: center; }
.cal-modal__backdrop     { position: absolute; inset: 0; background: rgba(0,0,0,0.7); cursor: pointer; }
.cal-modal__panel        { position: relative; z-index: 1; background: var(--white); width: 95vw; max-width: 1300px; height: 95vh; display: flex; flex-direction: column; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.cal-modal__panel iframe[data-tec-events-ece-iframe="true"] { width: 100% !important; height: 100% !important; flex: 1; min-height: 0; display: block; }
.cal-modal__close        { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--black); border: none; color: var(--white); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.cal-modal__close:hover  { background: var(--red); }
.cal-modal__close svg    { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .cal-modal__panel      { width: 100vw; height: 100dvh; max-width: 100%; border-radius: 0; overflow-x: hidden; }
  .cal-modal__close      { top: 8px; right: 8px; }
  .cal-modal__panel iframe[data-tec-events-ece-iframe="true"] { width: 100vw !important; min-width: 0 !important; }
}

/* ----- VIDEO LIGHTBOX MODAL ----- */
.video-modal              { display: none; position: fixed; inset: 0; z-index: 1000; }
.video-modal[hidden]      { display: none; }
.video-modal.is-open      { display: flex; align-items: center; justify-content: center; padding: 56px 24px; }
.video-modal__backdrop    { position: absolute; inset: 0; background: rgba(0,0,0,0.8); cursor: pointer; }
.video-modal__panel       { position: relative; z-index: 1; width: 100%; max-width: 1100px; }
.video-modal__frame       { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: #000; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal__close       { position: absolute; top: -44px; right: 0; z-index: 2; background: var(--black); border: none; color: var(--white); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.video-modal__close:hover { background: var(--red); }
.video-modal__close svg   { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .video-modal.is-open    { padding: 44px 16px; }
  .video-modal__close     { top: -36px; right: 0; width: 32px; height: 32px; }
  .video-modal__close svg { width: 16px; height: 16px; }
}
/* ----- EVENT CARDS ----- */
.events-grid             { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.event-card              { background: var(--white); border: 1px solid var(--gray-mid); display: flex; flex-direction: column; }
.event-card__img         { overflow: hidden; aspect-ratio: 1 / 1; }
.event-card__img img     { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.event-card:hover .event-card__img img { transform: scale(1.02); }
.event-card__body        { padding: 18px 18px 0; flex: 1; }
.event-card__cat         { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 6px; }
.event-card__title       { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 8px; }
.event-card__title a     { color: inherit; }
.event-card__title a:hover { color: var(--red); }
.event-card__date        { font-size: 14px; font-weight: 600; color: var(--gray-text); margin-bottom: 4px; }
.event-card__venue       { font-size: 14px; color: var(--gray-text); }
.event-card__footer      { border-top: 1px solid var(--gray-mid); padding: 12px 18px; margin-top: 16px; display: flex; justify-content: flex-end; }
.event-card__link        { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }
.event-card__link:hover  { text-decoration: underline; }

/* -----  Event Single ----- */

.event-single {
	margin: 0 0 80px;
}

/* Hero */
.event-single__hero { position: relative;	width: 100%;	min-height: 360px;	background-color: #111111;	background-size: cover;	background-position: center;	display: flex;	align-items: flex-end;}
.event-single__hero-overlay {	width: 100%;	background: linear-gradient(to top, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.15) 60%, rgba(17, 17, 17, 0) 100%);	padding: 60px 48px 32px;}
.event-single__hero-title {	font-family: var(--serif);	font-weight: 900;	font-size: 2.75rem;	color: #F5F3EF;	margin: 0;	max-width: 900px;}

/* Layout: sidebar + main */
.event-single__layout {	max-width: 1100px;	margin: 0 auto;	padding: 48px 24px 0;	display: grid;	grid-template-columns: 280px 1fr;	gap: 56px;	align-items: start;}

/* Sidebar */
.event-single__sidebar {	background-color: #F5F3EF;	border-top: 4px solid var(--red);	padding: 24px;	position: sticky;	top: 24px;}
.event-single__sidebar-row {	display: flex;	flex-direction: column;	margin-bottom: 18px;}
.event-single__sidebar-label {	font-family: var(--sans);	text-transform: uppercase;	font-size: 0.72rem;	letter-spacing: 0.08em;	color: var(--red);	font-weight: 700;	margin-bottom: 4px;}
.event-single__sidebar-value {	font-family: var(--sans);	font-size: 0.95rem;	color: #111111;	line-height: 1.4;}
.event-single__sidebar-btn {	display: block;	text-align: center;	background-color: var(--red);	color: #F5F3EF;	font-family: var(--sans);	font-weight: 700;	font-size: 0.95rem;	text-transform: uppercase;	letter-spacing: 0.05em;	text-decoration: none;	padding: 14px 20px;	border-radius: 2px;	margin-top: 8px;	transition: background-color var(--transition) ease;}
.event-single__sidebar-btn:hover {	background-color: var(--red-dark);	color: #F5F3EF;}
.event-single__sidebar-btn.is-disabled {	background-color: #cfcac2;	color: #6b6b6b;	cursor: not-allowed;	pointer-events: none;}

/* Main content */
.event-single__description {	font-family: var(--sans);	font-size: 1.05rem;	line-height: 1.7;	color: #111111;	margin-bottom: 48px;}

.event-single__description p {	margin: 0 0 1.2em;}

/* Sponsors */
.event-single__sponsors {	border-top: 1px solid #e3ded5;	padding-top: 32px;}
.event-single__sponsors-label {	font-family: var(--sans);	text-transform: uppercase;	font-size: 0.8rem;	letter-spacing: 0.08em;	color: #111111;	opacity: 0.6;	margin: 0 0 16px;}
.event-single__sponsors-logos {	display: flex;	flex-wrap: wrap;	align-items: center;	gap: 28px;}
.event-single__sponsors-logos img {	max-height: 60px;	width: auto;	filter: grayscale(15%);	opacity: 0.9;}

/* ── Responsive ── */
@media (max-width: 900px) {
	.event-single__layout {
		grid-template-columns: 1fr;
	}

	.event-single__sidebar {
		position: static;
	}
}

@media (max-width: 600px) {
	.event-single__hero {
		min-height: 240px;
	}

	.event-single__hero-overlay {
		padding: 32px 24px 24px;
	}

	.event-single__hero-title {
		font-size: 1.9rem;
	}
}

/* ----- JOBS & AUDITIONS ----- */
.job-page                { padding: 48px 0 64px; }
.job-page__body          { max-width: 760px; margin: 0 auto; }

.job-meta                { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-mid); }
.job-meta__row           { font-size: 15px; color: var(--charcoal); margin-bottom: 8px; }
.job-meta__row:last-child { margin-bottom: 0; }
.job-meta__row strong    { color: var(--black); text-transform: uppercase; font-size: 13px; letter-spacing: 0.04em; margin-right: 4px; }

.job-section              { margin-bottom: 36px; }
.job-section__heading     { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.03em; border-bottom: 2px solid var(--red); display: inline-block; padding-bottom: 4px; margin-bottom: 14px; }
.job-section__text        { font-size: 16px; color: var(--charcoal); line-height: 1.7; margin-bottom: 1em; }
.job-section__text:last-child { margin-bottom: 0; }
.job-section__text a:not(.btn):not(.wp-block-button__link) { color: var(--red); text-decoration: underline; }

.job-resp-group            { margin-bottom: 24px; }
.job-resp-group:last-child { margin-bottom: 0; }
.job-resp-group__label     { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--black); margin-bottom: 10px; }

.job-bullets               { list-style: none; padding-left: 0; margin-bottom: 0; }
.job-bullets li            { position: relative; font-size: 15px; color: var(--charcoal); line-height: 1.6; margin-bottom: 8px; padding-left: 1.4em; }
.job-bullets li:last-child { margin-bottom: 0; }
.job-bullets li::before    { content: ''; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; background: var(--red); }

/* Job listing cards — [repstl_jobs] shortcode, used on the Jobs & Auditions page */
.job-card                { max-width: 760px; margin: 0 auto 40px; padding-bottom: 40px; border-bottom: 1px solid var(--gray-mid); }
.job-card:last-child     { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.job-card__title         { font-family: var(--serif); font-size: 1.6rem; font-weight: 900; color: var(--black); text-transform: uppercase; margin-bottom: 12px; }
.job-card__desc          { font-size: 16px; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; }
.job-card__btn            { font-size: 13px; padding: 14px 28px; }

/* ----- Restore .screen-reader-text (safety check) ----- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
/* ----- Calendar ----- */
.tribe-events-calendar-month__header-column-title span[aria-hidden="true"] {
	display: none;
}

.tribe-events-calendar-month__header-column-title .screen-reader-text {
	position: static !important;
	width: auto !important;
	height: auto !important;
	clip: auto !important;
	clip-path: none !important;
	margin: 0 !important;
	overflow: visible !important;
}
/* ----- Calendar embed ----- */
.tribe-events-calendar-month__day-cell {
	min-height: 64px !important;
}

.tribe-events-calendar-month__day-date {
	padding: 4px 6px !important;
	font-size: 0.85rem !important;
}

.tribe-events-calendar-month__header-column-title {
	padding: 8px 0 !important;
}

.tribe-events-calendar-month {
	font-size: 0.9rem !important;
}

/* ----- FAQ ACCORDION (core/details block) ----- */
.wp-block-details {
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
}
.wp-block-details summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 28px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  position: relative;
  transition: background var(--transition);
}
.wp-block-details summary::-webkit-details-marker { display: none; }
.wp-block-details summary::marker { content: ''; }
.wp-block-details summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--red);
  transition: transform var(--transition);
}
.wp-block-details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.wp-block-details summary:hover { background: var(--gray-light); }
.wp-block-details > *:not(summary) { padding-left: 28px; padding-right: 28px; }
.wp-block-details > *:last-child { padding-bottom: 24px; }
.wp-block-details p { font-size: 16px; color: var(--charcoal); line-height: 1.65; margin-bottom: 0.8em; }
.wp-block-details p:last-child { margin-bottom: 0; }

/* ----- WP TABLE BLOCK (brand styling) ----- */
.wp-block-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  margin-bottom: 1.6em;
}
.wp-block-table table {
  width: 100% !important;
  border-collapse: collapse;
  min-width: 640px;
  table-layout: fixed;
}
.wp-block-table thead tr { background: var(--black); }
.wp-block-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wp-block-table td,
.wp-block-table tbody th {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-mid);
  font-size: 15px;
  color: var(--charcoal);
  text-align: left;
}
.wp-block-table tbody th { font-weight: 700; color: var(--black); text-transform: none; letter-spacing: normal; font-size: 15px; }
.wp-block-table tbody tr:nth-child(even) { background: var(--gray-light); }
.wp-block-table a { color: var(--red); text-decoration: underline; }

@media (max-width: 640px) {
  .wp-block-table thead th { position: sticky; top: 0; z-index: 2; }
}

/* ----- INLINE NOTICE CALLOUT ----- */
.entry-notice {
  border-left: 4px solid var(--red);
  background: var(--gray-light);
  padding: 16px 24px;
  margin: 1.6em 0;
  border-radius: 0 8px 8px 0;
}
.entry-notice p { font-size: 16px; color: var(--charcoal); margin-bottom: 0; }

/* ----- CAMPUS MAP IMAGE ----- */
.map-image img {
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
}

/* ----- DONATION EMBED ----- */
.donate-embed {
	max-width: 1100px;
	margin: 0 auto;
	padding: 3rem 1.5rem 4rem;
}

.donate-embed__intro {
	text-align: center;
	margin-bottom: 2rem;
}

.donate-embed__intro h1 {
	font-family: 'Playfair Display', serif;
	color: #9B1B1B;
	margin-bottom: 0.5rem;
}

.donate-embed__mobile-notice {
	display: none;
}

.donate-embed__copy {
	font-family: 'Source Sans 3', sans-serif;
	color: #111111;
	max-width: 60ch;
	margin: 0 auto;
}

.donate-embed__frame-wrap {
	position: relative;
	background: #F5F3EF;
	border: 1px solid rgba(17, 17, 17, 0.1);
	border-radius: 4px;
	overflow: hidden;
	min-height: 500px;
}

.donate-embed__iframe {
	display: block;
	width: 100%;
	height: 1800px;
	border: 0;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.donate-embed__frame-wrap.is-loaded .donate-embed__iframe {
	opacity: 1;
}

.donate-embed__loading {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-family: 'Source Sans 3', sans-serif;
	color: #111111;
	background: #F5F3EF;
	transition: opacity 0.25s ease;
}

.donate-embed__frame-wrap.is-loaded .donate-embed__loading {
	opacity: 0;
	pointer-events: none;
}

.donate-embed__spinner {
	width: 32px;
	height: 32px;
	border: 3px solid rgba(155, 27, 27, 0.2);
	border-top-color: #9B1B1B;
	border-radius: 50%;
	animation: donate-embed-spin 0.8s linear infinite;
}

@keyframes donate-embed-spin {
	to {
		transform: rotate(360deg);
	}
}

.donate-embed__fallback {
	text-align: center;
	font-family: 'Source Sans 3', sans-serif;
	font-size: 0.9rem;
	color: #111111;
	margin-top: 1.25rem;
}

.donate-embed__fallback a {
	color: #9B1B1B;
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
	.donate-embed__iframe {
		height: 2100px;
	}

	.donate-embed__mobile-notice {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		background: var(--gray-light);
		border: 1px solid var(--red);
		border-radius: 4px;
		padding: 12px 16px;
		margin-bottom: 20px;
	}

	.donate-embed__mobile-btn {
		background: var(--red);
		color: var(--white);
		padding: 8px 14px;
		border-radius: 2px;
		font-weight: 700;
		font-size: 13px;
		letter-spacing: 0.05em;
		text-transform: uppercase;
		white-space: nowrap;
		text-decoration: none;
		flex-shrink: 0;
		transition: background var(--transition);
	}

	.donate-embed__mobile-btn:hover {
		background: var(--red-dark);
	}

  .donate-embed__mobile-notice span {
	font-size: 13px;
	line-height: 1.4;
	flex: 1;
	min-width: 0;
}
}

/* ----- WEBSITE SPONSORS BAR ----- */
.site-footer__sponsors       { background: var(--white); border-bottom: 1px solid var(--gray-mid); padding-top: 20px; }
.site-footer__sponsors-heading { font-size: 16px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 10px; }
.site-footer__sponsors-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; padding: 4px 0; }

.site-footer__sponsor-featured    { display: flex; flex-direction: column; flex-shrink: 0; padding-right: 32px; border-right: 1px solid var(--gray-mid); }
.site-footer__sponsor-label       { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-text); margin-bottom: 4px; }
.site-footer__sponsor-name        { font-family: var(--serif); font-size: 1.05rem; font-weight: 800; text-transform: uppercase; color: var(--gray-mid); line-height: 1.2; max-width: 260px; }
a.site-footer__sponsor-name:hover { color: var(--red); }

.site-footer__sponsor-carousel   { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.site-footer__sponsor-track-wrap { flex: 1; min-width: 0; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.site-footer__sponsor-track-wrap::-webkit-scrollbar { display: none; }
.site-footer__sponsor-track { display: flex; align-items: center; gap: 48px; list-style: none; margin: 0; padding: 0; width: max-content; }
.site-footer__sponsor-logo       { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; scroll-snap-align: start; }
.site-footer__sponsor-logo img   { max-height: 250px; width: auto; filter: grayscale(100%); opacity: 0.55; transition: opacity var(--transition), filter var(--transition); }
.site-footer__sponsor-logo a:hover img { filter: grayscale(0%); opacity: 1; }

.site-footer__sponsor-nav {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gray-mid); background: var(--white); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.site-footer__sponsor-nav:hover:not(:disabled) { background: var(--red); border-color: var(--red); color: var(--white); }
.site-footer__sponsor-nav:disabled { opacity: 0.3; cursor: default; }

@media (max-width: 900px) {
  .site-footer__sponsors-inner   { flex-direction: column; align-items: flex-start; gap: 18px; }
  .site-footer__sponsor-featured { border-right: none; padding-right: 0; border-bottom: 1px solid var(--gray-mid); padding-bottom: 16px; width: 100%; }
  .site-footer__sponsor-carousel { width: 100%; }
}

/* ----- JOTFORM EMBED WRAP ----- */
.jotform-embed {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding) var(--gutter);
  background: var(--off-white);
}
.jotform-embed iframe {
  display: block;
  width: 100%;
  border-top: 3px solid var(--red) !important;
}

/* ----- SITE MAP PAGE (page-sitemap.php) ----- */
.sitemap-xml-note { font-size: 13px; color: var(--gray-text); margin-bottom: 32px; }
.sitemap-xml-note .view-all { margin-left: 6px; }
.sitemap-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; align-items: start; }
.sitemap-col h2  { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--black); margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--red); }
.sitemap-col h2:first-child { margin-top: 0; }

.sitemap-list                { list-style: none; margin: 0 0 4px; padding: 0; }
.sitemap-list li             { margin-bottom: 8px; }
.sitemap-list a              { font-size: 15px; color: var(--charcoal); line-height: 1.4; }
.sitemap-list a:hover        { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.sitemap-list__archive       { font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.08em; color: var(--red) !important; }
.sitemap-list__archive:hover { text-decoration: underline; }

.sitemap-list--nested        { margin: 0 0 4px 4px; padding-left: 18px; border-left: 1px solid var(--gray-mid); }
.sitemap-list--nested a      { font-size: 14px; color: var(--gray-text); }

@media (max-width: 900px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 600px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 30px; }
}