:root {
  --bg: #070706;
  --panel: rgba(6, 7, 6, 0.94);
  --panel-2: rgba(12, 13, 11, 0.97);
  --text: #f1f1ec;
  --muted: #b8b8b1;
  --gold: #d99a22;
  --gold-2: #f2c44d;
  --gold-dark: #754208;
  --sunset: #cf7657;
  --line: rgba(231, 174, 46, 0.48);
  --soft-line: rgba(255, 255, 255, 0.16);
  --header-h: 70px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html {
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  min-width: 320px;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  background:
    radial-gradient(circle at 84% 36%, rgba(216, 151, 29, 0.06), transparent 30%),
    #050505;
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; }

.site-header {
  height: var(--header-h);
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 0 42px;
  background: linear-gradient(180deg, rgba(5,5,5,.99), rgba(5,5,5,.96));
  border-bottom: 1px solid rgba(216,154,34,.34);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  height: 42px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 94px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: stretch;
  gap: 30px;
  height: 100%;
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #deded9;
  transition: color 180ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: transparent;
  transform: scaleX(.4);
  transition: transform 180ms ease, background-color 180ms ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active { color: var(--gold-2); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  background: var(--gold);
  transform: scaleX(1);
}

.header-kicker {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #eeeae0;
  white-space: nowrap;
}
.header-kicker span { color: var(--gold-2); padding: 0 4px; }

.page-shell {
  height: 100vh;
  height: 100dvh;
  padding-top: var(--header-h);
  display: grid;
  grid-template-columns: minmax(520px, 41%) 1fr;
  overflow: hidden;
  background: #050505;
}

.hero {
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #111;
}
.hero-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.002);
}
.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 82%, rgba(5,5,5,.72) 100%),
    linear-gradient(180deg, transparent 60%, rgba(5,5,5,.88) 100%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(26px, 4.5vh, 52px);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.8);
}
.hero-eyebrow {
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}
.hero-copy h1 {
  max-width: 560px;
  margin: 0;
  font-family: Impact, "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  font-size: clamp(29px, 3vw, 52px);
  line-height: .98;
  letter-spacing: .035em;
  font-weight: 700;
}
.hero-copy p {
  margin: 12px 0 0;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.35;
  color: #f0eee9;
}

.events-panel {
  min-width: 0;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 18px 28px 20px 16px;
  background:
    radial-gradient(circle at 12% 42%, rgba(207, 118, 87, .06), transparent 36%),
    radial-gradient(circle at 45% 42%, rgba(184, 128, 22, 0.045), transparent 44%),
    linear-gradient(90deg, rgba(7,7,6,.94), #060606 9%, #050505 100%);
}

.events-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.event-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 14px 10px 9px;
  overflow: hidden;
  border: 1px solid rgba(226, 166, 39, .48);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 0%, rgba(220, 151, 30, .16), transparent 42%),
    linear-gradient(180deg, rgba(34, 27, 18, .98), rgba(16, 14, 11, .99));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.015),
    0 20px 55px rgba(0,0,0,.18);
  animation: cardIn .55s var(--ease) both;
  animation-delay: var(--delay);
  transition: transform 210ms var(--ease), border-color 210ms ease, box-shadow 210ms ease;
}
.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(246,191,65,.07), transparent 30%, transparent 70%, rgba(246,191,65,.04));
  transition: opacity 210ms ease;
}
.event-card:hover,
.event-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(242, 190, 61, .76);
  box-shadow: 0 18px 44px rgba(0,0,0,.36), 0 0 0 1px rgba(216,154,34,.08);
}
.event-card:hover::before,
.event-card:focus-within::before { opacity: 1; }

.card-topline {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,206,86,.8), transparent);
  box-shadow: 0 0 10px rgba(228,167,37,.48);
}

.city {
  margin: 0;
  font-family: Impact, "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  font-size: clamp(22px, 1.55vw, 31px);
  line-height: .95;
  letter-spacing: .035em;
  font-weight: 700;
  color: #f4f4ef;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0,0,0,.5);
}
.date {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: .035em;
  color: var(--gold-2);
  text-transform: uppercase;
  min-height: 14px;
}
.rule {
  width: 100%;
  border-top: 1px solid var(--soft-line);
  margin: 8px 0 7px;
}
.venue {
  min-height: 28px;
  width: 100%;
  display: grid;
  place-items: center;
  padding: 0 4px;
  font-size: 12px;
  line-height: 1.16;
  font-weight: 500;
  color: #e2e2dd;
}
.meta-label {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  color: #b6b6af;
  text-transform: uppercase;
}
.vendor-wrap {
  min-height: 44px;
  width: 100%;
  display: grid;
  place-items: center;
}
.vendor-logo {
  display: block;
  max-width: 136px;
  max-height: 38px;
  object-fit: contain;
}
.vendor-eticket { width: 92px; }
.vendor-arema { width: 118px; }
.sale-type {
  min-height: 27px;
  width: 100%;
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .01em;
  color: #f1f1ec;
  text-transform: uppercase;
}

.buy-button {
  width: 100%;
  min-height: 34px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 198, 74, .62);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(190,117,12,.98), rgba(135,74,6,.98));
  color: white;
  text-decoration: none;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .015em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,226,135,.18), 0 7px 18px rgba(108,60,4,.18);
  transition: transform 180ms var(--ease), filter 180ms ease, box-shadow 180ms ease;
}
.buy-button:hover,
.buy-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.15);
  box-shadow: inset 0 1px 0 rgba(255,235,174,.28), 0 10px 25px rgba(158,91,8,.3);
  outline: none;
}
.arrow {
  font-size: 21px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

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

@keyframes cardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1420px) {
  .site-header { padding-inline: 28px; }
  .nav-links { gap: 22px; }
  .page-shell { grid-template-columns: minmax(470px, 40%) 1fr; }
  .events-panel { padding-right: 22px; }
  .event-card { min-height: 0; padding-inline: 9px; }
  .city { font-size: 25px; }
  .venue { font-size: 12px; }
  .buy-button { padding-inline: 9px; font-size: 10px; }
}

@media (max-width: 1160px) {
  :root { --header-h: 64px; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav-links { gap: 16px; justify-self: center; }
  .nav-links a { font-size: 11px; }
  .page-shell { grid-template-columns: 38% 62%; }
  .events-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .event-card { min-height: 0; padding-inline: 7px; }
  .city { font-size: 21px; }
  .venue { font-size: 11px; }
  .vendor-eticket { width: 76px; }
  .vendor-arema { width: 92px; }
  .buy-button { padding-inline: 7px; font-size: 9px; }
}

@media (max-width: 900px) {
  :root { --header-h: 60px; }
  html,
  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: auto;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }
  .brand img { width: 82px; }
  .nav-links { display: none; }
  .header-kicker { font-size: 10px; }
  .page-shell {
    display: block;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }
  .hero {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1074 / 1344;
    min-height: auto;
  }
  .hero-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
  }
  .hero-shade,
  .hero-copy { display: none; }
  .events-panel {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 12px 10px 22px;
    background: #050505;
  }
  .events-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(154px, auto);
    gap: 8px;
  }
  .event-card {
    min-height: 154px;
    display: grid;
    justify-content: stretch;
    grid-template-columns: minmax(0, 1fr) 56px;
    grid-template-rows: auto auto minmax(0,1fr) 31px;
    grid-template-areas:
      "city vendor"
      "date vendor"
      "venue venue"
      "button button";
    align-items: center;
    padding: 7px 7px 6px;
  }
  .city { grid-area: city; font-size: clamp(18px, 4vw, 27px); text-align: left; }
  .date { grid-area: date; margin-top: 2px; font-size: 10px; text-align: left; }
  .rule, .meta-label, .sale-type { display: none; }
  .venue {
    grid-area: venue;
    min-height: 0;
    display: block;
    overflow: hidden;
    padding: 2px 0;
    font-size: 11px;
    line-height: 1.08;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .vendor-wrap { grid-area: vendor; min-height: 0; width: 56px; }
  .vendor-logo { max-width: 54px; max-height: 28px; }
  .vendor-eticket { width: 48px; }
  .vendor-arema { width: 54px; }
  .buy-button {
    grid-area: button;
    min-height: 31px;
    padding-inline: 9px;
    font-size: 10px;
  }
  .arrow { font-size: 17px; }
}

@media (max-width: 560px) {
  :root { --header-h: 52px; }
  .site-header { padding-inline: 12px; }
  .brand { height: 34px; }
  .brand img { width: 72px; }
  .header-kicker { font-size: 9px; letter-spacing: .11em; }
  .page-shell { height: auto; min-height: 100dvh; }
  .events-panel { padding: 10px 6px 20px; }
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(146px, auto);
    gap: 6px;
  }
  .event-card {
    min-height: 146px;
    grid-template-columns: minmax(0, 1fr) 48px;
    grid-template-rows: auto auto minmax(0,1fr) 29px;
    padding: 6px 6px 5px;
  }
  .city { font-size: clamp(16px, 5vw, 22px); }
  .date { font-size: 9px; }
  .venue { font-size: 10px; }
  .vendor-wrap { width: 48px; }
  .vendor-logo { max-width: 46px; max-height: 24px; }
  .vendor-eticket { width: 41px; }
  .vendor-arema { width: 46px; }
  .buy-button { min-height: 29px; padding-inline: 7px; font-size: 9px; }
}

@media (max-width: 560px) and (max-height: 720px) {
  .venue { display: block; }
}

@media (min-width: 901px) and (max-height: 800px) {
  :root { --header-h: 58px; }
  .events-panel { padding-block: 10px; }
  .event-card { padding-top: 10px; padding-bottom: 7px; }
  .city { font-size: clamp(20px, 1.45vw, 27px); }
  .date { margin-top: 4px; font-size: 11px; }
  .rule { margin-block: 6px 5px; }
  .venue { min-height: 25px; font-size: 11px; }
  .vendor-wrap { min-height: 34px; }
  .vendor-logo { max-height: 30px; }
  .sale-type { min-height: 23px; font-size: 10px; }
  .buy-button { min-height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
