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

:root {
  --ink: #09090c;
  --char: #111318;
  --void: #0d0b08;
  --paper: #f2ede4;
  --paper-soft: rgba(242, 237, 228, 0.78);
  --paper-dim: rgba(242, 237, 228, 0.58);
  --gold: #d6b973;
  --gold-soft: #e6cc86;
  --rule: rgba(214, 185, 115, 0.2);
  --pink: #fb1558;
  --pink-dark: #d91249;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --condensed: "Oswald", "Arial Narrow", sans-serif;
  --sans: "Inter", Arial, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--sans);
  background: var(--ink);
  color: var(--paper);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.025) 50%, transparent 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

img, video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

.rv {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.rv.v {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }

.label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}

.section-header--center {
  display: block;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-family: var(--condensed);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
}

.section-kicker {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 15px;
  color: var(--paper-soft);
}

.cta-link {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-editorial,
.btn-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 24px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s, color 0.35s;
}

.btn-editorial {
  border: 1px solid rgba(242, 237, 228, 0.28);
  background: rgba(9, 9, 12, 0.12);
  color: var(--paper);
}

.btn-ticket {
  border: 1px solid var(--pink);
  background: var(--pink);
  color: #fff;
}

.btn-editorial:hover,
.btn-ticket:hover {
  transform: translateY(-2px);
}

.btn-editorial:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-ticket:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.oktoberfest-banner {
  padding: 112px 60px;
}

.oktoberfest-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.22fr);
  gap: 48px;
  max-width: 1240px;
  margin-inline: auto;
  align-items: center;
}

.oktoberfest-banner__media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 185, 115, 0.28);
  background: var(--void);
  min-height: 260px;
  max-height: 480px;
}

.oktoberfest-banner__media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
}

.oktoberfest-tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 44px auto 0;
}

.tier-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(242, 237, 228, 0.12);
  background: var(--ink);
}

.tier-card-accent {
  height: 6px;
  background: var(--tier-color, var(--gold));
}

.tier-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px 24px;
}

.tier-card-title {
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--paper);
}

.tier-card-date {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.tier-card-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--paper-soft);
}

.tier-card-cta {
  margin-top: auto;
  align-self: flex-start;
}

.social-rail {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 185, 115, 0.24);
  background: rgba(9, 9, 12, 0.68);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
}

.social-rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--paper-soft);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}

.social-rail a:hover {
  color: var(--gold-soft);
  transform: scale(1.12);
}

.social-rail svg {
  width: 16px;
  height: 16px;
}

.oktoberfest-banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oktoberfest-banner__headline {
  margin-bottom: 18px;
  font-family: var(--condensed);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}

.oktoberfest-banner__body {
  margin-bottom: 28px;
  max-width: 480px;
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.65;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 52px;
  transition: background 0.7s, backdrop-filter 0.7s, border-color 0.7s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(9, 9, 12, 0.92);
  border-color: rgba(214, 185, 115, 0.14);
  backdrop-filter: blur(22px);
}

.logo {
  display: block;
  line-height: 1;
  text-decoration: none;
}

.logo-img {
  width: auto;
  height: 72px;
  object-fit: contain;
  filter: saturate(0.9) contrast(0.98);
}

.logo-img--footer {
  height: 118px;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a,
.nav-cta {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links a {
  color: rgba(242, 237, 228, 0.84);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cta {
  padding: 10px 20px;
  background: var(--pink);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--paper);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: rgba(9, 9, 12, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer a {
  font-family: var(--condensed);
  font-size: clamp(38px, 12vw, 68px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-drawer .drawer-cta {
  font-size: 16px;
  color: var(--pink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--void);
}

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.15s var(--ease-out), transform 5.8s linear;
  will-change: opacity, transform;
}

.hero-image.is-active {
  opacity: 1;
}

body.loaded .hero-image.is-active {
  transform: scale(1.065);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 44%, rgba(251, 21, 88, 0.16), transparent 33%),
    linear-gradient(to bottom, rgba(9, 9, 12, 0.62), rgba(9, 9, 12, 0.18) 38%, rgba(9, 9, 12, 0.84));
}

.hero-inner {
  width: min(660px, calc(100% - 44px));
  margin-top: 28px;
  text-align: center;
}

.hero-eyebrow,
.hero-headline,
.hero-sub,
.hero-ctas {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

body.loaded .hero-eyebrow,
body.loaded .hero-headline,
body.loaded .hero-sub,
body.loaded .hero-ctas {
  opacity: 1;
  transform: none;
}

body.loaded .hero-eyebrow { transition-delay: 0.28s; }
body.loaded .hero-headline { transition-delay: 0.44s; }
body.loaded .hero-sub { transition-delay: 0.6s; }
body.loaded .hero-ctas { transition-delay: 0.76s; }

.hero-eyebrow {
  margin-bottom: 20px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  max-width: 640px;
  margin: 0 auto 20px;
  font-family: var(--condensed);
  font-size: clamp(30px, 4.1vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-sub {
  max-width: 540px;
  margin: 0 auto;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--paper-soft);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  text-decoration: none;
}

.hero-scroll-label {
  font-family: var(--condensed);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.56);
}

.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.rhythm-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--char);
}

.rhythm-strip div {
  min-height: 112px;
  padding: 28px 34px;
  border-right: 1px solid var(--rule);
}

.rhythm-strip div:last-child {
  border-right: 0;
}

.rhythm-strip span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

.rhythm-strip strong {
  display: block;
  max-width: 300px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.upcoming,
.featured-event,
.festivals,
.artists,
.venues,
.event-types,
.why-section,
.partner-section {
  padding: 112px 60px;
}

.upcoming,
.event-types,
.partner-section {
  background: var(--ink);
}

.featured-event,
.oktoberfest-banner,
.artists,
.why-section {
  background: var(--char);
}

.festivals,
.venues {
  background: var(--void);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  max-width: 1040px;
  margin-inline: auto;
}

.editorial-moment {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2px;
  max-width: 1240px;
  margin: 54px auto 0;
  background: var(--rule);
}

.editorial-moment__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--void);
}

.editorial-moment__media img:first-child {
  position: absolute;
  inset: 0;
}

.editorial-moment__media img:last-child {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: min(38%, 280px);
  height: 46%;
  border: 1px solid rgba(242, 237, 228, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.editorial-moment__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  background:
    linear-gradient(145deg, rgba(251, 21, 88, 0.08), transparent 44%),
    var(--char);
}

.editorial-moment__copy h3,
.destination-note h3 {
  margin-bottom: 16px;
  font-family: var(--condensed);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.editorial-moment__copy p:last-child,
.destination-note p:last-child {
  color: var(--paper-soft);
  font-size: 14px;
}

.event-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--char);
}

.event-card a {
  color: inherit;
}

.event-card-media {
  display: block;
  height: 430px;
  overflow: hidden;
  background: var(--void);
}

.event-card-media img {
  object-fit: contain;
}

.event-card-media img,
.collection-card img,
.artist-card img,
.venue-card img {
  transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}

.event-card:hover img,
.collection-card:hover img,
.artist-card:hover img,
.venue-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.event-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 30px;
}

.event-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  border: 1px solid rgba(214, 185, 115, 0.28);
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.event-date,
.event-location,
.video-label {
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-date,
.video-label {
  color: var(--gold);
}

.event-location {
  color: var(--paper-dim);
}

.event-title,
.collection-card h3,
.artist-card h3,
.venue-card h3,
.type-title,
.why-point-title,
.video-copy h3 {
  font-family: var(--condensed);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-title {
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 26px);
}

.event-desc {
  flex: 1;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--paper-soft);
}

.event-status {
  margin: -8px 0 22px;
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.past-events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  max-width: 1040px;
  margin: 36px auto 0;
}

.past-event-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background: var(--char);
  color: inherit;
  padding: 18px;
  text-decoration: none;
}

.past-event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.past-event-card span {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.past-event-card h3 {
  margin: 8px 0;
  font-family: var(--condensed);
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.past-event-card p {
  color: var(--paper-soft);
  font-size: 13px;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid var(--rule);
  background: var(--char);
  color: var(--paper-soft);
  padding: 28px;
  text-align: center;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  min-height: 720px;
  padding: 130px 64px 72px;
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(214,185,115,0.12), transparent 34%),
    var(--void);
}

.detail-hero-poster {
  background: var(--char);
  border: 1px solid rgba(242, 237, 228, 0.12);
  padding: 12px;
}

.detail-hero-poster img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
}

.detail-hero-copy h1 {
  margin: 18px 0;
  font-family: var(--condensed);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.detail-hero-copy p,
.detail-copy {
  max-width: 820px;
  color: var(--paper-soft);
  font-size: 16px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.detail-meta span,
.detail-pill-grid span {
  border: 1px solid rgba(214,185,115,0.24);
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.detail-band {
  padding: 92px 64px;
  background: var(--void);
}

.detail-band--light {
  background: var(--paper);
  color: var(--ink);
}

.detail-band--light .detail-copy,
.detail-band--light p {
  color: rgba(16, 17, 18, 0.68);
}

.detail-section-head {
  margin-bottom: 28px;
}

.detail-section-head h2,
.detail-cta h2,
.detail-error h1 {
  font-family: var(--condensed);
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-pill-grid,
.programme-grid,
.detail-facts,
.detail-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-top: 28px;
}

.programme-grid article,
.detail-facts div,
.detail-related-grid a {
  background: var(--char);
  padding: 24px;
}

.detail-band--light .programme-grid article,
.detail-band--light .detail-facts div,
.detail-band--light .detail-related-grid a {
  background: #f3ead8;
}

.programme-grid span,
.detail-facts span,
.detail-related-grid span {
  color: var(--gold);
  font-family: var(--condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.programme-grid h3,
.detail-related-grid h3 {
  margin: 10px 0;
  font-family: var(--condensed);
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-media {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: center;
}

.detail-media-frame {
  background: var(--char);
  border: 1px solid rgba(242, 237, 228, 0.12);
  padding: 12px;
}

.detail-media-frame img,
.detail-related-grid img {
  width: 100%;
  object-fit: contain;
}

.detail-video {
  grid-column: 1 / -1;
  width: min(100%, 860px);
  margin-top: 28px;
}

.detail-cta,
.detail-error {
  padding: 96px 64px;
  text-align: center;
  background: var(--char);
}

.detail-cta p,
.detail-error p {
  max-width: 680px;
  margin: 16px auto 28px;
  color: var(--paper-soft);
}

.detail-related-grid a {
  color: inherit;
  text-decoration: none;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
  grid-template-areas:
    "main copy"
    "main secondary";
  gap: 2px;
  max-width: 1240px;
  margin: 0 auto;
}

.memory-strip {
  display: grid;
  grid-template-columns: 1fr 0.78fr 1fr;
  gap: 2px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.memory-strip img {
  min-height: 260px;
  max-height: 340px;
  filter: saturate(0.96) contrast(1.02);
}

.video-stage,
.video-secondary {
  position: relative;
  overflow: hidden;
  background: var(--void);
}

.video-stage {
  grid-area: main;
  min-height: 560px;
}

.video-secondary {
  grid-area: secondary;
  min-height: 270px;
}

.video-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: var(--ink);
}

.video-copy h3 {
  margin: 12px 0 16px;
  font-size: clamp(26px, 3vw, 42px);
}

.video-copy p:not(.video-label) {
  margin-bottom: 30px;
  color: var(--paper-soft);
  font-size: 14px;
}

.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(214, 185, 115, 0.5);
  border-radius: 50%;
  background: rgba(9, 9, 12, 0.68);
  color: var(--paper);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: opacity 0.3s, transform 0.35s var(--ease-out), background 0.35s;
}

.play-btn--small {
  width: 54px;
  height: 54px;
}

.play-btn:hover {
  background: rgba(251, 21, 88, 0.32);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
}

.collection-card,
.artist-card,
.venue-card {
  position: relative;
  overflow: hidden;
  background: var(--char);
}

.collection-card {
  min-height: 440px;
}

.collection-card::after,
.venue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 12, 0.9), rgba(9, 9, 12, 0.1) 58%);
}

.collection-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
}

.collection-card-copy span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--condensed);
  font-size: 10px;
  color: var(--pink);
  letter-spacing: 0.18em;
}

.collection-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.collection-card p,
.venue-card p,
.artist-card p,
.type-body,
.why-point-body {
  font-size: 13px;
  color: var(--paper-soft);
}

.artist-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 2px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.artist-card {
  min-height: 330px;
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 12, 0.88), transparent 62%);
}

.artist-card div,
.venue-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.artist-card h3 {
  font-size: 20px;
}

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

.destination-note {
  position: relative;
  min-height: 520px;
  max-width: 1240px;
  margin: 54px auto 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--void);
}

.destination-note::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 12, 0.92), rgba(9, 9, 12, 0.16) 60%);
}

.destination-note img {
  position: absolute;
  inset: 0;
}

.destination-note div {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 46px;
}

.venue-card {
  min-height: 360px;
}

.venue-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
}

.type-block {
  padding: 42px 32px 44px;
  background: var(--ink);
}

.type-number {
  display: block;
  margin-bottom: 20px;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.type-rule {
  width: 36px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--pink);
}

.type-title {
  margin-bottom: 14px;
  font-size: 22px;
}

.why-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  max-width: 1240px;
  margin: 0 auto;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
}

.why-point {
  padding: 30px 28px;
  background: var(--char);
}

.why-point-rule {
  width: 22px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--gold);
}

.why-point-title {
  margin-bottom: 8px;
  font-size: 16px;
}

.partner-section {
  text-align: center;
  border-top: 1px solid var(--rule);
}

.partner-inner {
  max-width: 680px;
  margin: 0 auto;
}

.partner-headline {
  margin-bottom: 18px;
  font-family: var(--condensed);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-sub {
  max-width: 540px;
  margin: 0 auto 42px;
  color: var(--paper-soft);
}

.ticket-image-strip {
  display: grid;
  grid-template-columns: 0.72fr 1fr 0.85fr;
  gap: 2px;
  margin: 0 auto 34px;
  max-width: 800px;
}

.ticket-image-strip img {
  height: clamp(180px, 24vw, 290px);
  filter: saturate(0.98) contrast(1.04);
}

.ticket-image-strip img:first-child {
  height: clamp(220px, 30vw, 360px);
}

.partner-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  background: var(--char);
  border-top: 1px solid var(--rule);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding: 76px 60px 60px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-tagline,
.footer-bottom p,
.footer-bottom-links a,
.footer-contact a,
.footer-col ul a {
  color: var(--paper-dim);
  text-decoration: none;
}

.footer-tagline {
  margin-bottom: 28px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: var(--paper-dim);
  transition: color 0.3s;
}

.footer-social a:hover,
.footer-bottom-links a:hover,
.footer-contact a:hover,
.footer-col ul a:hover {
  color: var(--gold-soft);
}

.footer-col-title {
  margin-bottom: 20px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col ul,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.footer-col ul a,
.footer-contact a {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 60px;
  border-top: 1px solid var(--rule);
}

.footer-bottom p,
.footer-bottom-links a {
  font-size: 11px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-ticket-note {
  max-width: var(--container);
  margin: 18px auto 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 1180px) {
  .events-grid,
  .past-events-grid,
  .venue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  #nav {
    padding: 0 32px;
  }

  .upcoming,
  .featured-event,
  .festivals,
  .artists,
  .venues,
  .event-types,
  .why-section,
  .oktoberfest-banner,
  .partner-section {
    padding: 88px 40px;
  }

  .video-feature,
  .editorial-moment,
  .oktoberfest-banner__inner,
  .why-inner,
  .detail-hero,
  .detail-media {
    grid-template-columns: 1fr;
  }

  .detail-pill-grid,
  .programme-grid,
  .detail-facts,
  .detail-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-feature {
    grid-template-areas:
      "main"
      "copy"
      "secondary";
  }

  .video-stage {
    min-height: 460px;
  }

  .editorial-moment__media {
    min-height: 380px;
  }

  .oktoberfest-banner__media {
    min-height: 240px;
    max-height: 400px;
  }

  .memory-strip {
    grid-template-columns: 1fr 1fr;
  }

  .memory-strip img:first-child {
    grid-column: 1 / -1;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 64px 40px 52px;
  }

  .footer-bottom {
    padding-inline: 40px;
  }
}

@media (max-width: 768px) {
  #nav {
    height: 60px;
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle,
  .nav-drawer {
    display: flex;
  }

  .logo-img {
    height: 54px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    width: min(100% - 34px, 620px);
  }

  .hero-headline {
    font-size: clamp(34px, 10vw, 54px);
  }

  .hero-ctas,
  .partner-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-editorial,
  .btn-ticket {
    width: min(100%, 260px);
  }

  .rhythm-strip,
  .events-grid,
  .past-events-grid,
  .collection-grid,
  .venue-grid,
  .types-grid,
  .memory-strip,
  .ticket-image-strip,
  .oktoberfest-tiers,
  .why-points {
    grid-template-columns: 1fr;
  }

  .social-rail {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 26px;
    padding: 10px 16px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(214, 185, 115, 0.24);
  }

  .hero-scroll {
    bottom: 70px;
  }

  .detail-pill-grid,
  .programme-grid,
  .detail-facts,
  .detail-related-grid {
    grid-template-columns: 1fr;
  }

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

  .rhythm-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .rhythm-strip div:last-child {
    border-bottom: 0;
  }

  .upcoming,
  .featured-event,
  .festivals,
  .artists,
  .venues,
  .event-types,
  .why-section,
  .oktoberfest-banner,
  .partner-section {
    padding: 78px 24px;
  }

  .detail-hero,
  .detail-band,
  .detail-cta,
  .detail-error {
    padding: 86px 24px 56px;
  }

  .detail-hero-poster img {
    max-height: 520px;
  }

  .section-header {
    display: block;
  }

  .section-title,
  .partner-headline {
    font-size: clamp(28px, 9vw, 42px);
  }

  .event-card-media {
    height: 240px;
  }

  .video-stage {
    min-height: 360px;
  }

  .editorial-moment {
    margin-top: 38px;
  }

  .editorial-moment__media {
    min-height: 330px;
  }

  .oktoberfest-banner__media {
    min-height: 200px;
    max-height: 320px;
  }

  .editorial-moment__media img:last-child {
    right: 18px;
    bottom: 18px;
    width: 40%;
    height: 42%;
  }

  .editorial-moment__copy,
  .destination-note div {
    padding: 30px 24px;
  }

  .memory-strip img,
  .ticket-image-strip img,
  .ticket-image-strip img:first-child {
    height: 230px;
    min-height: 0;
  }

  .destination-note {
    min-height: 380px;
    margin-top: 38px;
  }

  .video-copy {
    padding: 30px 24px;
  }

  .collection-card,
  .venue-card {
    min-height: 360px;
  }

  .artist-strip {
    grid-auto-columns: minmax(220px, 75vw);
  }

  .type-block,
  .why-point {
    padding: 32px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 56px 24px 44px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 20px 24px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-sub {
    font-size: 14px;
  }

  .event-card-body,
  .collection-card-copy,
  .artist-card div,
  .venue-card div {
    padding: 22px;
  }

  .video-stage {
    min-height: 300px;
  }

  .editorial-moment__media,
  .destination-note {
    min-height: 300px;
  }
}

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