/* ==========================================================
   RÜSTR — MOCKUP-INTEGRATION PASS
   ========================================================== */

:root {
  --black: #080808;
  --black-2: #101010;
  --black-3: #151515;
  --panel: rgba(20, 20, 21, .94);
  --white: #f4f3ef;
  --muted: #b4b2b3;
  --line: #454345;
  --red: #c42628;
  --red-bright: #ee3135;
  --purple: #9a62cc;
  --shell: 1180px;
  --header: 150px;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(102, 58, 127, .08), transparent 28rem),
    radial-gradient(circle at 15% 50%, rgba(196, 38, 40, .045), transparent 25rem),
    var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

button,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: .7rem 1rem;
  color: #000;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.button {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .9rem 2rem;
  border: 2px solid transparent;
  border-radius: 7px;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--red {
  border-color: #d42d31;
  background: linear-gradient(90deg, #a91619, #c92529 58%, #9c171a);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12);
}

.button--red:hover,
.button--red:focus-visible {
  background: linear-gradient(90deg, #bd1b1f, #df3034 58%, #b71d20);
}

.button--outline {
  border-color: #e4e4e4;
  background: rgba(8, 8, 8, .63);
}

.button--compact {
  min-height: 48px;
  padding: .55rem 1.45rem;
  font-size: 1.15rem;
}

/* ---------------- Header ---------------- */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(40px, calc((100vw - var(--shell)) / 2));
  border-bottom: 1px solid rgba(138, 92, 73, .42);
  background: linear-gradient(#080808 0%, rgba(8, 8, 8, .94) 75%, rgba(8, 8, 8, .86));
}

.site-logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 8px;
  width: 205px;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .6));
}

.site-logo img {
  width: 100%;
}

.menu-button {
  width: 58px;
  height: 58px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button i {
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: #f3f3f3;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] i:nth-of-type(1) {
  transform: translateY(13px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] i:nth-of-type(3) {
  transform: translateY(-13px) rotate(-45deg);
}

.ticket-mode-message {
  margin: 1rem 0;
  padding: 1.25rem;
  border: 1px solid #555;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #d3d0d4;
  font-family: var(--condensed);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.ticket-mode-message strong {
  display: block;
  margin-bottom: .35rem;
  color: white;
  font-size: 1.6rem;
}

.ticket-shortcut {
  width: 88px;
  display: grid;
  justify-items: center;
  gap: 3px;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticket-shortcut svg {
  width: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.site-menu {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 8rem 2rem 2rem;
  background:
    radial-gradient(circle at center, rgba(110, 64, 132, .18), transparent 30rem),
    rgba(5, 5, 5, .98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-menu a {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.site-menu a:hover {
  color: var(--red-bright);
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  min-height: 970px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background:
    linear-gradient(90deg, #080808 0 44%, rgba(8, 8, 8, .92) 53%, rgba(8, 8, 8, .42) 72%, rgba(8, 8, 8, .2)),
    linear-gradient(to bottom, rgba(0, 0, 0, .02), rgba(0, 0, 0, .18) 68%, #080808 100%);
}

.hero__stage {
  position: absolute;
  inset: var(--header) 0 0 42%;
  background-image:
    linear-gradient(
      to left,
      transparent 0 62%,
      rgba(8, 8, 8, .18) 72%,
      rgba(8, 8, 8, .72) 88%,
      #080808 100%
    ),
    url("assets/hero-stage.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  filter: saturate(.95) contrast(1.08);
}

.hero__stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background:
    radial-gradient(ellipse at 15% 100%, #030303 0 32%, transparent 34%),
    radial-gradient(ellipse at 34% 100%, #030303 0 38%, transparent 40%),
    radial-gradient(ellipse at 56% 100%, #030303 0 34%, transparent 36%),
    radial-gradient(ellipse at 78% 100%, #030303 0 40%, transparent 42%),
    linear-gradient(transparent, #030303);
}

.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--shell), calc(100% - 90px));
  margin: 0 auto;
  padding-top: 85px;
}

.location-line,
.section-kicker,
.section-number,
.section-bar p,
.show-date,
.purple-label,
.view-all {
  font-family: var(--display);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.location-line {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin: 0 0 1.6rem;
  color: var(--red-bright);
  font-size: 1.8rem;
}

.location-line span {
  font-size: 1rem;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(6.8rem, 10.6vw, 10.6rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255,255,255,.25),
    0 0 35px rgba(255,255,255,.08);
}

.hero__lead {
  margin: 1.6rem 0 0;
  font-size: 1.9rem;
  line-height: 1.28;
}

.hero__actions {
  display: flex;
  gap: 2rem;
  margin-top: 2.3rem;
}

.hero__actions .button {
  min-width: 310px;
}

/* ---------------- Shared shells ---------------- */

.shell {
  width: min(var(--shell), calc(100% - 54px));
  margin: 0 auto 18px;
  border: 2px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(130deg, rgba(255,255,255,.025), transparent 30%),
    rgba(13, 13, 14, .94);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .16);
}

.shell--featured {
  position: relative;
  z-index: 4;
  margin-top: -88px;
  overflow: hidden;
}

/* ---------------- Featured ---------------- */

.featured-card {
  position: relative;
  min-height: 740px;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
}

.featured-card__copy {
  position: relative;
  z-index: 2;
  padding: 52px 42px 115px;
  background: linear-gradient(90deg, rgba(12,12,13,.98) 0 86%, rgba(12,12,13,.72) 100%);
}

.featured-card__image {
  position: absolute;
  inset: 0 0 0 34%;
  background:
    linear-gradient(90deg, #0d0d0e 0%, rgba(13,13,14,.92) 12%, transparent 48%),
    linear-gradient(to bottom, transparent 70%, #0d0d0e 100%),
    url("assets/featured-band.webp") center right / auto 100% no-repeat;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  color: var(--red-bright);
  font-size: 1.7rem;
}

.section-kicker span,
.section-number span,
.section-bar p span {
  width: 58px;
  height: 2px;
  display: inline-block;
  background: var(--red-bright);
}

.featured-card h2,
.section-heading h2,
.event-detail__story h2,
.ears-copy h2 {
  margin: .5rem 0 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: .9;
  text-transform: uppercase;
}

.featured-card h2 {
  max-width: 560px;
  font-size: clamp(6rem, 10vw, 9.4rem);
}

.purple-label {
  margin: .35rem 0 1rem;
  color: var(--purple);
  font-size: 1.65rem;
}

.detail-list {
  display: grid;
  gap: .65rem;
  font-family: var(--condensed);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.detail-list p {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0;
}

.detail-list svg {
  width: 25px;
  fill: none;
  stroke: var(--red-bright);
  stroke-width: 1.8;
}

.featured-price {
  width: max-content;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 2px solid #777;
  font-family: var(--condensed);
  text-transform: uppercase;
}

.featured-price strong {
  font-size: 2.55rem;
}

.featured-price small {
  font-size: 1.45rem;
}

.featured-price b {
  color: var(--red-bright);
  font-size: 1.6rem;
}

.earplug-note {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1rem;
  color: #aaa7ad;
  font-size: 1.45rem;
  line-height: 1.15;
}

.earplug-note p {
  margin: 0;
}

.earplug-note__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #5c3d78;
  font-size: 2rem;
}

.featured-card__ticket {
  position: absolute;
  z-index: 3;
  left: 42px;
  right: 42px;
  bottom: 28px;
}

/* ---------------- Upcoming shows ---------------- */

.shell--shows,
.shell--event,
.shell--ears {
  padding: 24px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 2px 14px;
}

.section-number {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin: 0;
  color: var(--red-bright);
  font-size: 2rem;
}

.section-number span {
  width: 28px;
}

.section-heading h2 {
  font-size: clamp(4rem, 7vw, 6.4rem);
}

.view-all {
  color: var(--red-bright);
  font-size: 1.35rem;
}

.show-list {
  display: grid;
  gap: 9px;
}

.show-row {
  min-height: 230px;
  display: grid;
  grid-template-columns: 260px 1fr 210px;
  align-items: stretch;
  overflow: hidden;
  border: 2px solid #3c3b3d;
  border-radius: 14px;
  background: rgba(11, 11, 12, .78);
}

.show-row > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-row__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
}

.show-date {
  margin: 0;
  color: var(--red-bright);
  font-size: 1.25rem;
}

.show-subtitle {
  margin: 4px 0 8px;
  color: #d7d7d7;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-row h3 {
  margin: .2rem 0 .7rem;
  font-family: var(--display);
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.show-time,
.show-pricing {
  margin: .22rem 0;
  font-family: var(--condensed);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.show-time span,
.show-pricing span {
  margin-right: .55rem;
  color: var(--red-bright);
  font-size: 1.5rem;
}

.show-pricing b {
  margin: 0 .7rem;
  color: var(--red-bright);
}

.show-row__buy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 22px 18px;
  text-align: center;
}

.show-row__buy p {
  display: grid;
  margin: 0;
  font-family: var(--condensed);
  line-height: .9;
  text-transform: uppercase;
}

.show-row__buy strong {
  font-family: var(--display);
  font-size: 4.25rem;
  font-weight: 400;
}

.show-row__buy span {
  font-size: 1.25rem;
}

/* ---------------- Event detail ---------------- */

.section-bar {
  margin: -2px -2px 15px;
}

.section-bar p {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0;
  color: var(--red-bright);
  font-size: 1.3rem;
}

.section-bar strong {
  font-size: 1.8rem;
}

.section-bar p span {
  width: 28px;
}

.event-detail {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 12px;
}

.event-detail__story,
.ticket-panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 2px solid #3f3d40;
  border-radius: 12px;
  background: #101011;
}

.event-detail__story {
  padding: 220px 28px 24px;
}

.event-artist-image {
  position: absolute;
  inset: 0 0 auto;
  height: 340px;
  background:
    linear-gradient(to bottom, transparent 44%, #101011 100%),
    linear-gradient(90deg, rgba(90,51,116,.28), rgba(191,37,41,.22)),
    url("assets/featured-band.webp") center 20% / cover no-repeat;
}

.event-logo {
  position: absolute;
  z-index: 2;
  top: -4px;
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
}

.event-detail__story h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(4.5rem, 7vw, 7rem);
}

.event-description {
  max-width: 690px;
  font-size: 1.2rem;
  line-height: 1.32;
}

.detail-list--event {
  font-size: 1.25rem;
}

.earplug-banner {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: .85rem 1rem;
  border: 1px solid #5e4b72;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(91,59,116,.76), rgba(35,27,44,.84));
}

.earplug-banner > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}

.earplug-banner p {
  margin: 0;
}

.earplug-banner strong {
  display: block;
  font-family: var(--condensed);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ticket-panel {
  padding: 0 18px 18px;
}

.ticket-panel__powered {
  margin: 0 -18px 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #555;
  color: #9c999d;
  text-align: center;
  text-transform: uppercase;
}

.ticket-panel__powered strong {
  margin-left: .4rem;
  color: white;
  font-size: 1.25rem;
}

.ticket-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 0 14px;
  border-bottom: 1px solid #464446;
}

.ticket-steps span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #666;
  border-radius: 50%;
  color: #8d8b8f;
}

.ticket-steps span.active {
  color: #111;
  background: white;
}

.ticket-steps b {
  width: 48px;
  height: 1px;
  background: #555;
}

.ticket-panel h3 {
  margin: 14px 0 6px;
}

.ticket-option {
  display: grid;
  grid-template-columns: 66px 1fr 96px;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #4d4a4d;
}

.ticket-option select {
  height: 48px;
  border: 1px solid #555;
  border-radius: 5px;
  color: white;
  background: #19191a;
}

.ticket-option p,
.ticket-option strong {
  margin: 0;
}

.ticket-option strong {
  display: grid;
  font-family: var(--condensed);
  font-size: 1.65rem;
  font-weight: 500;
  text-align: right;
}

.ticket-option small {
  font-size: .95rem;
  font-weight: 500;
  text-transform: uppercase;
}

.ticket-option em {
  padding: .15rem .35rem;
  border-radius: 3px;
  color: white;
  background: var(--red);
  font-style: normal;
  font-size: .75rem;
}

.all-in {
  padding: 12px 0;
  border-bottom: 1px solid #4d4a4d;
}

.all-in h4,
.all-in p {
  margin: .3rem 0;
}

.all-in p {
  color: #c5c2c5;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  font-family: var(--condensed);
  text-transform: uppercase;
}

.order-total strong {
  font-size: 1.9rem;
}

.order-total small {
  font-size: 1rem;
  color: #aaa7aa;
}

.ticket-continue {
  width: 100%;
}

.secure-note {
  margin: 12px 0 0;
  color: #858286;
  text-align: center;
}

/* ---------------- Earplug section ---------------- */

.ears-grid {
  display: grid;
  grid-template-columns: 1.3fr .75fr .85fr;
  gap: 24px;
  align-items: center;
}

.ears-copy h2 {
  font-size: clamp(4.6rem, 7vw, 7rem);
}

.ears-copy > p {
  max-width: 520px;
  color: #cac7ca;
  font-size: 1.28rem;
}

.earplug-visual {
  min-height: 310px;
  display: grid;
  place-items: center;
}

.case {
  position: relative;
  width: 220px;
  height: 245px;
  transform: rotate(-4deg);
}

.case__lid,
.case__base {
  position: absolute;
  left: 50%;
  width: 210px;
  height: 116px;
  border: 7px solid #343237;
  background:
    radial-gradient(circle at center, #28272b 0 18%, #111 19% 53%, #343237 54% 58%, #0b0b0c 59%);
  box-shadow: 0 18px 35px rgba(0,0,0,.55);
  transform: translateX(-50%);
}

.case__lid {
  top: 0;
  display: grid;
  place-items: center;
  border-radius: 110px 110px 18px 18px;
  color: #dedcdf;
  font-family: var(--display);
  font-size: 2.6rem;
}

.case__base {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
  border-radius: 18px 18px 110px 110px;
}

.case__base i {
  width: 46px;
  height: 78px;
  display: block;
  border: 7px solid #382746;
  border-radius: 22px;
  background: linear-gradient(#7d4ca8, #181219);
  box-shadow: inset 0 0 0 5px #151217;
}

.earplug-upgrade {
  padding: 28px;
  border: 2px solid #454247;
  border-radius: 16px;
  background: rgba(13,13,14,.72);
}

.earplug-upgrade p {
  color: #d2cfd2;
  font-size: 1.2rem;
}

.earplug-upgrade strong {
  color: var(--purple);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
}

/* ---------------- Footer ---------------- */

.site-footer {
  width: min(var(--shell), calc(100% - 54px));
  display: grid;
  grid-template-columns: 180px 1fr .6fr;
  gap: 3rem;
  margin: 60px auto 0;
  padding: 50px 0 30px;
  border-top: 1px solid #333;
}

.site-footer > img {
  width: 150px;
}

.site-footer h2 {
  margin: 0 0 .5rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: .25rem 0;
  color: #9c999d;
}

.site-footer a:hover {
  color: white;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  font-size: .85rem;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 1050px) {
  :root {
    --header: 135px;
  }

  .hero {
    min-height: 900px;
  }

  .hero__stage {
    left: 50%;
  }

  .hero h1 {
    max-width: 700px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card__copy {
    padding-right: 36%;
  }

  .featured-card__image {
    left: 40%;
  }

  .show-row {
    grid-template-columns: 220px 1fr 175px;
  }

  .event-detail {
    grid-template-columns: 1fr;
  }

  .ears-grid {
    grid-template-columns: 1fr 1fr;
  }

  .earplug-upgrade {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 118px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .site-logo {
    width: 160px;
  }

  .menu-button {
    width: 48px;
  }

  .menu-button i {
    width: 37px;
    height: 3px;
  }

  .ticket-shortcut {
    width: 65px;
    font-size: 1rem;
  }

  .ticket-shortcut svg {
    width: 42px;
  }

  .hero {
    min-height: 790px;
    align-items: flex-start;
    padding-top: 180px;
    background:
      linear-gradient(90deg, rgba(8,8,8,.96), rgba(8,8,8,.6) 72%, rgba(8,8,8,.25)),
      linear-gradient(to bottom, transparent 55%, #080808 100%);
  }

  .hero__stage {
    inset: var(--header) 0 0 45%;
    opacity: .78;
  }

  .hero__content {
    width: calc(100% - 38px);
    padding-top: 40px;
  }

  .location-line {
    gap: .6rem;
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 19vw, 7rem);
  }

  .hero__lead {
    font-size: 1.35rem;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: .8rem;
  }

  .hero__actions .button {
    width: 100%;
    min-width: 0;
  }

  .shell {
    width: calc(100% - 24px);
    border-radius: 13px;
  }

  .shell--featured {
    margin-top: 0px;
  }

  .featured-card {
    min-height: 870px;
  }

  .featured-card__copy {
    background: linear-gradient(
      90deg,
      rgba(12, 12, 13, 0.98) 0%,
      rgba(12, 12, 13, 0.96) 34%,
      rgba(12, 12, 13, 0.78) 46%,
      rgba(12, 12, 13, 0.22) 58%,
      transparent 68%
    );
  }

  .featured-card__image {
    background:
      linear-gradient(
        to bottom,
        rgba(13, 13, 14, 0.03) 0%,
        transparent 35%,
        transparent 50%,
        rgba(13, 13, 14, 0.85) 100%
      ),
      var(--featured-image, url("assets/featured-band.webp"))
      68% top / auto 72% no-repeat;
  }

  .featured-card h2 {
    font-size: 5.6rem;
  }

  .section-kicker {
    font-size: 1.3rem;
  }

  .detail-list {
    font-size: 1.25rem;
  }

  .featured-price {
    width: 100%;
    gap: 1rem;
  }

  .featured-price strong {
    font-size: 2rem;
  }

  .featured-price small {
    font-size: 1.1rem;
  }

  .earplug-note {
    font-size: 1.15rem;
  }

  .featured-card__ticket {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .shell--shows,
  .shell--event,
  .shell--ears {
    padding: 12px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 4rem;
  }

  .view-all {
    padding-top: 28px;
    font-size: 1rem;
  }

  .show-row {
    grid-template-columns: 122px 1fr;
    min-height: 0;
  }

  .show-row > img {
    min-height: 150px;
  }

  .show-row__details {
    padding: 14px;
  }

  .show-row h3 {
    font-size: 2.3rem;
  }

  .show-date,
  .show-time,
  .show-pricing {
    font-size: .95rem;
  }

  .show-time {
    display: none;
  }

  .show-row__buy {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid #393739;
  }

  .show-row__buy strong {
    font-size: 2.7rem;
  }

  .event-detail__story {
    padding: 180px 18px 18px;
  }

  .event-detail__story h2 {
    font-size: 4.4rem;
  }

  .ticket-panel {
    padding-inline: 12px;
  }

  .ticket-panel__powered {
    margin-inline: -12px;
  }

  .ticket-option {
    grid-template-columns: 58px 1fr 82px;
    gap: 8px;
  }

  .ticket-option strong {
    font-size: 1.35rem;
  }

  .ears-grid {
    grid-template-columns: 1fr;
  }

  .ears-copy h2 {
    font-size: 4.5rem;
  }

  .earplug-upgrade {
    grid-column: auto;
  }

  .site-footer {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  .site-footer > img {
    width: 120px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ---------------- Data-driven event additions ---------------- */

[hidden] {
  display: none !important;
}

button.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

button.button:disabled {
  cursor: not-allowed;
  filter: grayscale(.45);
  opacity: .48;
  transform: none;
}

.featured-card__image {
  background:
    linear-gradient(90deg, #0d0d0e 0%, rgba(13,13,14,.92) 12%, transparent 48%),
    linear-gradient(to bottom, transparent 70%, #0d0d0e 100%),
    var(--featured-image, url("assets/featured-band.webp")) center right / auto 100% no-repeat;
}

.event-artist-image {
  background:
    linear-gradient(to bottom, transparent 44%, #101011 100%),
    linear-gradient(90deg, rgba(90,51,116,.28), rgba(191,37,41,.22)),
    var(--event-image, url("assets/featured-band.webp")) center 20% / cover no-repeat;
}

.event-limit {
  padding-bottom: .5rem;
  color: #858286;
  font-family: var(--condensed);
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.event-loading,
.event-empty,
.event-error {
  margin: 0;
  padding: 36px 28px;
  border: 2px dashed #3c3b3d;
  border-radius: 14px;
  color: #aaa7ad;
  font-size: 1.3rem;
  text-align: center;
}

.event-error {
  display: grid;
  gap: .4rem;
  color: #d2cfd3;
}

.event-error strong {
  color: var(--red-bright);
  font-family: var(--condensed);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.show-row {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.show-row.is-selected {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 1px rgba(238, 50, 55, .34), 0 16px 35px rgba(0,0,0,.22);
}

.show-row:hover {
  transform: translateY(-1px);
}

.ticket-selected-label {
  margin: 14px 0 0;
  color: var(--red-bright);
  font-family: var(--condensed);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ticket-panel h3 {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.door-price-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .15rem .8rem;
  padding: 12px 0;
  border-bottom: 1px solid #4d4a4d;
  color: #aaa7ad;
  font-family: var(--condensed);
  text-transform: uppercase;
}

.door-price-note strong {
  color: white;
  font-size: 1.35rem;
}

.door-price-note small {
  grid-column: 1 / -1;
  color: #77747a;
}

@media (max-width: 760px) {
  .featured-card__image {
    background:
      linear-gradient(
        to bottom,
        rgba(13, 13, 14, 0.03) 0%,
        transparent 35%,
        transparent 78%,
        rgba(13, 13, 14, 0.22) 100%
      ),
      var(--featured-image, url("assets/featured-band.webp"))
      68% top / auto 72% no-repeat;
  }

  .event-limit {
    padding-top: 28px;
    font-size: .85rem;
  }

  .ticket-panel h3 {
    font-size: 2.1rem;
  }
}

.featured-card h2,
.show-row h3,
.event-detail__story h2 {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .featured-card h2 {
    font-size: clamp(3.9rem, 15vw, 4.8rem);
  }

  .show-row {
    grid-template-columns: 108px 1fr;
  }

  .show-row h3 {
    font-size: 1.95rem;
    line-height: .92;
  }

  .show-date,
  .show-time,
  .show-pricing {
    font-size: .86rem;
  }

  .event-detail__story h2 {
    font-size: clamp(3.2rem, 14vw, 4rem);
  }
}

/* ---------------- Static destination pages ---------------- */
.site-header--interior { position: absolute; }
.interior-page main { overflow: hidden; }
.page-hero { position: relative; min-height: 760px; display: flex; align-items: flex-end; padding: calc(var(--header) + 80px) 0 90px; background-position: center; background-size: cover; }
.page-hero--venue { background-image: url("assets/venue-night.webp"); }
.page-hero--bands { background-image: url("assets/band-stage.webp"); background-position: center 35%; }
.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5,5,5,.98) 0%,
      rgba(5,5,5,.72) 38%,
      rgba(5,5,5,.2) 72%
    ),
    linear-gradient(0deg, #080808 0%, transparent 38%),
    radial-gradient(
      circle at 72% 35%,
      rgba(154,98,204,.14),
      transparent 24rem
    );
}
.page-hero__content { position:relative; z-index:1; }
.page-hero h1 { margin:.25rem 0 1rem; max-width:760px; font-family:var(--display); font-size:clamp(5.5rem, 10vw, 9.5rem); font-weight:400; line-height:.82; text-transform:uppercase; }
.page-hero__content > p:not(.location-line) { max-width:650px; margin:0 0 2rem; color:#d2d0d2; font-family:var(--condensed); font-size:1.55rem; }

.page-hero__content.shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}
.intro-split { display:grid; grid-template-columns:.85fr 1.15fr; gap:6rem; padding-top:110px; padding-bottom:90px; }
.intro-split h2, .feature-band h2, .artist-feature h2, .info-columns h2, .inquiry-panel h2, .pathway-card h2 { margin:.35rem 0 0; font-family:var(--display); font-size:clamp(3.7rem, 6vw, 6rem); font-weight:400; line-height:.9; text-transform:uppercase; }
.prose-large { color:#c4c1c4; font-size:1.2rem; }
.prose-large p:first-child { margin-top:0; }

.image-pair { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; padding-bottom:110px; }
.image-pair figure, .photo-grid figure { margin:0; overflow:hidden; border:1px solid #39373a; background:#111; }
.image-pair img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.image-pair figcaption { display:grid; gap:.2rem; padding:1.1rem 1.25rem 1.3rem; border-top:1px solid #39373a; }
.image-pair figcaption strong { font-family:var(--display); font-size:1.8rem; font-weight:400; text-transform:uppercase; }
.image-pair figcaption span { color:#aaa7ad; }

.feature-band { display:grid; grid-template-columns:.65fr 1.35fr; gap:5rem; padding:85px 0; border-top:1px solid #323033; border-bottom:1px solid #323033; }
.feature-list { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.feature-list article { min-height:190px; padding:1.55rem; border:1px solid #343235; background:linear-gradient(145deg, rgba(26,26,27,.94), rgba(13,13,14,.96)); }
.feature-list h3 { margin:0 0 .65rem; color:var(--red-bright); font-family:var(--display); font-size:2rem; font-weight:400; text-transform:uppercase; }
.feature-list p { margin:0; color:#bcb9bd; }

.photo-grid { display:grid; grid-template-columns:1.35fr .85fr .85fr; gap:1rem; padding:110px 0; }
.photo-grid figure { min-height:260px; }
.photo-grid img { width:100%; height:100%; object-fit:cover; }
.photo-grid__wide { grid-row:span 2; min-height:540px !important; }
.photo-grid__note { display:flex; flex-direction:column; justify-content:flex-end; min-height:260px; padding:1.7rem; border:1px solid #343235; background:radial-gradient(circle at 90% 10%, rgba(154,98,204,.15), transparent 15rem), #111; }
.photo-grid__note h3 { margin:.25rem 0 .65rem; font-family:var(--display); font-size:2.7rem; font-weight:400; line-height:.95; text-transform:uppercase; }
.photo-grid__note p:last-child { margin:0; color:#aaa7ad; }

.inquiry-panel { display:grid; grid-template-columns:1.2fr .8fr; gap:4rem; align-items:end; margin-bottom:110px; padding:4rem; border:1px solid #3b393c; background:linear-gradient(110deg, rgba(36,13,15,.92), rgba(13,13,14,.98) 48%, rgba(28,18,34,.85)); }
.inquiry-panel p { max-width:720px; color:#c0bdc1; }
.inquiry-actions { display:grid; gap:.9rem; }

.artist-feature { display:grid; grid-template-columns:1.25fr .75fr; gap:0; align-items:stretch; padding-bottom:110px; }
.artist-feature img { width:100%; height:100%; min-height:520px; object-fit:cover; }
.artist-feature > div { display:flex; flex-direction:column; justify-content:center; padding:3.5rem; border:1px solid #373538; background:linear-gradient(145deg, #171718, #0d0d0e); }
.artist-feature p:not(.purple-label) { color:#bdbabd; font-size:1.1rem; }
.text-link { margin-top:1rem; color:var(--red-bright); font-family:var(--display); font-size:1.45rem; letter-spacing:.05em; text-transform:uppercase; }

.info-columns { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; padding:110px 0; }
.info-columns article { padding:2.6rem; border:1px solid #353336; background:#111; }
.clean-list { display:grid; gap:.8rem; margin:1.7rem 0 0; padding:0; list-style:none; color:#bbb8bc; }
.clean-list li { padding:.8rem 0 .8rem 1.6rem; border-top:1px solid #302e31; position:relative; }
.clean-list li::before { content:"★"; position:absolute; left:0; color:var(--red-bright); }
.booking-principle { max-width:960px; padding:0 0 110px; text-align:center; }
.booking-principle blockquote { margin:1rem 0; font-family:var(--display); font-size:clamp(3rem, 6vw, 5.5rem); font-weight:400; line-height:.95; text-transform:uppercase; }
.booking-principle > p:last-child { color:#aaa7ad; }

.pathway-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; padding-top:80px; padding-bottom:80px; }
.pathway-card { min-height:510px; display:flex; align-items:flex-end; padding:2.5rem; position:relative; overflow:hidden; border:1px solid #39373a; background-size:cover; background-position:center; }
.pathway-card::before { content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(6,6,6,.98) 0%, rgba(6,6,6,.56) 55%, rgba(6,6,6,.08)); }
.pathway-card--venue { background-image:url("assets/venue-clean.webp"); }
.pathway-card--bands { background-image:url("assets/band-stage.webp"); }
.pathway-card > div { position:relative; z-index:1; max-width:520px; }
.pathway-card p:not(.section-kicker) { color:#cbc8cc; font-size:1.05rem; }
.pathway-card .button { margin-top:1rem; }

@media (max-width: 900px) {
  .page-hero { min-height:680px; }
  .intro-split, .feature-band, .artist-feature, .inquiry-panel { grid-template-columns:1fr; gap:2.2rem; }
  .image-pair, .info-columns, .pathway-grid { grid-template-columns:1fr; }
  .photo-grid { grid-template-columns:1fr 1fr; }
  .photo-grid__wide { grid-column:1 / -1; grid-row:auto; }
  .artist-feature > div { padding:2.2rem; }
}

@media (max-width: 620px) {
  .page-hero { min-height:620px; padding-bottom:60px; }
  .page-hero h1 { font-size:4.8rem; }
  .intro-split { padding-top:75px; padding-bottom:65px; }
  .image-pair, .feature-list, .photo-grid { grid-template-columns:1fr; }
  .photo-grid__wide { grid-column:auto; min-height:320px !important; }
  .photo-grid figure, .photo-grid__note { min-height:260px; }
  .inquiry-panel { padding:2rem; margin-bottom:75px; }
  .pathway-card { min-height:430px; padding:1.7rem; }
}

/* Ticket Fairy embedded checkout */
.ticket-panel {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.ticket-fairy-embed {
  width: 100%;
  min-width: 0;
  margin-top: 1rem;
}

.ticket-fairy-embed[hidden],
#ticketLegacyPanel[hidden] {
  display: none !important;
}

#ttf-container,
#ttf-container iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

#ttf-container {
  min-height: 400px;
  overflow: hidden;
}

#ttf-container iframe {
  border: 0 !important;
  margin: 0;
  overflow: hidden;
}

.ticket-widget-fallback {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.95rem;
}

.ticket-widget-fallback a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .ticket-panel {
    padding: 1.15rem 0.85rem;
  }

  .ticket-selected-label,
  #ticketEventTitle {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .ticket-fairy-embed {
    margin-top: 0.75rem;
  }
}
