:root {
  --bg: #080808;
  --panel: #141414;
  --panel-strong: #1d1d1d;
  --ink: #f4f0eb;
  --muted: #bcb4aa;
  --line: rgba(244, 240, 235, 0.16);
  --red: #c71f30;
  --red-dark: #7d111d;
  --steel: #8ca0a9;
  --green: #718a62;
  --shadow: rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.16));
  backdrop-filter: blur(12px);
}

.brand,
.nav-links,
.hero-actions,
.source-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border: 2px solid var(--red);
  box-shadow: 0 0 22px rgba(199, 31, 48, 0.85);
  transform: rotate(45deg);
}

.nav-links {
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 128px clamp(20px, 6vw, 88px) 72px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.64) 44%, rgba(8, 8, 8, 0.28) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 8, 8, 0) 34%);
}

.hero-content {
  width: min(760px, 100%);
}

.kicker,
.eyebrow,
.fact-label {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.8vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  width: min(560px, 100%);
  margin-bottom: 28px;
  color: #ded8d1;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 18px 44px rgba(125, 17, 29, 0.34);
}

.button.secondary {
  background: rgba(244, 240, 235, 0.08);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.fact-card {
  min-height: 210px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--panel);
}

.fact-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.16;
}

.fact-card p,
.section-heading p,
.text-column,
.ticket-section p,
.venue-panel p,
.venue-panel li {
  color: var(--muted);
}

.split-section,
.lineup-section,
.location-section,
.ticket-section {
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 88px);
}

.split-section,
.ticket-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.text-column {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: clamp(28px, 5vw, 56px);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.artist-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(199, 31, 48, 0.18), rgba(20, 20, 20, 0) 46%),
    var(--panel);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.12), rgba(8, 8, 8, 0.74)),
    linear-gradient(90deg, rgba(8, 8, 8, 0.52), rgba(8, 8, 8, 0.06));
  z-index: 0;
}

.artist-card span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.artist-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow-wrap: anywhere;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.92);
}

.artist-gulvoss {
  background-image: url("assets/bands/gulvoss.jpg");
}

.artist-janrevolution {
  background-image: url("assets/bands/janrevolution.jpg");
}

.artist-schwarzschild {
  background-image: url("assets/bands/schwarzschild.jpg");
}

.artist-beyond-border {
  background-image: url("assets/bands/beyond-border.jpg");
}

.location-section {
  background: #101010;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.venue-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--panel-strong);
}

.venue-panel ul {
  margin: 0;
  padding-left: 20px;
}

.venue-panel.accent {
  border-color: rgba(113, 138, 98, 0.48);
  box-shadow: inset 0 0 0 1px rgba(113, 138, 98, 0.12);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 2px solid var(--red);
}

.ticket-section {
  align-items: center;
}

.source-list {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.source-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.source-list a:hover {
  border-color: rgba(199, 31, 48, 0.7);
  background: #1b1616;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-button:hover {
  color: var(--ink);
}

.sub-hero {
  min-height: 62vh;
}

.contact-form,
.legal-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.contact-card strong {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.checkbox-row {
  color: var(--muted);
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0d0d0d;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(199, 31, 48, 0.58);
  outline-offset: 2px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.95rem;
}

.checkbox-row input {
  margin-top: 6px;
  accent-color: var(--red);
}

.legal-intro {
  padding-bottom: clamp(44px, 6vw, 76px);
}

.legal-facts {
  border-top: 0;
}

.legal-copy {
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 88px);
}

.success-message {
  color: #d8f0d0;
}

.error-message {
  color: #ffd2d7;
}

.cookie-banner {
  position: fixed;
  inset: auto clamp(14px, 3vw, 28px) clamp(14px, 3vw, 28px);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  max-width: 1100px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(20, 20, 20, 0.96);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(14px);
}

.cookie-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
}

.cookie-copy p,
.cookie-option {
  color: var(--muted);
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  font-size: 0.95rem;
}

.cookie-option input {
  margin-top: 6px;
  accent-color: var(--red);
}

.cookie-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

@media (max-width: 980px) {
  .quick-facts,
  .artist-grid,
  .location-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .ticket-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 168px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.56)),
      linear-gradient(0deg, var(--bg) 0%, rgba(8, 8, 8, 0) 40%);
  }

  .quick-facts,
  .artist-grid,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
