:root {
  --red: #7b1212;
  --red-d: #4e0a0a;
  --red-l: #9e1818;
  --gold: #c9a245;
  --gold-l: #e4bf72;
  --gold-ll: #f5e4b0;
  --cream: #faf6ee;
  --ink: #0f0f0f;
  --sub: #5c5c5c;
  --border: rgba(0, 0, 0, 0.09);
  --dark-bg: #120a0a;
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.ct-nav {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--red-d);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
  padding: 12px 0;
}

.ct-nav .inner {
  max-width: 1380px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-brand img {
  width: 250px;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  list-style: none
}

.nav-links a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--gold-l)
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-size: .90rem;
  color: var(--gold-l);
  text-decoration: none
}

.nav-ticket {
  background: var(--gold);
  color: var(--red-d);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .44rem 1.1rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, transform .15s;
}

.nav-ticket:hover {
  background: var(--gold-l);
  color: var(--red-d);
  transform: translateY(-1px)
}

/* Toggle Button (Hamburger Menu) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1051;
  margin-left: auto;
  order: 2;
  color: var(--gold);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  color: var(--gold-l);
}

/* Sidebar Navigation */
.nav-sidebar {
  position: fixed;
  left: -110%;
  top: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: var(--red-d);
  box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
  transition: left 0.3s ease;
  z-index: 1050;
  overflow-y: auto;
  padding-top: 60px;
}

.nav-sidebar.active {
  left: 0;
}

.sidebar-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1052;
  transition: color 0.2s;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.sidebar-close:hover {
  color: var(--gold-l);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-links a {
  display: block;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.sidebar-links a:hover {
  background: rgba(201, 162, 69, 0.1);
  color: var(--gold-l);
  padding-left: 24px;
}

.sidebar-divider {
  margin: 10px 0;
  border: none !important;
}

.sidebar-phone {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize !important;
}

.sidebar-ticket {
  background: var(--gold);
  color: var(--red-d) !important;
  font-weight: 700;
  text-transform: uppercase !important;
  margin: 10px 15px;
  border-radius: 2px;
}

.sidebar-ticket:hover {
  background: var(--gold-l);
  padding-left: 20px !important;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1049;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
}

/* ═══════════════════════════════════════
   BOOTSTRAP CAROUSEL — HERO
═══════════════════════════════════════ */
#heroCarousel {
  position: relative;
  height: 88vh;
  min-height: 500px;
  max-height: 900px;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%
}

/* Slide backgrounds */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.s1 {
  background-image: url('../images/slide-1.jpg');
}

.s2 {
  background-image: url('../images/slide-2.jpg');
}


/* Pattern overlay per slide */
.slide-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .09
}

/* Dark vignette */
.slide-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, transparent 20%, rgba(0, 0, 0, .55) 100%);
}

.slide-bottom-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .25) 50%, transparent 100%);
}

/* Slide caption */
.carousel-item .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem 0rem 3.5rem;
  pointer-events: none;
}

.sc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.sc-eyebrow .dash {
  width: 26px;
  height: 1px;
  background: var(--gold)
}

.sc-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: .7rem;
}

.sc-title em {
  color: var(--gold-l);
  font-style: italic
}


/* Bootstrap carousel overrides */
.carousel-control-prev,
.carousel-control-next {
  width: 54px;
  height: 54px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  border-radius: 0;
  opacity: 1;
  transition: background .2s, border-color .2s;
}

.carousel-control-prev {
  left: 2rem
}

.carousel-control-next {
  right: 2rem
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(78, 10, 10, .6);
  border-color: var(--gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

.carousel-indicators {
  bottom: 1.2rem;
  gap: .5rem;
  margin: 0 6rem;
}

.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, .3);
  border-top: 0;
  border-bottom: 0;
  transition: width .35s, background .35s;
  opacity: 1;
}

.carousel-indicators .active {
  width: 52px;
  background: var(--gold);
}

/* Caption animation */
.carousel-item .sc-eyebrow,
.carousel-item .sc-title,
.carousel-item .sc-meta {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}

.carousel-item.active .sc-eyebrow {
  opacity: 1;
  transform: none;
  transition-delay: .2s
}

.carousel-item.active .sc-title {
  opacity: 1;
  transform: none;
  transition-delay: .35s
}

.carousel-item.active .sc-meta {
  opacity: 1;
  transform: none;
  transition-delay: .5s
}

/* ═══════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(90deg, var(--red-d) 0%, var(--red) 50%, var(--red-l) 100%);
  padding: 1.8rem 0;
}

.cta-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.50rem;
  color: #fff;
  font-weight: 600
}

.cta-note {
  font-size: .90rem;
  color: rgba(255, 255, 255, .55);
  margin-top: .15rem
}

.btn-w {
  background: #fff;
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-w:hover {
  background: var(--cream);
  color: var(--red-d);
  transform: translateY(-1px)
}

.btn-o {
  background: transparent;
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .4);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.6rem;
  text-decoration: none;
  border-radius: 2px;
  margin-left: .6rem;
  display: inline-block;
  transition: border-color .2s, background .2s, color .2s;
}

.btn-o:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
  color: #fff
}

/* ═══════════════════════════════════════
   EVENTS SECTION  — NEW CARD LAYOUT
═══════════════════════════════════════ */
.performances-section {
  background: var(--cream);
  padding: 5rem 0;
  position: relative;
}

.performances-section:before {
  content: '';
  background-image: url("../images/bg-content.png");
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.3;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0.8rem auto 0;
}

/* ─── EVENT CARD ─── */
.event-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 1;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img-wrap img {
  transform: scale(1.06);
}

.event-body {
  padding: 1.6rem 1.5rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.75rem;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.80rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.event-venue {
  font-size: 0.8rem;
  color: var(--sub);
  letter-spacing: 0.04em;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.event-desc {
  font-size: 1rem;
  color: var(--sub);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

.event-footer {
  padding: 1rem 1.5rem 1.4rem;
  border-top: 1px solid var(--border);
}

.btn-read-more {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s, color 0.2s;
}

.btn-read-more:hover {
  color: var(red-d);
  gap: 0.8rem;
}

.btn-read-more .arrow {
  font-size: 0.9rem;
}

.event-card-featured {
  background: var(--red-d);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s;
}

.event-card-featured:hover {
  box-shadow: var(--shadow-lg);
}

.event-card-featured img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s, opacity 0.3s;
  max-height: 450px;
  object-fit: cover;
  object-position: top center;
}

.event-card-featured:hover img {
  transform: scale(1.05);
}

.event-card-featured .feat-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.feat-date {
  font-size: 0.75rem;
  color: var(--gold-l);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.feat-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.feat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.btn-feat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-feat:hover {
  background: var(--gold);
  color: var(--red-d);
}

/* ═══════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

/* ticket card */
.sb-ticket {
  background: var(--red-d);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.sbt-eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 600;
  margin-bottom: .3rem
}

.sbt-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.3rem;
  line-height: 1.25
}

.sbt-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1.4rem
}

.sbt-p {
  background: rgba(255, 255, 255, .07);
  padding: .8rem .5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .06)
}

.sbt-p-amt {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1
}

.sbt-p-lbl {
  font-size: .54rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin-top: .3rem
}

.sbt-buy {
  display: block;
  background: var(--gold);
  color: var(--red-d);
  text-align: center;
  text-decoration: none;
  padding: .68rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s;
  position: relative;
  z-index: 1;
}

.sbt-buy:hover {
  background: var(--gold-l);
  color: var(--red-d)
}

/* info card */
.sb-info {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 15px;
}

.sb-info-head {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: .7rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sb-info-head i {
  color: var(--red);
  font-size: .8rem
}

/* show times */
.st-rows {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.st-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .6rem .8rem;
}

.st-row.primary {
  background: rgba(123, 18, 18, .08);
  border-left: 3px solid var(--red)
}

.st-row.secondary {
  background: rgba(201, 162, 69, .08);
  border-left: 3px solid var(--gold)
}

.st-time {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  min-width: 64px;
}

.st-info strong {
  display: block;
  font-size: .90rem;
  font-weight: 600;
  color: var(--ink)
}

.st-info span {
  font-size: .75rem;
  color: var(--sub)
}

/* accessibility */
.ac-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .9rem;
  background: rgba(123, 18, 18, .05);
  border-left: 3px solid var(--red);
  margin-bottom: .75rem;
}

.ac-badge i {
  color: var(--red);
  font-size: .9rem
}

.ac-badge span {
  font-size: .90rem;
  font-weight: 500;
  color: var(--ink)
}

.ac-text {
  font-size: .90rem;
  color: var(--sub);
  line-height: 1.6
}

/* ═══════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════ */
.map-body {
  position: relative;
  height: 430px;
  overflow: hidden
}

.map-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05) brightness(0.95)
}

/* ═══════════════════════════════════════
   SPONSORS — WHITE BG
═══════════════════════════════════════ */
.sponsors-sec {
  background: #fff;
  padding: 5rem 0;
  border-top: 1px solid var(--border)
}

.sp-eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  text-align: center;
  margin-bottom: .3rem
}

.sp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: .4rem
}

.sp-sub {
  font-size: .78rem;
  color: var(--sub);
  text-align: center;
  margin-bottom: 2.8rem
}

.sp-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: .4rem auto 2.8rem
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.sp-grid img {
  width: 100%;
  border: 1px solid var(--border);
  padding: 15px;
  display: flex;
  height: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════
   FOOTER — same as sponsors (white)
═══════════════════════════════════════ */
.footer {
  background: var(--dark-bg);
  padding: 4.5rem 0 0
}

.ft-about {
  font-size: .90rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.75;
  font-weight: 300
}

.ft-col-head {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: .9rem;
}

.ft-links {
  list-style: none;
  padding: 0;
}

.ft-links li {
  margin-bottom: .3rem
}

.ft-links a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

.ft-links a:hover {
  color: var(--gold-l)
}

.ft-links a i {
  font-size: .7rem;
  opacity: .6;
}

.ft-ci {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .6rem
}

.ft-ci i {
  color: var(--gold);
  font-size: .90rem;
  margin-top: 7px;
  flex-shrink: 0;
}

.ft-ci p,
.ft-ci a {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  margin: 0;
  line-height: 1.65;
  font-weight: 300;
  text-decoration: none;
  transition: color .2s;
}

.ft-ci a:hover {
  color: var(--gold-l)
}

.ft-bottom {
  border-top: 1px solid #ffffff38;
  padding: 1.4rem 0;
  margin-top: 3rem
}

.ft-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .03em;
}

.ft-soc {
  display: flex;
  gap: .5rem
}

.ft-sb {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .5);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.ft-sb:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* ═══════════════════════════════════════
   REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.up {
  opacity: 1;
  transform: none
}

.reveal.d1 {
  transition-delay: .1s
}

.reveal.d2 {
  transition-delay: .2s
}

.reveal.d3 {
  transition-delay: .3s
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero {
  position: relative;
  background: linear-gradient(rgba(15, 10, 10, 0.62), rgba(15, 10, 10, 0.62)), url('../images/slide-2.jpg') center/cover no-repeat;
  min-height: 280px;
  display: flex;
  align-items: center;
}

.about-hero-kicker {
  color: var(--gold-l);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.about-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  margin: 0;
}

.about-content-section {
  background: var(--cream);
  padding: 4rem 0 5rem;
}

.about-main-image {
  width: 100%;
  border: 1px solid var(--border);
  margin-bottom: 1.4rem;
  display: block;
  border-radius: 15px;
}

.about-main-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1rem;
}

.about-ticket-lines p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .45rem;
  font-size: .95rem;
}

.about-ticket-lines p span {
  color: var(--ink);
}

.about-ticket-lines p strong {
  color: var(--ink);
  font-weight: 700;
}

.about-ticket-lines small {
  display: block;
  margin-top: .6rem;
  color: var(--ink);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   MEDIA PAGE
═══════════════════════════════════════ */
.media-hero {
  position: relative;
  background: linear-gradient(rgba(15, 10, 10, 0.68), rgba(15, 10, 10, 0.68)), url('../images/slide-1.jpg') center/cover no-repeat;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.media-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
  margin: 0;
}

.media-content-section {
  background: var(--cream);
  padding: 4rem 0 5rem;
}

.media-intro {
  margin-bottom: 1.4rem;
}

.media-intro h2 {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: .55rem;
}

.media-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0;
}

.media-archive-grid {
  display: grid;
  gap: 1.25rem;
}

.media-pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.media-group {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.media-group-head {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.media-group-head i {
  color: var(--red-d);
}

.media-pdf-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.media-pdf-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid #ddd4c3;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.media-pdf-card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.media-pdf-card span {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  background: rgba(78, 10, 10, .92);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem .7rem;
}

.media-legacy-group {
  border-style: dashed;
}

.media-legacy-note {
  margin: 0;
  font-size: .92rem;
  color: var(--sub);
}

.media-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.media-poster-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-poster-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid #ddd4c3;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.media-poster-grid img:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
}

.media-poster-grid img {
  cursor: zoom-in;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(8, 6, 6, .86);
  backdrop-filter: blur(6px);
}

.media-lightbox.active {
  display: flex;
}

.media-lightbox-inner {
  position: relative;
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.media-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--red-d);
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.media-lightbox-close:hover {
  background: var(--gold-l);
}

.media-lightbox-frame {
  background: #fff;
  padding: .7rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

.media-lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.media-lightbox-caption {
  color: rgba(255, 255, 255, .9);
  text-align: center;
  font-size: .95rem;
  letter-spacing: .03em;
}

/*************************** Resposnive Design **********************************/
@media(max-width:1024px) {
  #heroCarousel {
    height: 85vh;
    min-height: 480px;
    max-height: 800px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 48px;
    height: 48px;
  }

  .carousel-indicators {
    margin: 0 4rem;
  }

  .performances-section:before {
    display: none;
  }
}

@media(max-width:991px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }

  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .nav-end {
    margin-left: 0;
    order: 2;
  }

  .nav-ticket {
    display: none;
  }

  .ct-nav .inner {
    padding: 0 1.2rem;
  }

  .nav-brand {
    order: 1;
  }

  .nav-brand img {
    width: 180px;
  }

  .footer {
    padding: 3rem 0 0;
  }
}

@media(max-width:767px) {
  .about-hero {
    min-height: 220px;
  }

  .media-hero {
    min-height: 200px;
  }

  .about-content-section {
    padding: 2.8rem 0 3.2rem;
  }

  .media-content-section {
    padding: 2.8rem 0 3.2rem;
  }

  .about-main-copy p {
    font-size: .95rem;
    line-height: 1.7;
  }

  .media-pdf-grid,
  .media-poster-grid,
  .media-poster-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #heroCarousel {
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
  }

  .carousel-item .slide-caption {
    padding: 2rem 1.5rem 2.5rem;
  }

  .sc-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
  }

  .sc-eyebrow .dash {
    width: 20px;
  }

  .sc-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 0.5rem;
  }

  .sc-meta {
    font-size: 0.85rem;
    gap: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 44px;
    height: 44px;
  }

  .carousel-control-prev {
    left: 1rem;
  }

  .carousel-control-next {
    right: 1rem;
  }

  .carousel-indicators {
    bottom: 1rem;
    margin: 0 2rem;
    gap: 0.3rem;
  }

  .carousel-indicators [data-bs-target] {
    width: 24px;
    height: 2px;
  }

  .carousel-indicators .active {
    width: 40px;
  }

  .cta-strip {
    text-align: center;
  }

  .btn-o,
  .btn-w {
    letter-spacing: 0;
  }

  .sp-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:575px) {
  .about-ticket-lines p {
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
  }

  .media-pdf-grid,
  .media-poster-grid,
  .media-poster-grid-wide {
    grid-template-columns: 1fr;
  }

  #heroCarousel {
    height: 65vh;
    min-height: 380px;
    max-height: 600px;
  }

  .carousel-item .slide-caption {
    padding: 1.5rem 1rem 2rem;
  }

  .sc-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
  }

  .sc-eyebrow .dash {
    width: 15px;
  }

  .sc-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 0.3rem;
    line-height: 1.1;
  }

  .sc-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .sc-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 0.8rem;
  }

  .carousel-control-next {
    right: 0.8rem;
  }

  .carousel-indicators {
    bottom: 0.8rem;
    margin: 0 1rem;
    gap: 0.2rem;
  }

  .carousel-indicators [data-bs-target] {
    width: 20px;
    height: 2px;
  }

  .carousel-indicators .active {
    width: 32px;
  }
}

@media(max-width:480px) {
  .nav-brand img {
    width: 150px;
  }

  .media-group {
    padding: .85rem;
  }

  .nav-sidebar {
    max-width: 100%;
  }

  .sidebar-links a {
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .sp-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:360px) {
  #heroCarousel {
    height: 60vh;
    min-height: 340px;
    max-height: 500px;
  }

  .carousel-item .slide-caption {
    padding: 1rem 0.8rem 1.5rem;
  }

  .sc-title {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }
}