/* =============================================
   CHAD COX LIVE — Styles
   Modern Vintage / Dark Editorial
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark-mid:   #1a1a1a;
  --dark-light: #242424;
  --gold:       #c9a84c;
  --gold-dim:   #8a6f30;
  --gold-light: #e8c97a;
  --cream:      #f0e6cc;
  --white:      #ffffff;
  --grey:       #888888;
  --grey-light: #cccccc;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 72px;
  --section-pad: 100px;
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--black);
  color: var(--grey-light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Typography helpers --- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.03em;
}

.section-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dim);
  margin-top: 0.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--small {
  font-size: 0.65rem;
  padding: 9px 22px;
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold-dim);
}
.btn--small:hover {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--large {
  padding: 18px 48px;
  font-size: 0.8rem;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  overflow: hidden;
}

.nav .nav__links,
.nav .nav__cta,
.nav .nav__logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav.scrolled .nav__links,
.nav.scrolled .nav__cta,
.nav.scrolled .nav__logo {
  opacity: 1;
  pointer-events: auto;
}

.nav.scrolled,
.nav.menu-open {
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.2);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-img {
  height: 70px;
  width: auto;
  max-width: 180px;
  display: block;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  border: 1px solid var(--gold-dim);
  padding: 10px 22px;
  color: var(--gold) !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background-color: var(--black);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero__logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
}

.hero__video-wrap {
  position: relative;
  overflow: hidden;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__video-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    transparent 15%,
    transparent 85%,
    var(--black) 100%
  ),
  linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    transparent 20%,
    transparent 80%,
    rgba(10,10,10,0.5) 100%
  );
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 11rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  overflow: visible;
}

.hero__headline-line--accent {
  color: var(--gold);
  -webkit-text-stroke: 0px;
}

.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--cream);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* =============================================
   SHOWS  — Old West Newspaper
   ============================================= */

/* Aged parchment background with paper grain */
.shows {
  background-color: #e8dfc4;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  padding: var(--section-pad) 0;
  position: relative;
}

/* Edge burn / vignette */
.shows::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(30,15,5,0.18) 100%),
    linear-gradient(to bottom, rgba(30,15,5,0.12) 0%, transparent 8%, transparent 92%, rgba(30,15,5,0.12) 100%);
}

/* Decorative outer border frame */
.shows::after {
  content: '';
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 2px solid rgba(60,35,10,0.25);
  box-shadow: inset 0 0 0 6px rgba(60,35,10,0.08);
}

/* ---- Header ---- */
.shows__header {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 72px;
  position: relative;
  z-index: 1;
}

/* Double-rule ornamental lines */
.shows__rule {
  flex: 1;
  height: 6px;
  border-top: 2px solid #3c2008;
  border-bottom: 1px solid #3c2008;
  background: transparent;
}

.shows__rule:last-child {
  border-top: 2px solid #3c2008;
  border-bottom: 1px solid #3c2008;
  background: transparent;
}

.shows__header-text {
  text-align: center;
  flex-shrink: 0;
  position: relative;
}

/* Diamond ornament above eyebrow */
.shows__header-text::before {
  content: '✦ ✦ ✦';
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  color: #7a4e1a;
  margin-bottom: 6px;
}

/* Diamond ornament below sub */
.shows__header-text::after {
  content: '— ✦ —';
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: #7a4e1a;
  margin-top: 8px;
}

/* Override global typography helpers inside .shows */
.shows .section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #7a4e1a;
  margin-bottom: 4px;
  display: block;
}

.shows .section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #1e0f03;
  letter-spacing: 0.06em;
  line-height: 0.95;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.12);
}

.shows .section-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: #5a3812;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ---- Show list ---- */
.shows__empty {
  text-align: center;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 2rem 0;
}

.shows__list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;

}

/* ---- Each show row ---- */
.show-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 16px;
  border-bottom: 1px solid rgba(60,35,10,0.2);
  position: relative;
}

/* First row: thick top border with double-line */
.show-item:first-child {
  border-top: 3px double #3c2008;
}

/* Last row: thick bottom */
.show-item:last-child {
  border-bottom: 3px double #3c2008;
}


/* ---- Date block ---- */
.show-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  border-right: 1px solid rgba(60,35,10,0.25);
  padding-right: 20px;
  gap: 2px;
}

.show-item__month {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7a4e1a;
  background: #6c0000;
  color: #e8dfc4;
  padding: 2px 6px;
  display: block;
}

.show-item__day {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #1e0f03;
  line-height: 1;
  letter-spacing: 0.03em;
}

/* ---- Venue & location ---- */
.show-item__venue {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: #1e0f03;
  letter-spacing: 0.01em;
}

.show-item__location {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #7a4e1a;
  margin-top: 4px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Time: stamp-style box ---- */
.show-item__time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3c2008;
  white-space: nowrap;
  border: 2px solid #3c2008;
  padding: 6px 14px;
  position: relative;
  /* Rough stamp look */
  box-shadow: 1px 1px 0 rgba(60,35,10,0.4), inset 0 0 0 1px rgba(60,35,10,0.1);
}

/* =============================================
   MEDIA
   ============================================= */
.media {
  background-color: var(--black);
  padding: var(--section-pad) 0;
}

.media__header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 48px;
}

.media__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 10px;
}

.media__item {
  overflow: hidden;
  position: relative;
  background: var(--dark-mid);
}

.media__item--tall {
  grid-row: span 2;
}

.media__item--wide {
  grid-column: span 2;
}

.media__item--video {
  grid-row: span 3;
}

.media__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media__item img {
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(0.8);
}

.media__item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}

/* =============================================
   BOOKING
   ============================================= */
.booking {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background-color: #e8dfc4;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}

/* Edge burn / vignette */
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(30,15,5,0.18) 100%),
    linear-gradient(to bottom, rgba(30,15,5,0.12) 0%, transparent 8%, transparent 92%, rgba(30,15,5,0.12) 100%);
}

/* Decorative outer border frame */
.booking::after {
  content: '';
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 2px solid rgba(60,35,10,0.25);
  box-shadow: inset 0 0 0 6px rgba(60,35,10,0.08);
}

/* Remove the old bg image and overlay — not needed */
.booking__bg { display: none; }
.booking__overlay { display: none; }

.booking__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

/* Diamond ornament above eyebrow */
.booking__content .section-eyebrow::before {
  content: '✦ ✦ ✦';
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  color: #7a4e1a;
  margin-bottom: 6px;
}

.booking__content .section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #7a4e1a;
  margin-bottom: 4px;
  display: block;
}

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #1e0f03;
  line-height: 1;
  letter-spacing: 0.06em;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.12);
  margin-bottom: 1rem;
}

.booking__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #5a3812;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* Ornamental rule between header and form */
.booking__form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.booking__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

/* Double-rule above form */
.booking__form::before {
  content: '';
  display: block;
  height: 6px;
  border-top: 2px solid #3c2008;
  border-bottom: 1px solid #3c2008;
  margin-bottom: 4px;
}

/* Double-rule below form */
.booking__form::after {
  content: '';
  display: block;
  height: 6px;
  border-top: 2px solid #3c2008;
  border-bottom: 1px solid #3c2008;
  margin-top: 4px;
}

.booking__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.booking__form input,
.booking__form textarea {
  background: rgba(60,35,10,0.05);
  border: 1px solid rgba(60,35,10,0.35);
  color: #1e0f03;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 14px 18px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.booking__form input::placeholder,
.booking__form textarea::placeholder {
  color: rgba(60,35,10,0.4);
  letter-spacing: 0.05em;
  font-style: italic;
}

.booking__form input:focus,
.booking__form textarea:focus {
  border-color: #3c2008;
  background: rgba(60,35,10,0.08);
}

.booking__form .btn {
  align-self: center;
  margin-top: 8px;
  background-color: #6c0000;
  border-color: #6c0000;
  color: #e8dfc4;
  font-weight: 700;
  letter-spacing: 0.2em;
  box-shadow: 1px 1px 0 rgba(60,35,10,0.4);
}

.booking__form .btn:hover {
  background-color: #3c2008;
  border-color: #3c2008;
  color: #e8dfc4;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background-color: var(--dark);
  border-top: 1px solid var(--dark-light);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  height: auto;
  width: 100%;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer__divider {
  color: var(--gold);
  font-size: 0.7rem;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

.footer__nav {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.footer__nav a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer__social a {
  color: var(--grey);
  transition: color 0.2s;
}

.footer__social a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--dark-light);
  padding: 20px 48px;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  max-width: 100%;
}

/* =============================================
   ANIMATIONS — fade-up on scroll
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* =============================================
   LARGE SCREENS — scale up typography
   ============================================= */
@media (min-width: 1400px) {
  :root {
    --section-pad: 120px;
    --max-w: 1320px;
  }

  .section-eyebrow { font-size: 1.08rem; }
  .section-title   { font-size: clamp(5.4rem, 6.6vw, 7.8rem); }
  .section-sub     { font-size: 1.62rem; }

  .hero__eyebrow { font-size: 1.14rem; }
  .hero__sub     { font-size: clamp(1.56rem, 1.92vw, 1.92rem); }

  .shows .section-eyebrow { font-size: 0.96rem; }
  .shows .section-title   { font-size: clamp(5.4rem, 6.6vw, 8.4rem); }
  .shows .section-sub     { font-size: 1.44rem; }

  .show-item { padding: 28px 20px; gap: 40px; }
  .show-item__day    { font-size: 4.56rem; }
  .show-item__venue  { font-size: 1.74rem; }
  .show-item__location { font-size: 1.02rem; }
  .show-item__time   { font-size: 1.02rem; }
  .show-item__month  { font-size: 0.84rem; }

  .booking__title { font-size: clamp(4.8rem, 6.6vw, 7.8rem); }
  .booking__sub   { font-size: 1.5rem; }
  .booking__content .section-eyebrow { font-size: 0.96rem; }

  .booking__form input,
  .booking__form textarea { font-size: 1.2rem; padding: 16px 20px; }

  :root { --nav-h: 88px; }

  .nav { padding: 0 64px; }
  .nav__logo-img { height: 84px; }
  .nav__links { gap: 52px; }
  .nav__links a  { font-size: 1.02rem; }
  .nav__cta      { padding: 13px 30px; font-size: 1.02rem; }

  .footer__name    { font-size: 2.1rem; }
  .footer__tagline { font-size: 0.96rem; }
  .footer__nav a   { font-size: 1.02rem; }
  .footer__bottom  { font-size: 0.96rem; }

  .media__grid {
    grid-auto-rows: 300px;
  }
}

@media (min-width: 1800px) {
  :root {
    --max-w: 1600px;
    --section-pad: 140px;
  }

  :root { --nav-h: 100px; }

  .nav { padding: 0 80px; }
  .nav__logo-img { height: 96px; }
  .nav__links { gap: 64px; }
  .nav__links a  { font-size: 1.15rem; }
  .nav__cta      { padding: 15px 36px; font-size: 1.15rem; }

  .section-eyebrow { font-size: 1.2rem; }
  .section-title   { font-size: clamp(6.6rem, 6vw, 9.6rem); }
  .section-sub     { font-size: 1.86rem; }

  .hero__eyebrow { font-size: 1.26rem; }
  .hero__sub     { font-size: clamp(1.68rem, 1.8vw, 2.28rem); }
  .hero__logo    { max-width: 580px; }

  .shows .section-title { font-size: clamp(6.6rem, 6vw, 9.6rem); }
  .shows .section-eyebrow { font-size: 1.02rem; }

  .show-item { padding: 32px 24px; }
  .show-item__day    { font-size: 5.4rem; }
  .show-item__venue  { font-size: 1.98rem; }
  .show-item__location { font-size: 1.14rem; }

  .booking__title { font-size: clamp(5.4rem, 6vw, 9.6rem); }
  .booking__sub   { font-size: 1.74rem; }

  .media__grid { grid-auto-rows: 360px; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 0 24px; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: 100dvh;
  }

  .hero__video-wrap {
    min-height: 0;
  }

  .hero__scroll-hint { display: none; }

  .hero__copy { padding: 28px 24px 36px; }
  .hero__logo { display: none; }

  .nav .nav__logo {
    opacity: 1;
    pointer-events: auto;
  }

  .hero__video-wrap {
    order: -1;
    width: 100%;
  }

  .hero__eyebrow { margin-bottom: 0.75rem; }
  .hero__sub { margin-bottom: 1.5rem; }

  .shows__header,
  .shows__list,
  .media__header,
  .media__grid,
  .booking__content { padding: 0 24px; }

  .shows::after,
  .booking::after { inset: 10px; }

  .show-item {
    grid-template-columns: 64px 1fr auto;
    gap: 16px;
    padding: 18px 12px;
  }

  .show-item__time { display: block; }
  .show-item__date { padding-right: 14px; }

  .media__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .media__item         { aspect-ratio: 4/3; }
  .media__item--tall   { grid-row: span 1; aspect-ratio: 4/3; }
  .media__item--wide   { grid-column: span 2; aspect-ratio: 16/9; }
  .media__item--video  { grid-row: span 1; aspect-ratio: 9/16; }

  .booking__form-row { grid-template-columns: 1fr; }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer__brand { justify-content: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { padding: 20px 24px; }
}

@media (max-width: 580px) {
  .hero__headline {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .media__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .media__item         { aspect-ratio: 4/3; }
  .media__item--tall   { grid-row: span 1; aspect-ratio: 4/3; }
  .media__item--wide   { grid-column: span 1; aspect-ratio: 4/3; }
  .media__item--video  { grid-row: span 1; aspect-ratio: 9/16; }

  .show-item {
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
  }

  .shows__header { flex-direction: column; gap: 12px; }
  .shows__rule { width: 80px; flex: unset; height: 6px; background: transparent !important; }
  .shows::after,
  .booking::after { display: none; }
}

@media (max-width: 450px) {
  .show-item {
    grid-template-columns: 52px 1fr;
  }

  .show-item__time {
    grid-column: 2;
    align-self: start;
    width: fit-content;
    margin-top: 4px;
  }
}

/* ── Booking CTA ─────────────────────────────────────────── */
.booking-cta {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.booking-cta__text {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #5a3812;
  margin-bottom: 32px;
  line-height: 1.7;
}

.booking-cta__email {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 3.5vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1e0f03;
  border: 1px solid rgba(60,35,10,0.4);
  border-top: 3px double #3c2008;
  padding: 20px 16px;
  text-decoration: none;
  background: rgba(232,223,196,0.6);
  word-break: break-all;
  overflow-wrap: anywhere;
  white-space: normal;
}

/* ── Lightbox ─────────────────────────────────────────────── */
.media__item img {
  cursor: zoom-in;
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

#lightbox.is-open {
  display: flex;
}

#lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  user-select: none;
}

#lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s;
}

#lightbox-close:hover {
  opacity: 1;
}

#lightbox-prev,
#lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
  user-select: none;
}

#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }

#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(255, 255, 255, 0.28);
}
