:root {
  --red: #C8281E;
  --cream: #FFF3DC;
  --yellow: #F5B324;
  --green: #1B9E4B;
  --black: #141210;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Karla, sans-serif;
  line-height: 1.45;
}

img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--yellow); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page { animation: swipe-up .8s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes swipe-up {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 44px;
  background: var(--black);
  border-bottom: 4px solid var(--yellow);
}
.nav-brand { display: flex; align-items: center; }
.nav-brand-img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }

/* ---- Hero ---- */
.hero { position: relative; background: var(--red); }
.hero-banner { width: 100%; }
.hero-ctas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  z-index: 5;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  animation: swipe-up .9s cubic-bezier(.22, 1, .36, 1) .25s both;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-weight: 700;
  padding: 12px 24px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 rgba(20, 18, 16, .5);
}
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { color: var(--black); filter: brightness(1.06); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { color: var(--cream); filter: brightness(1.06); }
.btn-black { background: var(--black); color: var(--yellow); box-shadow: none; }
.btn-black:hover { color: var(--yellow); filter: brightness(1.2); }

/* ---- Marquee ---- */
.marquee {
  background: var(--black);
  color: var(--yellow);
  padding: 14px 0;
  font-family: Anton, sans-serif;
  font-size: 19px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.marquee-track { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-text { padding-right: 60px; }

/* ---- Sections ---- */
.section-title {
  font-family: Anton, sans-serif;
  font-size: 56px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 30px;
  line-height: 1.05;
}
.subsection-title {
  font-family: Anton, sans-serif;
  font-size: 26px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 44px 0 16px;
}

/* ---- Shows ---- */
.shows {
  background: var(--yellow);
  color: var(--black);
  padding: 64px 44px;
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
  scroll-margin-top: 80px;
}
.show-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.show-card {
  background: var(--cream);
  border: 3px solid var(--black);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 6px 6px 0 rgba(20, 18, 16, .35);
}
.show-main { display: flex; align-items: center; gap: 24px; }
.show-date { font-family: Anton, sans-serif; font-size: 40px; text-transform: uppercase; flex: none; }
.show-info { display: flex; flex-direction: column; gap: 4px; }
.show-venue { font-size: 18px; font-weight: 700; }
.show-details { font-size: 14px; font-weight: 500; color: rgba(20, 18, 16, .7); }
.show-price {
  background: var(--red);
  color: var(--cream);
  font-weight: 700;
  padding: 12px 20px;
  font-size: 14px;
  text-transform: uppercase;
  flex: none;
}
.venue-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.venue-chips li {
  background: rgba(20, 18, 16, .08);
  border: 2px solid var(--black);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* ---- Gallery ---- */
.gallery {
  background: var(--green);
  color: var(--cream);
  padding: 64px 44px;
  border-bottom: 6px solid var(--black);
  scroll-margin-top: 80px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 3px solid var(--black);
  box-shadow: 6px 6px 0 rgba(20, 18, 16, .35);
}

/* ---- Booking ---- */
.booking {
  background: var(--black);
  color: var(--cream);
  padding: 72px 44px 56px;
  scroll-margin-top: 80px;
}
.booking-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.booking-copy { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.booking-title { color: var(--yellow); margin: 0; }
.booking-copy p { margin: 0; font-size: 16px; color: rgba(255, 243, 220, .75); }
.booking-email {
  background: var(--red);
  border: 3px solid var(--cream);
  padding: 18px 32px;
  font-weight: 700;
  font-size: 17px;
}
.booking-email:hover { color: var(--cream); filter: brightness(1.08); }

/* ---- Footer ---- */
.footer { background: var(--black); padding: 0 44px 24px; }
.stripe { display: flex; height: 10px; }
.stripe span { flex: 1; }
.stripe span:nth-child(1) { background: var(--red); }
.stripe span:nth-child(2) { background: var(--yellow); }
.stripe span:nth-child(3) { background: var(--green); }
.footer-meta {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 243, 220, .5);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .section-title { font-size: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 12px 28px; }
  .shows, .gallery { padding: 56px 28px; }
  .booking { padding: 56px 28px 44px; }
  .footer { padding: 0 28px 20px; }
}

@media (max-width: 600px) {
  .section-title { font-size: 32px; }
  .nav { padding: 10px 16px; }
  .nav-brand-img { height: 32px; }
  .nav-links { gap: 14px; font-size: 12px; }
  .shows, .gallery { padding: 44px 16px; }
  .booking { padding: 44px 16px 36px; }
  .footer { padding: 0 16px 18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-ctas { position: static; background: var(--red); padding: 16px; animation: none; }
  .show-card { flex-direction: column; align-items: flex-start; }
  .show-main { flex-direction: column; align-items: flex-start; gap: 8px; }
  .show-date { font-size: 32px; }
  .booking-email { font-size: 15px; padding: 14px 20px; }
}

@media (max-width: 380px) {
  .nav { padding: 8px 12px; gap: 10px; }
  .nav-brand-img { height: 26px; }
  .nav-links { gap: 10px; font-size: 11px; letter-spacing: .05em; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page, .hero-ctas { animation: none; }
  .marquee-track { animation: none; padding-left: 44px; }
  .marquee-text[aria-hidden="true"] { display: none; }
}