/*
Theme Name: NYC South Asian Comedy Festival
Theme URI: https://nycsacf.com
Author: Laughing Lassi
Author URI: https://laughinglassi.com
Description: Official theme for the NYC South Asian Comedy Festival. Pixel-perfect WordPress port of the HTML design — every section, color, animation and interaction preserved. Full Customizer support for colors, hero image, all text, venues, and branding.
Version: 2.1.0
Requires at least: 6.2
Tested up to: 7.0
Requires PHP: 8.0
License: Proprietary
Text Domain: nycsacf
Tags: festival, comedy, events, custom-colors, custom-logo, custom-menu, full-width-template, responsive-layout, dark
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — injected/overridden by Customizer
   ============================================================ */
:root {
  --cr:   #8B1A1A; /* crimson        */
  --cr-d: #5C0E0E; /* crimson dark   */
  --gn:   #1A5C3A; /* green          */
  --gn-d: #0E3D26; /* green dark     */
  --gd:   #C8860A; /* gold           */
  --gd-l: #E8A020; /* gold light     */
  --or:   #E05A00; /* orange         */
  --cr2:  #F5EDD8; /* cream          */
  --wh:   #FFFFFF;
  --dk:   #0A0A0A;
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--dk);
  color: var(--wh);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.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; width: 1px; word-wrap: normal;
}
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--or); color: var(--wh);
  padding: 8px 16px; z-index: 9999;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gd-l); outline-offset: 2px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container       { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
.container-mid   { max-width: 960px;  margin: 0 auto; padding: 0 48px; }
.container-narrow{ max-width: 680px;  margin: 0 auto; padding: 0 48px; }
.text-center     { text-align: center; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .78rem;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gd-l); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase; letter-spacing: .02em; line-height: .95;
  color: var(--wh);
}
.section-title em { color: var(--or); font-style: normal; }
.section-header   { text-align: center; margin-bottom: 48px; }

/* ============================================================
   BUTTONS — exact clip-path parallelogram from HTML
   ============================================================ */
.btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1rem;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 15px 38px; border: none; cursor: pointer;
  display: inline-block; text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s, transform .15s, color .2s, border-color .2s;
}
.btn-primary { background: var(--or); color: var(--wh) !important; }
.btn-primary:hover { background: var(--gd); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--cr2) !important;
  border: 1.5px solid rgba(245,237,216,.35);
}
.btn-secondary:hover { border-color: var(--gd-l); color: var(--gd-l) !important; transform: translateY(-2px); }

/* WP block button override */
.wp-block-button__link { border-radius: 0 !important; }
.wp-block-button:not(.is-style-outline) .wp-block-button__link { background: var(--or) !important; }
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important; color: var(--cr2) !important;
  border: 1.5px solid rgba(245,237,216,.35) !important;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%) !important;
}

/* ============================================================
   FLAG STRIP — 4-country colours
   ============================================================ */
.flag-strip { display: flex; height: 4px; overflow: hidden; border-radius: 1px; }
.flag-strip .fs { flex: 1; }
.fs-in-o { background: #FF9933; }
.fs-in-w { background: #fff; }
.fs-in-g { background: #138808; }
.fs-pk-g { background: #01411C; }
.fs-pk-w { background: #fff; flex: .3 !important; }
.fs-bd-g { background: #006A4E; }
.fs-bd-r { background: #F42A41; flex: .6 !important; }
.fs-sl-m { background: #8D153A; }
.fs-sl-g { background: #00534C; flex: .3 !important; }
.fs-sl-o { background: #EB7400; flex: .3 !important; }

/* ============================================================
   NAVIGATION — sticky glass bar
   ============================================================ */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,.92);
  border-bottom: 1px solid rgba(200,134,10,.15);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .3s;
}
#masthead.scrolled { background: rgba(10,10,10,.97); }

.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
}

/* Logo — text or image */
.site-branding { flex-shrink: 0; max-width: 240px; }
.site-branding-link { display: flex; align-items: center; text-decoration: none; }
.site-branding .custom-logo-link { display: flex; align-items: center; }
.site-branding .custom-logo {
  height: 44px;       /* fixed height — matches header bar */
  width: auto;        /* preserve aspect ratio */
  max-width: 220px;   /* never wider than the branding zone */
  display: block;
  object-fit: contain;
}
.site-title-text {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 1rem; letter-spacing: .05em; line-height: 1.1;
  text-transform: uppercase; color: var(--wh);
}
.site-title-text .accent { color: var(--or); display: block; }

@media (max-width: 900px) {
  .site-branding { max-width: 180px; }
  .site-branding .custom-logo { height: 36px; max-width: 160px; }
}
@media (max-width: 480px) {
  .site-branding { max-width: 140px; }
  .site-branding .custom-logo { height: 30px; max-width: 120px; }
}

/* Primary nav */
#primary-navigation { display: flex; align-items: center; }
#primary-navigation ul { display: flex; gap: 28px; align-items: center; }
#primary-navigation ul li a {
  color: var(--cr2); font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; opacity: .75;
  padding: 8px 0; display: block; transition: opacity .2s, color .2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a,
#primary-navigation ul li.current_page_item > a { opacity: 1; color: var(--gd-l); }

/* Ticket button in nav */
#primary-navigation ul li.menu-item-ticket > a {
  background: var(--or); color: var(--wh) !important;
  opacity: 1 !important; padding: 9px 20px; border-radius: 2px;
}
#primary-navigation ul li.menu-item-ticket > a:hover { background: var(--gd); }

/* Dropdown */
#primary-navigation ul li { position: relative; }
#primary-navigation ul ul {
  display: none; position: absolute; top: 100%; left: 0;
  background: rgba(10,10,10,.97); border: 1px solid rgba(200,134,10,.2);
  min-width: 200px; padding: 8px 0; flex-direction: column; gap: 0; z-index: 200;
}
#primary-navigation ul li:hover > ul { display: flex; }
#primary-navigation ul ul li a { padding: 10px 20px; white-space: nowrap; opacity: .7; }

/* Mobile toggle */
.nav-toggle {
  display: none; background: none;
  border: 1px solid rgba(245,237,216,.25); color: var(--cr2); cursor: pointer;
  padding: 8px 12px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
}

/* ============================================================
   HERO — full viewport, gradient + optional bg image
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  overflow: hidden; padding: 120px 48px 80px;
}

/* Gradient layer — always present */
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(139,26,26,.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,92,58,.55) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,134,10,.2) 0%, transparent 60%),
    #0d0d0d;
  transition: opacity .4s;
}

/* Background image layer */
.hero-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity .4s;
}
.hero-image.active { opacity: 1; }

/* Dark overlay for image legibility */
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5); display: none;
}
.hero-overlay.active { display: block; }

/* Grain texture */
.hero-grain {
  position: absolute; inset: 0; opacity: .3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Decorative gold frame */
.hero-frame {
  position: absolute; inset: 32px;
  border: 1.5px solid rgba(200,134,10,.2);
  pointer-events: none; z-index: 1;
}
.hero-frame::before {
  content: ''; position: absolute; inset: 6px;
  border: .5px solid rgba(200,134,10,.1);
}

/* Content */
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px; width: 100%;
}

.hero-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(.72rem,1.3vw,.92rem); letter-spacing: .35em;
  text-transform: uppercase; color: var(--cr2); opacity: .6; margin-bottom: 10px;
}

.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; line-height: .9; margin-bottom: 20px; }
.hero-title .line-nyc        { font-size: clamp(3rem,10vw,7rem);   color: var(--wh);  display: block; letter-spacing: .02em; }
.hero-title .line-sa         { font-size: clamp(3.5rem,12vw,8.5rem); color: var(--or); display: block; letter-spacing: .01em; }
.hero-title .line-cf         { font-size: clamp(2.5rem,8vw,6rem);  color: var(--cr2); display: block; letter-spacing: .04em; }

.hero-divider {
  width: 80px; height: 2px;
  background: linear-gradient(to right, var(--cr), var(--gd), var(--gn));
  margin: 24px auto;
}

.hero-dates {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: clamp(1rem,2.2vw,1.35rem); letter-spacing: .2em;
  text-transform: uppercase; color: var(--cr2); margin-bottom: 6px;
}
.hero-dates .hl { color: var(--gd-l); }

.hero-tagline {
  font-size: .92rem; color: rgba(245,237,216,.5);
  letter-spacing: .05em; margin-bottom: 38px; font-style: italic;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 6px; opacity: .4;
}
.scroll-hint span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; }
.scroll-arrow { width: 1px; height: 32px; background: var(--cr2); position: relative; overflow: hidden; }
.scroll-arrow::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--gd-l); animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse { 0%{top:-100%} 100%{top:100%} }

/* Hero entrance animation */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.hero-content > * { animation: fadeUp .8s ease both; }
.hero-content > *:nth-child(1){animation-delay:.1s}
.hero-content > *:nth-child(2){animation-delay:.25s}
.hero-content > *:nth-child(3){animation-delay:.4s}
.hero-content > *:nth-child(4){animation-delay:.5s}
.hero-content > *:nth-child(5){animation-delay:.55s}
.hero-content > *:nth-child(6){animation-delay:.65s}
.hero-content > *:nth-child(7){animation-delay:.75s}

/* ============================================================
   BADGES BAR
   ============================================================ */
.badges-bar {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  padding: 26px 48px;
  background: rgba(0,0,0,.55);
  border-top:    1px solid rgba(200,134,10,.2);
  border-bottom: 1px solid rgba(200,134,10,.2);
}
.badge-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.badge-num  { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; color: var(--or); line-height: 1; }
.badge-lbl  { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,237,216,.5); font-weight: 600; text-align: center; }
.badge-div  { width: 1px; background: rgba(200,134,10,.2); align-self: stretch; }

/* ============================================================
   SHOWS CAROUSEL — drag to scroll
   ============================================================ */
.shows-section { padding: 80px 0; overflow: hidden; }
.shows-section .section-header { padding: 0 48px; }

.carousel-wrap {
  overflow-x: auto; overflow-y: hidden; cursor: grab;
  user-select: none; -webkit-user-select: none;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel-wrap::-webkit-scrollbar { display: none; }
.carousel-wrap:active { cursor: grabbing; }
.carousel-track { display: flex; gap: 24px; padding: 8px 48px 20px; min-width: max-content; }

/* Show card */
.show-card {
  flex: 0 0 320px; position: relative;
  background: linear-gradient(145deg,#1a0808,#0a1a10);
  border: 1px solid rgba(200,134,10,.2); border-radius: 4px; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.show-card:hover { border-color: rgba(200,134,10,.65); transform: translateY(-6px); }

.show-card-accent { height: 3px; }
.accent-crimson { background: linear-gradient(to right,var(--cr),var(--gd)); }
.accent-gold    { background: linear-gradient(to right,var(--gd),var(--gn)); }
.accent-green   { background: linear-gradient(to right,var(--gn),var(--cr)); }
.accent-multi   { background: linear-gradient(to right,#FF9933,#138808,#006A4E,#8D153A); }

.show-card-body { padding: 28px 24px 20px; }

.show-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .66rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 1px; margin-bottom: 14px;
}
.show-badge.friday   { background: rgba(139,26,26,.4); color: #ff9999; border: 1px solid rgba(139,26,26,.5); }
.show-badge.saturday { background: rgba(200,134,10,.2); color: var(--gd-l); border: 1px solid rgba(200,134,10,.35); }
.show-badge.sunday   { background: rgba(26,92,58,.4); color: #88ffbb; border: 1px solid rgba(26,92,58,.5); }

.show-card-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.75rem; text-transform: uppercase; line-height: .95; color: var(--wh); margin-bottom: 8px; }
.show-card-title em { color: var(--or); font-style: normal; }
.show-card-tagline { font-size: .82rem; color: rgba(245,237,216,.5); font-style: italic; line-height: 1.55; margin-bottom: 16px; }

.show-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.show-meta-item { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(245,237,216,.5); display: flex; gap: 7px; align-items: center; }
.show-meta-item span { color: var(--cr2); }

.show-headliner-label { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gd); margin-bottom: 3px; }
.show-headliner-name  { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.2rem; text-transform: uppercase; color: var(--wh); }

.show-card-footer { padding: 14px 24px; border-top: 1px solid rgba(200,134,10,.12); display: flex; justify-content: space-between; align-items: center; }
.show-ticket-link { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--or); transition: color .2s; }
.show-ticket-link:hover { color: var(--gd-l); }
.show-flag { font-size: 1.1rem; }

/* ============================================================
   LINEUP GRID — 4-column photo grid with gold corners
   ============================================================ */
.lineup-section { padding: 80px 0; }
.lineup-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 36px; }

.comedian-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; transition: transform .3s; }
.comedian-card:hover { transform: scale(1.03); }
.comedian-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.comedian-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.55) 0%,transparent 50%); pointer-events: none; }

.card-overlay { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 14px 12px; }
.card-overlay-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; text-transform: uppercase; color: var(--wh); letter-spacing: .04em; }
.card-overlay-role { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gd-l); margin-top: 1px; }

/* Gold corner brackets */
.card-corner { position: absolute; width: 16px; height: 16px; z-index: 3; pointer-events: none; }
.card-corner.tl { top:8px;    left:8px;  border-top:    2px solid var(--gd); border-left:  2px solid var(--gd); }
.card-corner.tr { top:8px;    right:8px; border-top:    2px solid var(--gd); border-right: 2px solid var(--gd); }
.card-corner.bl { bottom:8px; left:8px;  border-bottom: 2px solid var(--gd); border-left:  2px solid var(--gd); }
.card-corner.br { bottom:8px; right:8px; border-bottom: 2px solid var(--gd); border-right: 2px solid var(--gd); }

.card-placeholder { background: linear-gradient(135deg,#1a0808,#0a1a10); display: flex; align-items: center; justify-content: center; border: 1px dashed rgba(200,134,10,.18); }
.card-placeholder span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .2em; color: rgba(245,237,216,.2); text-transform: uppercase; }

/* ============================================================
   SPONSORS SECTION
   ============================================================ */
.sponsors-section { padding: 72px 0; border-top: 1px solid rgba(200,134,10,.12); border-bottom: 1px solid rgba(200,134,10,.12); }
.sponsor-tiers { display: flex; flex-direction: column; gap: 36px; }
.tier-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .7rem; letter-spacing: .35em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.tier-label::after { content: ''; flex: 1; height: 1px; background: rgba(200,134,10,.12); }
.tier-label.presenting { color: var(--gd-l); }
.tier-label.associate  { color: var(--or); }
.tier-label.community  { color: rgba(245,237,216,.4); }

.sponsor-row { display: flex; flex-wrap: wrap; gap: 14px; }
.sponsor-slot { height: 72px; border-radius: 3px; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; transition: border-color .2s; overflow: hidden; }
.sponsor-slot img { max-height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .7; transition: opacity .2s; }
.sponsor-slot:hover img { opacity: 1; }
.sponsor-slot.presenting { width: 220px; border: 1.5px solid rgba(200,134,10,.28); color: rgba(245,237,216,.3); background: rgba(200,134,10,.03); }
.sponsor-slot.associate  { width: 160px; border: 1px solid rgba(224,90,0,.22);   color: rgba(245,237,216,.25); background: rgba(224,90,0,.03); }
.sponsor-slot.community  { width: 130px; border: 1px solid rgba(245,237,216,.1);  color: rgba(245,237,216,.18); background: transparent; }
.sponsor-slot:hover { border-color: rgba(200,134,10,.55); }

.sponsor-cta { text-align: center; margin-top: 32px; }
.sponsor-cta p { font-size: .88rem; color: rgba(245,237,216,.4); margin-bottom: 16px; letter-spacing: .04em; }

/* ============================================================
   INFO / VENUE STRIP — gradient panel
   ============================================================ */
.info-strip {
  background: linear-gradient(135deg,var(--cr-d) 0%,#1a0808 40%,#081a0e 60%,var(--gn-d) 100%);
  border-top: 1px solid rgba(200,134,10,.25);
  border-bottom: 1px solid rgba(200,134,10,.25);
  padding: 60px 0;
}
.info-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.info-text h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.6rem; text-transform: uppercase; line-height: .95; margin-bottom: 18px; }
.info-text h2 em { color: var(--or); font-style: normal; }
.info-text p { color: rgba(245,237,216,.65); font-size: .95rem; line-height: 1.75; margin-bottom: 26px; }
.info-flag-strip { margin-bottom: 22px; }

.venue-list li { padding: 12px 0; border-bottom: 1px solid rgba(200,134,10,.12); display: flex; align-items: flex-start; gap: 12px; }
.venue-list li:last-child { border-bottom: none; }
.venue-dot  { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.venue-name-t { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; color: var(--cr2); letter-spacing: .05em; }
.venue-addr-t { font-size: .78rem; color: rgba(245,237,216,.4); letter-spacing: .04em; margin-top: 2px; }

/* ============================================================
   TICKETS CTA SECTION
   ============================================================ */
.tickets-section { padding: 72px 0; text-align: center; }
.tickets-section .big-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(2rem,6vw,3.5rem); text-transform: uppercase; line-height: 1; margin-bottom: 18px;
}
.tickets-section .big-title em { color: var(--or); font-style: normal; }
.tickets-body { font-size: .95rem; color: rgba(245,237,216,.55); line-height: 1.8; margin-bottom: 32px; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  padding: 140px 48px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%,rgba(139,26,26,.35) 0%,transparent 70%),#0a0a0a;
}
.page-hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right,transparent,rgba(200,134,10,.3),transparent); }
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem,8vw,5.5rem); text-transform: uppercase; line-height: .9; margin-bottom: 14px; }
.page-hero .subtitle { font-size: .95rem; color: rgba(245,237,216,.5); font-style: italic; }

/* ============================================================
   SCHEDULE PAGE — NEW SHOW CARD LAYOUT
   ============================================================ */
.sched-show-card {
  background: linear-gradient(145deg,#160606,#060e08);
  border: 1px solid rgba(200,134,10,.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
  transition: border-color .3s;
}
.sched-show-card:hover { border-color: rgba(200,134,10,.45); }

/* Banner */
.sched-banner { width:100%; line-height:0; }
.sched-banner img { width:100%; height:auto; display:block; object-fit:cover; }

/* Title row */
.sched-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 0;
  flex-wrap: wrap;
}
.sched-title-left { flex: 1; min-width: 0; }
.sched-show-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--wh);
  line-height: .95;
  margin: 6px 0 8px;
}
/* Ticket button — identical to nav .menu-item-ticket style */
.sched-ticket-btn {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
  padding: 9px 22px !important;
  font-size: .82rem !important;
  letter-spacing: .1em;
  clip-path: none !important;
  border-radius: 2px;
  white-space: nowrap;
  background: var(--or) !important;
  color: var(--wh) !important;
  opacity: 1 !important;
  display: inline-block;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .2s;
}
.sched-ticket-btn:hover { background: var(--gd) !important; transform: none; }

/* Description — always visible, below title row */
.sched-description {
  padding: 22px 28px 26px;
  background: linear-gradient(to bottom, rgba(200,134,10,.04), rgba(0,0,0,.15));
  border-top: 2px solid rgba(200,134,10,.22);
  position: relative;
}
.sched-description::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, var(--gd), var(--or));
  margin-bottom: 14px;
  border-radius: 1px;
}
.sched-description p {
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
  color: rgba(245,237,216,.82);
  line-height: 1.85;
  margin-bottom: 14px;
  max-width: 680px;
}
.sched-description p:last-child { margin-bottom: 0; }

/* Toggle button */
.sched-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(200,134,10,.05);
  border: none;
  border-top: 1px solid rgba(200,134,10,.15);
  color: var(--gd-l);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.sched-toggle:hover { background: rgba(200,134,10,.1); }
.sched-toggle[aria-expanded="true"] .sched-toggle-label::before { content: '▲ '; }
.sched-toggle[aria-expanded="false"] .sched-toggle-label::before { content: '▼ '; }
.sched-toggle-label::before { margin-right: 4px; }

/* Performer list */
.sched-performers {
  border-top: 1px solid rgba(200,134,10,.1);
}
.sched-performers[hidden] { display: none; }

.sched-performer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 28px;
  border-bottom: 1px solid rgba(255,255,255,.03);
  transition: background .15s;
}
.sched-performer:last-child { border-bottom: none; }
.sched-performer:hover { background: rgba(200,134,10,.04); }

.sched-performer--host { background: rgba(200,134,10,.03); }
.sched-performer--headliner { background: rgba(224,90,0,.05); }

.sched-performer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--cr2);
  flex-shrink: 0;
}
.sched-performer--host .sched-performer-name { color: var(--gd-l); }
.sched-performer--headliner .sched-performer-name { color: var(--or); }

.sched-performer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}
.sched-performer-loc {
  font-size: .72rem;
  color: rgba(245,237,216,.32);
  letter-spacing: .06em;
}

@media (max-width: 600px) {
  .sched-title-row { padding: 18px 20px 0; }
  .sched-description { padding: 18px 20px 22px; }
  .sched-description p { font-size: .88rem; max-width: 100%; }
  .sched-toggle { padding: 12px 20px; }
  .sched-performer { padding: 10px 20px; flex-wrap: wrap; }
  .sched-performer-meta { justify-content: flex-start; }
  .sched-ticket-btn { width: 100%; text-align: center; margin-top: 12px; }
}

/* ============================================================
   SCHEDULE PAGE — OLD ROS STYLES (keep for CPT-driven shows)
   ============================================================ */
   ============================================================ */
.day-block { margin-bottom: 56px; }
.day-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: .72rem; letter-spacing: .4em; text-transform: uppercase; margin-bottom: 6px; }
.day-label.fri { color: rgba(139,26,26,.9); }
.day-label.sat { color: var(--gd); }
.day-label.sun { color: rgba(26,92,58,.9); }
.day-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.5rem; text-transform: uppercase; color: var(--wh); margin-bottom: 24px; line-height: .95; }

.show-block { background: linear-gradient(145deg,#160606,#060e08); border: 1px solid rgba(200,134,10,.18); border-radius: 3px; margin-bottom: 16px; overflow: hidden; transition: border-color .3s; }
.show-block:hover { border-color: rgba(200,134,10,.5); }
.show-block-header { padding: 20px 24px; display: flex; justify-content: space-between; align-items: flex-start; cursor: pointer; }
.show-time { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 4px; }
.show-time.t-fri { color: rgba(255,100,100,.6); }
.show-time.t-sat { color: var(--gd-l); }
.show-time.t-sun { color: rgba(100,220,140,.6); }
.show-title-lg { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; text-transform: uppercase; color: var(--wh); line-height: .95; }
.show-title-lg em { color: var(--or); font-style: normal; }
.show-venue-tag { font-size: .72rem; color: rgba(245,237,216,.35); letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; }
.show-block-right { text-align: right; flex-shrink: 0; padding-left: 20px; }
.show-hl-sm  { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gd); margin-bottom: 3px; }
.show-hl-name{ font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.1rem; text-transform: uppercase; color: var(--cr2); }
.show-toggle { font-size: .7rem; color: rgba(245,237,216,.3); letter-spacing: .15em; text-transform: uppercase; margin-top: 8px; display: block; transition: color .2s; }
.show-block:hover .show-toggle { color: var(--gd-l); }

/* Run of show */
.run-of-show { display: none; border-top: 1px solid rgba(200,134,10,.12); }
.run-of-show.open { display: block; }
.ros-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; padding: 11px 24px; border-bottom: 1px solid rgba(255,255,255,.03); }
.ros-row:last-child { border-bottom: none; }
.ros-time { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .8rem; color: rgba(245,237,216,.3); }
.ros-act  { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .95rem; text-transform: uppercase; color: var(--cr2); }
.ros-role { font-size: .7rem; color: rgba(245,237,216,.35); letter-spacing: .1em; text-transform: uppercase; margin-top: 1px; }
.ros-dur  { font-size: .72rem; color: rgba(245,237,216,.25); }
.ros-row.hl-row { background: rgba(200,134,10,.04); }
.ros-row.hl-row .ros-act { color: var(--gd-l); }

.venue-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 48px; }
.venue-card { background: linear-gradient(145deg,#120a04,#040e0a); border: 1px solid rgba(200,134,10,.15); border-radius: 3px; padding: 24px; }
.venue-card-day  { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gd); margin-bottom: 8px; }
.venue-card-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.25rem; text-transform: uppercase; color: var(--wh); line-height: 1.1; margin-bottom: 4px; }
.venue-card-addr { font-size: .78rem; color: rgba(245,237,216,.4); line-height: 1.55; }

/* ============================================================
   LINEUP PAGE
   ============================================================ */
.headliners-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 60px; }
.headliner-card { background: linear-gradient(145deg,#1a0808,#0a120a); border: 1px solid rgba(200,134,10,.22); border-radius: 3px; overflow: hidden; transition: border-color .3s, transform .3s; }
.headliner-card:hover { border-color: rgba(200,134,10,.7); transform: translateY(-4px); }
.headliner-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.headliner-placeholder { width: 100%; aspect-ratio: 3/4; background: linear-gradient(145deg,#1a0808,#0a1a10); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 2rem; text-transform: uppercase; color: rgba(245,237,216,.08); padding: 20px; text-align: center; }
.headliner-info { padding: 18px 20px; }
.headliner-role     { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gd); margin-bottom: 4px; }
.headliner-name     { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.7rem; text-transform: uppercase; color: var(--wh); line-height: .95; margin-bottom: 4px; }
.headliner-show-date{ font-size: .75rem; color: var(--or); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.show-group { margin-bottom: 44px; }
.show-group-header { display: flex; align-items: center; gap: 14px; padding-bottom: 12px; margin-bottom: 18px; border-bottom: 1px solid rgba(200,134,10,.18); }
.show-group-dot   { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.show-group-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.4rem; text-transform: uppercase; color: var(--wh); }
.show-group-meta  { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,237,216,.35); margin-left: auto; }

.comedian-row { display: grid; grid-template-columns: 30px 1fr auto 56px; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.04); transition: background .15s; }
.comedian-row:hover { background: rgba(200,134,10,.04); margin: 0 -12px; padding: 13px 12px; border-radius: 2px; }
.comedian-row-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .88rem; color: rgba(245,237,216,.2); text-align: center; }
.comedian-row-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.05rem; text-transform: uppercase; color: var(--cr2); }
.comedian-row-role { font-size: .7rem; color: rgba(245,237,216,.38); letter-spacing: .08em; text-transform: uppercase; margin-top: 1px; }
.comedian-row-ctry { font-size: .78rem; color: rgba(245,237,216,.35); }
.comedian-row-time { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .78rem; color: rgba(245,237,216,.28); text-transform: uppercase; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 56px; }
.stat-card { background: linear-gradient(145deg,#160606,#060e08); border: 1px solid rgba(200,134,10,.18); border-radius: 3px; padding: 24px; text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.4rem; color: var(--or); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,237,216,.38); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.content-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.2rem; text-transform: uppercase; line-height: .95; margin-bottom: 14px; }
.content-title em { color: var(--or); font-style: normal; }
.gold-divider { width: 60px; height: 2px; background: linear-gradient(to right,var(--cr),var(--gd)); margin-bottom: 24px; }
.body-text { font-size: .95rem; line-height: 1.8; color: rgba(245,237,216,.62); margin-bottom: 16px; }

.producer-card { padding: 30px; background: linear-gradient(145deg,#160a04,#04100a); border: 1px solid rgba(200,134,10,.2); border-radius: 3px; margin-bottom: 56px; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 28px; }
.team-card { background: linear-gradient(145deg,#100808,#060e08); border: 1px solid rgba(200,134,10,.14); border-radius: 3px; padding: 20px; }
.team-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.15rem; text-transform: uppercase; color: var(--wh); margin-bottom: 4px; }
.team-role { font-size: .7rem; color: var(--or); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.team-bio  { font-size: .84rem; color: rgba(245,237,216,.48); line-height: 1.65; }

.press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.press-slot { border: 1px solid rgba(245,237,216,.08); border-radius: 2px; padding: 16px; display: flex; align-items: center; justify-content: center; min-height: 52px; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,237,216,.22); text-align: center; }

/* ============================================================
   BLOG / POSTS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { background: linear-gradient(145deg,#160606,#060e08); border: 1px solid rgba(200,134,10,.15); border-radius: 3px; overflow: hidden; transition: border-color .3s, transform .3s; }
.post-card:hover { border-color: rgba(200,134,10,.5); transform: translateY(-4px); }
.post-thumbnail { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.post-body  { padding: 20px; }
.post-cat   { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gd); margin-bottom: 8px; }
.post-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.25rem; text-transform: uppercase; color: var(--wh); line-height: 1.1; margin-bottom: 8px; }
.post-title a { color: inherit; transition: color .2s; }
.post-title a:hover { color: var(--gd-l); }
.post-excerpt { font-size: .82rem; color: rgba(245,237,216,.5); line-height: 1.65; margin-bottom: 14px; }
.post-meta  { font-size: .7rem; color: rgba(245,237,216,.28); }

/* Single post content */
.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4 { margin-bottom: .75em; }
.entry-content p { color: rgba(245,237,216,.7); font-size: 1rem; line-height: 1.8; }
.entry-content a { color: var(--gd-l); }
.entry-content a:hover { color: var(--or); }
.entry-content img { border-radius: 2px; margin: 1.5em 0; }
.entry-content ul,.entry-content ol { margin: 0 0 1.25em 24px; }
.entry-content li { color: rgba(245,237,216,.65); line-height: 1.75; }
.entry-content blockquote { border-left: 3px solid var(--gd); padding-left: 20px; margin: 1.5em 0; font-style: italic; color: rgba(245,237,216,.55); }

/* ============================================================
   EVENTS CALENDAR (The Events Calendar plugin)
   ============================================================ */
.tribe-events-page-title,.tribe-events-title { font-family: 'Barlow Condensed', sans-serif !important; font-weight: 900 !important; text-transform: uppercase !important; color: var(--wh) !important; }
.tribe-events-calendar td,.tribe-events-calendar th { border-color: rgba(200,134,10,.15) !important; background: transparent !important; color: var(--cr2) !important; }
.tribe-events-calendar td.tribe-events-has-events { background: rgba(200,134,10,.07) !important; }
.tribe-events-button,.tribe-button { background: var(--or) !important; border-color: var(--or) !important; font-family: 'Barlow Condensed', sans-serif !important; font-weight: 700 !important; letter-spacing: .1em !important; text-transform: uppercase !important; border-radius: 0 !important; }
.tribe-events-event-meta { background: rgba(0,0,0,.4) !important; border: 1px solid rgba(200,134,10,.15) !important; border-radius: 3px !important; }
.tribe-event-url { color: var(--gd-l) !important; }

/* ============================================================
   GUTENBERG BLOCKS
   ============================================================ */
.wp-block-separator { border-color: rgba(200,134,10,.2) !important; }
.wp-block-quote { border-left: 3px solid var(--gd) !important; }
.wp-block-code,.wp-block-preformatted { background: rgba(200,134,10,.05) !important; border: 1px solid rgba(200,134,10,.15) !important; color: var(--cr2) !important; }
.wp-block-table td,.wp-block-table th { border-color: rgba(200,134,10,.15) !important; color: var(--cr2) !important; }
.wp-block-table thead { background: rgba(200,134,10,.08) !important; }
.has-crimson-color { color: var(--cr) !important; }
.has-orange-color  { color: var(--or) !important; }
.has-gold-color    { color: var(--gd) !important; }
.has-cream-color   { color: var(--cr2) !important; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination,.nav-links { text-align: center; margin: 40px 0; }
.page-numbers,.nav-previous a,.nav-next a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; padding: 8px 16px; border: 1px solid rgba(200,134,10,.2); color: rgba(245,237,216,.6); display: inline-block; margin: 0 4px; transition: border-color .2s, color .2s; }
.page-numbers:hover,.page-numbers.current { border-color: var(--gd-l); color: var(--gd-l); }

/* ============================================================
   SIDEBAR / WIDGETS
   ============================================================ */
.sidebar { padding-left: 32px; border-left: 1px solid rgba(200,134,10,.1); }
.widget { margin-bottom: 36px; }
.widget-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cr2); border-bottom: 1px solid rgba(200,134,10,.2); padding-bottom: 10px; margin-bottom: 16px; }
.widget ul li { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: .88rem; color: rgba(245,237,216,.55); }
.widget ul li a:hover { color: var(--gd-l); }
.widget_search input[type="search"] { width: 100%; padding: 10px 14px; background: rgba(200,134,10,.04); border: 1px solid rgba(200,134,10,.2); color: var(--cr2); font-family: 'Barlow', sans-serif; font-size: .88rem; border-radius: 2px; outline: none; }
.widget_search input:focus { border-color: rgba(200,134,10,.5); }

/* Comment form inputs */
.comment-form input[type="text"],.comment-form input[type="email"],.comment-form input[type="url"],.comment-form textarea { width: 100%; padding: 12px 16px; background: rgba(200,134,10,.04); border: 1px solid rgba(200,134,10,.2); color: var(--cr2); font-family: 'Barlow', sans-serif; font-size: .9rem; border-radius: 2px; outline: none; transition: border-color .2s; }
.comment-form input:focus,.comment-form textarea:focus { border-color: rgba(200,134,10,.55); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,237,216,.5); margin-bottom: 6px; margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon { background: #050505; border-top: 1px solid rgba(200,134,10,.2); padding: 48px; text-align: center; }
.footer-flag-strip { margin-bottom: 24px; }
.footer-logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.footer-logo-text .accent { color: var(--or); }
.footer-dates-line { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: .2em; color: var(--gd-l); font-size: .88rem; text-transform: uppercase; margin-bottom: 6px; }
.footer-by-line { font-size: .75rem; color: rgba(245,237,216,.35); letter-spacing: .1em; margin-bottom: 24px; }
#footer-navigation ul { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
#footer-navigation ul li a { color: rgba(245,237,216,.42); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; transition: color .2s; }
#footer-navigation ul li a:hover { color: var(--gd-l); }
.footer-copy { font-size: .7rem; color: rgba(245,237,216,.22); letter-spacing: .1em; }
.custom-logo-footer { height: 40px; width: auto; margin: 0 auto 16px; }

/* ============================================================
   SCROLL-REVEAL (applied via JS)
   ============================================================ */
.sr { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.sr.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container,.container-mid,.container-narrow { padding: 0 32px; }
  .headliners-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .press-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .site-header-inner { padding: 0 20px; height: 58px; }
  #primary-navigation { display: none; }
  #primary-navigation.is-open { display: flex; flex-direction: column; position: fixed; top: 58px; left: 0; right: 0; background: rgba(10,10,10,.98); border-bottom: 1px solid rgba(200,134,10,.2); padding: 20px; z-index: 999; }
  #primary-navigation.is-open ul { flex-direction: column; gap: 4px; width: 100%; }
  #primary-navigation.is-open ul li a { padding: 12px 16px; display: block; }
  #primary-navigation.is-open ul ul { position: static; border: none; padding: 0; }
  .nav-toggle { display: block; }
  .hero-frame { inset: 14px; }
  #hero { padding: 90px 24px 60px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; }
  .badges-bar { padding: 18px 20px; gap: 12px; }
  .shows-section .section-header { padding: 0 24px; }
  .carousel-track { padding: 8px 24px 16px; }
  .lineup-grid { grid-template-columns: repeat(2,1fr); }
  .info-inner { grid-template-columns: 1fr; gap: 32px; }
  .info-strip { padding: 48px 0; }
  .page-hero { padding: 110px 24px 48px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .venue-cards { grid-template-columns: 1fr; }
  .show-block-header { flex-direction: column; gap: 12px; }
  .show-block-right { text-align: left; padding-left: 0; }
  .headliners-grid { grid-template-columns: repeat(2,1fr); }
  #colophon { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .container,.container-mid,.container-narrow { padding: 0 20px; }
  .lineup-grid { gap: 10px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .ros-row { grid-template-columns: 60px 1fr; }
  .ros-dur { display: none; }
  .comedian-row { grid-template-columns: 28px 1fr; }
  .comedian-row-ctry,.comedian-row-time { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* On the Schedule page, hide the global nav ticket button
   since each show has its own Get Tickets button */
.page-template-page-templates-template-schedule #primary-navigation .menu-item-ticket,
.page-template-template-schedule #primary-navigation .menu-item-ticket { display: none !important; }


.comedian-modal-social { margin-top: 20px; }
.comedian-modal-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.comedian-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(200,134,10,.1);
  border: 1px solid rgba(200,134,10,.25);
  border-radius: 3px;
  color: var(--gd-l);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.comedian-social-link:hover {
  background: rgba(200,134,10,.2);
  border-color: rgba(200,134,10,.5);
  color: var(--gd-l);
}
.social-icon { font-size: .9rem; }

/* ============================================================
   COMEDIAN BIO MODAL
   ============================================================ */
.comedian-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: modalFadeIn .2s ease both;
}
.comedian-modal-overlay[hidden] { display: none; }

@keyframes modalFadeIn { from{opacity:0} to{opacity:1} }
@keyframes modalSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.comedian-modal-box {
  background: #141414;
  border: 1px solid rgba(200,134,10,.3);
  border-radius: 4px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideUp .25s ease both;
}

.comedian-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: rgba(245,237,216,.5);
  font-size: 1.6rem; cursor: pointer; line-height: 1;
  padding: 4px 8px; transition: color .2s;
}
.comedian-modal-close:hover { color: var(--gd-l); }

.comedian-modal-role {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gd); margin-bottom: 8px;
}
.comedian-modal-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem); text-transform: uppercase;
  color: var(--wh); line-height: .95; margin: 0 0 6px;
}
.comedian-modal-date {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--or); margin-bottom: 20px;
}
.comedian-modal-divider {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--cr), var(--gd));
  margin-bottom: 20px;
}
.comedian-modal-bio {
  font-size: .95rem; color: rgba(245,237,216,.75);
  line-height: 1.8;
}
.comedian-modal-bio p { margin-bottom: 1em; }
.comedian-modal-bio p:last-child { margin-bottom: 0; }

/* Hint text on cards that have a bio */
.comedian-bio-hint {
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gd); margin-top: 6px; opacity: .7;
}

@media (max-width: 600px) {
  .comedian-modal-box { padding: 28px 20px; }
}

/* ============================================================
   SAMPLE-PARITY ALIASES
   Maps sample/index.html class names to existing theme rules.
   Inner-page templates use the original names; homepage uses
   these aliases so markup can mirror the sample exactly.
   ============================================================ */

/* Hero */
section.hero                         { position:relative; min-height:100vh; display:flex; flex-direction:column; justify-content:center; align-items:center; overflow:hidden; padding:120px 48px 80px; }
.hero-bg                             { position:absolute; inset:0; background: radial-gradient(ellipse 60% 70% at 20% 50%,rgba(139,26,26,.55) 0%,transparent 70%), radial-gradient(ellipse 60% 70% at 80% 50%,rgba(26,92,58,.55) 0%,transparent 70%), radial-gradient(ellipse 80% 60% at 50% 0%,rgba(200,134,10,.2) 0%,transparent 60%), #0d0d0d; }
.festival-label                      { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:clamp(.72rem,1.3vw,.92rem); letter-spacing:.35em; text-transform:uppercase; color:var(--cr2); opacity:.6; margin-bottom:10px; }
.hero-title .nyc                     { font-size:clamp(3rem,10vw,7rem);   color:var(--wh);  display:block; letter-spacing:.02em; font-family:'Barlow Condensed',sans-serif; font-weight:900; text-transform:uppercase; line-height:.9; }
.hero-title .south-asian             { font-size:clamp(3.5rem,12vw,8.5rem); color:var(--or); display:block; letter-spacing:.01em; font-family:'Barlow Condensed',sans-serif; font-weight:900; text-transform:uppercase; line-height:.9; }
.hero-title .comedy-festival         { font-size:clamp(2.5rem,8vw,6rem);  color:var(--cr2); display:block; letter-spacing:.04em; font-family:'Barlow Condensed',sans-serif; font-weight:900; text-transform:uppercase; line-height:.9; }
.hero-meta                           { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:clamp(1rem,2.2vw,1.35rem); letter-spacing:.2em; text-transform:uppercase; color:var(--cr2); margin-bottom:6px; }
.hero-meta span                      { color:var(--gd-l); }

/* Badges bar */
.badges                              { display:flex; gap:24px; flex-wrap:wrap; justify-content:center; padding:26px 48px; background:rgba(0,0,0,.55); border-top:1px solid rgba(200,134,10,.2); border-bottom:1px solid rgba(200,134,10,.2); }
.badge                               { display:flex; flex-direction:column; align-items:center; gap:2px; }
.badge-num                           { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:2rem; color:var(--or); line-height:1; }
.badge-label                         { font-size:.68rem; letter-spacing:.15em; text-transform:uppercase; color:rgba(245,237,216,.5); font-weight:600; text-align:center; }
.badge-divider                       { width:1px; background:rgba(200,134,10,.2); align-self:stretch; }

/* Shows carousel */
.carousel-track-wrap                 { overflow-x:auto; overflow-y:hidden; cursor:grab; user-select:none; -webkit-user-select:none; scrollbar-width:none; -ms-overflow-style:none; }
.carousel-track-wrap::-webkit-scrollbar { display:none; }
.carousel-track-wrap:active          { cursor:grabbing; }
.shows-header                        { padding:0 48px; text-align:center; margin-bottom:48px; }
.show-card-top                       { padding:28px 24px 20px; }
.show-tagline                        { font-size:.82rem; color:rgba(245,237,216,.5); font-style:italic; line-height:1.55; margin-bottom:16px; }

/* Flag strips — sample uses .flags-strip / .f / .f-* */
.flags-strip                         { display:flex; height:4px; overflow:hidden; border-radius:1px; }
.flags-strip .f                      { flex:1; }
.f-in-o                              { background:#FF9933; }
.f-in-w                              { background:#fff; }
.f-in-g                              { background:#138808; }
.f-pk-g                              { background:#01411C; }
.f-pk-w                              { background:#fff; flex:.3 !important; }
.f-bd-g                              { background:#006A4E; }
.f-bd-r                              { background:#F42A41; flex:.6 !important; }
.f-sl-m                              { background:#8D153A; }
.f-sl-g                              { background:#00534C; flex:.3 !important; }
.f-sl-o                              { background:#EB7400; flex:.3 !important; }

/* Venue list — sample uses .venue-name / .venue-addr */
.venue-name                          { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:1rem; text-transform:uppercase; color:var(--cr2); letter-spacing:.05em; }
.venue-addr                          { font-size:.78rem; color:rgba(245,237,216,.4); letter-spacing:.04em; margin-top:2px; }

/* Footer — sample uses flat class names */
.footer-logo                         { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:1.5rem; text-transform:uppercase; letter-spacing:.05em; margin-bottom:6px; }
.footer-logo span                    { color:var(--or); }
.footer-dates                        { font-family:'Barlow Condensed',sans-serif; font-weight:700; letter-spacing:.2em; color:var(--gd-l); font-size:.88rem; text-transform:uppercase; margin-bottom:6px; }
.footer-by                           { font-size:.75rem; color:rgba(245,237,216,.35); letter-spacing:.1em; margin-bottom:24px; }
.footer-links                        { display:flex; gap:24px; justify-content:center; flex-wrap:wrap; margin-bottom:24px; }
.footer-links a                      { color:rgba(245,237,216,.42); font-size:.75rem; letter-spacing:.15em; text-transform:uppercase; transition:color .2s; }
.footer-links a:hover                { color:var(--gd-l); }

/* Nav — .nav-logo, .nav-links, .nav-ticket used in sample/hero-animation.html only.
   The WordPress theme nav is controlled by #masthead and #primary-navigation above. */
.nav-logo                            { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:1rem; letter-spacing:.05em; line-height:1.1; text-transform:uppercase; color:var(--wh); flex-shrink:0; }
.nav-logo span                       { color:var(--or); display:block; }
.nav-links                           { display:flex; gap:28px; align-items:center; }
.nav-links a                         { color:var(--cr2); font-size:.82rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; opacity:.75; padding:8px 0; transition:opacity .2s, color .2s; }
.nav-links a:hover                   { opacity:1; color:var(--gd-l); }
.nav-ticket                          { background:var(--or) !important; color:var(--wh) !important; opacity:1 !important; padding:9px 20px !important; border-radius:2px; }
.nav-ticket:hover                    { background:var(--gd) !important; }

/* Sponsors inner wrapper */
.sponsors-inner                      { max-width:1300px; margin:0 auto; padding:0 48px; }
.sponsors-header                     { text-align:center; margin-bottom:48px; }
.section-eyebrow                     { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:.78rem; letter-spacing:.4em; text-transform:uppercase; color:var(--gd-l); margin-bottom:12px; display:block; }

/* Buttons — sample uses .btn-primary / .btn-secondary (no .btn base) */
a.btn-primary, button.btn-primary    { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1rem; letter-spacing:.15em; text-transform:uppercase; padding:15px 38px; border:none; cursor:pointer; display:inline-block; text-decoration:none; clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); transition:background .2s,transform .15s; background:var(--or); color:var(--wh) !important; }
a.btn-primary:hover,button.btn-primary:hover { background:var(--gd); transform:translateY(-2px); }
a.btn-secondary,button.btn-secondary { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:1rem; letter-spacing:.15em; text-transform:uppercase; padding:15px 38px; border:1.5px solid rgba(245,237,216,.35); cursor:pointer; display:inline-block; text-decoration:none; clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); transition:background .2s,transform .15s,border-color .2s,color .2s; background:transparent; color:var(--cr2) !important; }
a.btn-secondary:hover,button.btn-secondary:hover { border-color:var(--gd-l); color:var(--gd-l) !important; transform:translateY(-2px); }

@media (max-width: 900px) {
  nav { padding:0 20px; height:58px; }
  .nav-links { display:none; }
  .badges { padding:18px 20px; gap:12px; }
  .shows-header { padding:0 24px; }
  section.hero { padding:90px 24px 60px; }
}
@media (max-width: 600px) {
  nav { padding:0 16px; }
}
