:root {
  color-scheme: light;
  --black: #080806;
  --black-2: #11110d;
  --white: #ffffff;
  --paper: #fffaf0;
  --paper-2: #f4efe2;
  --gold: #f5b400;
  --gold-2: #ffd469;
  --gold-text: #8a6100;
  --grass: #24563d;
  --clay: #a33d1f;
  --muted: rgba(8, 8, 6, 0.64);
  --muted-on-dark: rgba(255, 255, 255, 0.74);
  --muted-dark: #6d6455;
  --line: rgba(8, 8, 6, 0.12);
  --line-dark: rgba(8, 8, 6, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(8, 8, 6, 0.04), transparent 7%, transparent 93%, rgba(245, 180, 0, 0.08)),
    var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main::before,
main::after {
  position: fixed;
  top: 74px;
  bottom: 0;
  z-index: 20;
  width: clamp(10px, 1.15vw, 18px);
  content: "";
  pointer-events: none;
}

main::before {
  left: 0;
  background: linear-gradient(90deg, var(--black) 0 38%, var(--gold) 38% 72%, transparent 72%);
}

main::after {
  right: 0;
  background: linear-gradient(270deg, var(--black) 0 38%, var(--gold) 38% 72%, transparent 72%);
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--white), var(--gold));
  box-shadow: 0 0 32px rgba(245, 180, 0, 0.72);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 9999;
  content: "";
  background:
    linear-gradient(90deg, var(--black) 0 10px, var(--gold) 10px 24px, transparent 24px),
    var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
}

body.is-loading::before {
  opacity: 1;
  animation: loading-bar 680ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

body.is-loading::after {
  opacity: 1;
  animation: page-wipe 420ms cubic-bezier(0.72, 0, 0.2, 1) forwards;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px rgba(8, 8, 6, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-weight: 950;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  clip-path: circle(50%);
  object-fit: cover;
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: rotate(-7deg) scale(1.08);
}

.brand span {
  font-size: 1rem;
  letter-spacing: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(8, 8, 6, 0.68);
  font-size: 0.92rem;
  font-weight: 850;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--black);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--black);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  color: var(--black);
  background: var(--white);
  overflow: hidden;
}

.home-hero {
  color: var(--black);
  background:
    linear-gradient(115deg, var(--white) 0%, var(--white) 46%, rgba(245, 180, 0, 0.12) 46.2%, rgba(245, 180, 0, 0.12) 53%, var(--white) 53.2%),
    var(--white);
}

.hero-image,
.hero-image img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.02);
  animation: hero-breathe 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-hero .hero-image {
  opacity: 0.46;
  mix-blend-mode: multiply;
}

.home-hero .hero-image img {
  filter: saturate(0.82) contrast(1.04) brightness(1.18);
}

.hero-overlay {
  background:
    radial-gradient(circle at 80% 30%, rgba(245, 180, 0, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.66) 100%);
}

.home-hero .hero-overlay {
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.34) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0) 42%);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: 52px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(245, 180, 0, 0.55);
  border-radius: 50%;
  content: "";
  opacity: 0.7;
  animation: ring-pulse 1800ms ease both;
}

.hero-crest {
  position: absolute;
  top: 18%;
  right: clamp(28px, 8vw, 130px);
  z-index: 2;
  width: 186px;
  height: 186px;
  border-radius: 50%;
  opacity: 0.18;
  transform: rotate(-8deg);
  filter: drop-shadow(0 30px 80px rgba(245, 180, 0, 0.2));
  pointer-events: none;
  animation: crest-rise 920ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.hero-word {
  position: absolute;
  right: -0.12em;
  bottom: -0.18em;
  z-index: 1;
  color: transparent;
  font-size: 10rem;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: 0;
  opacity: 0.22;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(8, 8, 6, 0.2);
  animation: word-slide 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both;
}

.home-hero .hero-word {
  -webkit-text-stroke-color: rgba(8, 8, 6, 0.22);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100vh - 74px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 118px;
  animation: hero-copy 740ms cubic-bezier(0.2, 0.8, 0.2, 1) 130ms both;
}

.kicker,
.section-kicker,
.label {
  margin: 0;
  color: var(--gold-text);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero .kicker {
  color: var(--gold-text);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 7.8rem;
  line-height: 0.83;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero p:not(.kicker),
.page-hero p:not(.kicker) {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.55;
}

.home-hero p:not(.kicker) {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 18px 0 var(--black);
}

.button-primary:hover {
  box-shadow: 0 10px 0 var(--black);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 250, 240, 0.32);
  background: rgba(255, 250, 240, 0.06);
}

.home-hero .button-secondary {
  color: var(--black);
  border-color: rgba(8, 8, 6, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary.dark {
  color: var(--black);
  border-color: var(--line-dark);
  background: var(--paper);
}

.hero-ticket {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  z-index: 3;
  width: min(340px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(245, 180, 0, 0.42);
  border-radius: 8px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 10px 10px 0 var(--black);
  animation: ticket-pop 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms both;
}

.hero-ticket span {
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-ticket strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.hero-ticket p {
  max-width: none;
  margin: 12px 0 0;
  color: rgba(8, 8, 6, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.match-strip {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: -44px auto 0;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  color: var(--black);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 52px rgba(8, 8, 6, 0.1);
  backdrop-filter: blur(14px);
  animation: strip-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 340ms both;
}

.match-strip a {
  display: grid;
  min-height: 122px;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.match-strip a:last-child {
  border-right: 0;
}

.match-strip a:hover {
  background: rgba(245, 180, 0, 0.14);
  transform: translateY(-4px);
}

.match-strip span {
  color: var(--gold-text);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.match-strip strong {
  font-size: 1.55rem;
  line-height: 1.1;
}

.section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.section {
  padding: 92px 0;
}

.statement {
  max-width: 1040px;
}

.statement h2,
.split-feature h2,
.sponsor-punch h2,
.section h2,
.panel h2,
.timeline h2 {
  margin: 14px 0 0;
  font-size: 4.25rem;
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.link-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding-top: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.feature-link {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: end;
  padding: 30px;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(245, 180, 0, 0.14), transparent 45%),
    var(--white);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-link::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--black) 0 18%, var(--gold) 18% 100%);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 180ms ease;
}

.feature-link:hover {
  background:
    linear-gradient(135deg, rgba(245, 180, 0, 0.22), transparent 52%),
    var(--paper);
  box-shadow: 0 20px 42px rgba(8, 8, 6, 0.12);
  transform: translateY(-6px);
}

.feature-link:hover::before {
  transform: scaleX(1);
}

.feature-link span {
  color: var(--gold-text);
  font-weight: 950;
}

.feature-link strong {
  display: block;
  margin-top: 16px;
  font-size: 2.6rem;
  line-height: 0.98;
}

.feature-link p,
.feature-copy p,
.news-card p,
.panel p,
.match-card p,
.timeline p,
.contact-strip p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.split-feature,
.section-split,
.team-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.feature-copy {
  padding-top: 10px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-text);
  font-weight: 950;
  text-decoration-color: rgba(245, 180, 0, 0.5);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.sponsor-punch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--black) 0 12px, var(--gold) 12px 22px, transparent 22px),
    linear-gradient(135deg, rgba(245, 180, 0, 0.14), transparent 46%),
    var(--white);
  color: var(--black);
  box-shadow: 0 18px 48px rgba(8, 8, 6, 0.08);
}

.sponsor-punch .section-kicker {
  color: var(--gold-text);
}

.page-hero {
  position: relative;
  padding: 112px clamp(20px, 4vw, 54px) 78px;
  color: var(--black);
  background:
    linear-gradient(90deg, var(--black) 0 12px, var(--gold) 12px 22px, transparent 22px),
    linear-gradient(135deg, rgba(245, 180, 0, 0.16), transparent 36%),
    var(--white);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: -0.18em;
  color: transparent;
  content: "PHÖNIX";
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 950;
  line-height: 0.8;
  opacity: 0.18;
  -webkit-text-stroke: 1px rgba(8, 8, 6, 0.32);
  pointer-events: none;
}

.page-hero.compact {
  padding-bottom: 66px;
}

.page-hero .kicker,
.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.page-hero h1 {
  font-size: 5.6rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.match-card,
.panel,
.news-card,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--black);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 8, 6, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.match-card:hover,
.panel:hover,
.news-card:hover,
.timeline article:hover,
.info-list article:hover,
.contact-strip:hover,
.sponsor-wall div:hover {
  border-color: rgba(245, 180, 0, 0.55);
  box-shadow: 0 20px 44px rgba(8, 8, 6, 0.12);
  transform: translateY(-5px);
}

.match-card,
.panel {
  padding: 32px;
}

.match-card.prominent {
  background:
    linear-gradient(135deg, rgba(245, 180, 0, 0.22), transparent 48%),
    var(--white);
}

.match-card h3,
.news-card h3 {
  margin: 12px 0 0;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.news-card {
  min-height: 250px;
  padding: 26px;
}

.news-card span {
  color: var(--gold-text);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  padding: 48px;
  border: 1px solid rgba(245, 180, 0, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 180, 0, 0.18), transparent 46%),
    var(--white);
  box-shadow: 0 18px 48px rgba(8, 8, 6, 0.08);
}

.section-band.light {
  background: var(--paper);
  color: var(--black);
}

.section-band h2,
.section-band p {
  max-width: 720px;
}

.section-band p:not(.section-kicker) {
  color: inherit;
  opacity: 0.72;
  line-height: 1.6;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 8, 6, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-list strong {
  display: block;
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 8, 6, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-strip p {
  max-width: 680px;
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.timeline article {
  padding: 30px;
}

.timeline span {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 950;
}

.sponsor-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sponsor-wall div {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 8, 6, 0.08);
  font-weight: 950;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--black);
}

.site-footer strong {
  font-size: 1.05rem;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer div:last-child {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loading-bar {
  0% {
    transform: scaleX(0);
  }

  58% {
    transform: scaleX(0.72);
  }

  100% {
    transform: scaleX(0.96);
  }
}

@keyframes page-wipe {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes hero-breathe {
  0% {
    transform: scale(1.1);
    filter: saturate(0.82) contrast(1.08) brightness(0.78);
  }

  100% {
    transform: scale(1.02);
    filter: saturate(1.04) contrast(1.02) brightness(1);
  }
}

@keyframes hero-copy {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticket-pop {
  0% {
    opacity: 0;
    transform: translateY(22px) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes strip-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes crest-rise {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.92) rotate(-14deg);
  }

  100% {
    opacity: 0.18;
    transform: translateY(0) scale(1) rotate(-8deg);
  }
}

@keyframes word-slide {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }

  100% {
    opacity: 0.22;
    transform: translateX(0);
  }
}

@keyframes ring-pulse {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }

  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

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

  .button,
  .primary-nav a::after,
  .feature-link,
  .hero-image img,
  .hero-content,
  .hero-ticket,
  .hero-word,
  .hero-crest,
  .hero::after,
  .match-strip,
  .reveal {
    transition: none;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 5.4rem;
  }

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .statement h2,
  .split-feature h2,
  .sponsor-punch h2,
  .section h2,
  .panel h2,
  .timeline h2 {
    font-size: 3.2rem;
  }

  .hero-word {
    font-size: 7.4rem;
  }

  .hero-crest {
    top: 15%;
    right: 28px;
    width: 140px;
    height: 140px;
    opacity: 0.14;
  }

  .match-strip,
  .link-board,
  .card-grid,
  .card-grid.two,
  .timeline,
  .sponsor-wall,
  .split-feature,
  .section-split,
  .team-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .match-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .match-strip a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(8, 8, 6, 0.12);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 190px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
      linear-gradient(0deg, rgba(255, 255, 255, 0.96) 4%, transparent 58%);
  }

  .home-hero .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 240, 0.36)),
      linear-gradient(0deg, rgba(255, 255, 255, 0.9) 4%, rgba(255, 250, 240, 0.18) 58%);
  }

  .hero-ticket {
    right: 20px;
    bottom: 22px;
    left: 20px;
    width: auto;
  }

  .hero-crest {
    top: 94px;
    right: 22px;
    width: 116px;
    height: 116px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  main::before,
  main::after {
    top: 68px;
    width: 8px;
  }

  .brand span {
    max-width: 150px;
    line-height: 1.05;
  }

  .primary-nav {
    top: 68px;
  }

  .hero {
    min-height: calc(100vh - 68px);
  }

  .hero-content {
    min-height: calc(100vh - 68px);
    width: min(100% - 32px, 1180px);
    padding-top: 46px;
    padding-bottom: 206px;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .hero p:not(.kicker),
  .page-hero p:not(.kicker) {
    font-size: 1.08rem;
  }

  .hero-word {
    right: -0.6em;
    bottom: 0.05em;
    font-size: 5rem;
  }

  .hero-crest {
    top: 84px;
    right: 14px;
    width: 86px;
    height: 86px;
    opacity: 0.14;
  }

  .hero-actions .button,
  .sponsor-punch .button,
  .section-band .button {
    width: 100%;
  }

  .match-strip,
  .section,
  .site-footer,
  .section-band {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .statement h2,
  .split-feature h2,
  .sponsor-punch h2,
  .section h2,
  .panel h2,
  .timeline h2 {
    font-size: 2.35rem;
  }

  .feature-link {
    min-height: 210px;
    padding: 24px;
  }

  .feature-link strong {
    font-size: 2rem;
  }

  .sponsor-punch,
  .section-band,
  .contact-strip,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.05rem;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }
}
