:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: #111318;
  --panel-2: #171a21;
  --text: #f4f1ea;
  --muted: #b9b4aa;
  --line: rgba(255, 255, 255, 0.14);
  --amber: #f7a928;
  --green: #a7e32b;
  --red: #e94f37;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 9, 11, 0.42);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.88);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(150px, 16vw, 230px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  border: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  border-color: var(--line);
  outline: none;
}

.main-nav .nav-social {
  width: 40px;
  justify-content: center;
  padding: 0;
  color: var(--green);
  border-color: rgba(167, 227, 43, 0.22);
  background: rgba(167, 227, 43, 0.06);
}

.main-nav .nav-social:hover,
.main-nav .nav-social:focus-visible {
  color: #111;
  background: var(--green);
  border-color: var(--green);
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(17, 19, 24, 0.9);
  color: var(--text);
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
}

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

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.76) 38%, rgba(8, 9, 11, 0.26) 72%, rgba(8, 9, 11, 0.58) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.hero-logo {
  width: min(520px, 86vw);
  height: auto;
  margin: 0 0 24px -12px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.54));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p {
  overflow-wrap: anywhere;
}

.desktop-nowrap {
  white-space: nowrap;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  max-width: 820px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.btn-primary {
  color: #111;
  background: var(--amber);
  border-color: var(--amber);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd076;
  outline: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--green);
  outline: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin: 56px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-stats div {
  padding: 18px;
  background: rgba(17, 19, 24, 0.74);
}

.hero-stats dt {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro > p,
.split p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
}

.section-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  border-bottom: 1px solid var(--line);
}

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

.card {
  min-height: 300px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card p,
.timeline p,
.quote span {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: rgba(167, 227, 43, 0.12);
  border: 1px solid rgba(167, 227, 43, 0.35);
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(-45deg);
}

.section-actions {
  margin-top: 30px;
}

.tech-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(247, 169, 40, 0.12), rgba(167, 227, 43, 0.08)),
    var(--panel-2);
  border: 1px solid var(--line);
}

.meter {
  width: 74%;
  padding: 18px;
  background: #0d0f13;
  border-left: 4px solid var(--amber);
}

.meter.wide {
  width: 88%;
  border-color: var(--green);
}

.meter.full {
  width: 100%;
  border-color: var(--red);
}

.meter span,
.meter strong {
  display: block;
}

.meter span {
  color: var(--muted);
  font-size: 0.86rem;
}

.meter strong {
  margin-top: 4px;
  font-size: 1.25rem;
}

.equipment {
  border-bottom: 1px solid var(--line);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.equipment-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.equipment-card::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.equipment-card:hover,
.equipment-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(167, 227, 43, 0.58);
  background:
    linear-gradient(135deg, rgba(167, 227, 43, 0.08), rgba(247, 169, 40, 0.05)),
    var(--panel);
  outline: none;
}

.equipment-grid span,
.event-date,
.event-list span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.equipment-grid p,
.event-card p,
.event-list p {
  color: var(--muted);
}

.equipment-grid strong,
.event-card strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--amber);
}

.equipment-card em {
  display: inline-flex;
  margin-top: auto;
  padding-top: 20px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.equipment-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.process {
  border-bottom: 1px solid var(--line);
}

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

.timeline article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.timeline span {
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 900;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.event-card {
  min-height: 100%;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(247, 169, 40, 0.16), rgba(167, 227, 43, 0.09)),
    var(--panel-2);
  border: 1px solid var(--line);
}

.event-card-feature h3 {
  margin-top: 28px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1;
}

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

.event-list article {
  min-height: 190px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.event-poster-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.event-poster-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  grid-template-rows: auto;
}

.event-poster-card > .event-poster-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 34px);
  background:
    radial-gradient(circle at 26% 18%, rgba(167, 227, 43, 0.16), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(247, 169, 40, 0.14), transparent 36%),
    #0d0f13;
}

.event-poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at center, rgba(167, 227, 43, 0.08), rgba(8, 9, 11, 0) 62%),
    #0d0f13;
}

.poster-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.poster-lightbox-trigger:hover,
.poster-lightbox-trigger:focus-visible {
  outline: none;
}

.poster-lightbox-trigger:hover img,
.poster-lightbox-trigger:focus-visible img {
  border-color: rgba(167, 227, 43, 0.72);
  transform: translateY(-2px);
}

.event-poster-card-wide img {
  max-height: 720px;
  min-height: 0;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transition: border-color 180ms ease, transform 180ms ease;
}

.event-poster-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.event-poster-card > .event-poster-content {
  padding: clamp(26px, 4vw, 44px);
}

.event-poster-card h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  line-height: 1;
}

.event-poster-card p,
.event-poster-card li {
  color: var(--muted);
}

.event-poster-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
}

.event-poster-card li {
  position: relative;
  padding-left: 22px;
}

.event-poster-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--green);
}

.event-poster-card .btn {
  margin-top: auto;
}

.references {
  border-bottom: 1px solid var(--line);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 40px;
}

.reference-grid figure {
  position: relative;
  grid-column: span 2;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.reference-grid .reference-feature {
  grid-column: span 3;
  grid-row: span 2;
  aspect-ratio: auto;
}

.reference-grid .reference-wide {
  grid-column: span 4;
  aspect-ratio: 16 / 9;
}

.reference-grid .reference-tall {
  aspect-ratio: 3 / 4;
}

.reference-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.reference-grid figure:hover img {
  transform: scale(1.035);
}

.reference-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 18px 18px;
  color: var(--text);
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0), rgba(8, 9, 11, 0.9));
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.dj-logo {
  width: min(360px, 78vw);
  height: auto;
  margin: 0 0 26px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.48));
}

.quote {
  padding: 30px;
  background: #f4f1ea;
  color: #17130f;
}

.quote p {
  margin: 0 0 18px;
  font-size: 1.25rem;
  line-height: 1.45;
}

.quote span {
  color: #5f5549;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  color: var(--amber);
  font-weight: 800;
}

.contact-links a[href*="instagram"],
.contact-links a[href*="facebook"] {
  color: var(--lime);
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-links span {
  color: var(--muted);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.race-hero {
  min-height: 720px;
}

.race-hero .parkfest-hero-media img {
  object-position: center 32%;
}

.race-hero .parkfest-hero-media::after {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.97) 0%, rgba(8, 9, 11, 0.78) 44%, rgba(8, 9, 11, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.06) 60%);
}

.race-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.3vw, 5.2rem);
  line-height: 1;
}

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

.race-info .section-heading {
  max-width: 980px;
  margin-bottom: 30px;
}

.race-info h2 {
  max-width: 920px;
  font-size: 2.75rem;
  line-height: 1.18;
  text-wrap: normal;
  white-space: nowrap;
}

.race-info-grid article {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.race-info-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.race-info-grid p,
.race-text {
  margin: 0;
  color: var(--muted);
}

.race-text {
  max-width: 860px;
  margin-top: 24px;
}

.race-text a {
  color: var(--amber);
  font-weight: 900;
}

.race-deadline {
  padding: 16px 18px;
  color: var(--text);
  font-weight: 800;
  background: rgba(167, 227, 43, 0.1);
  border-left: 3px solid var(--green);
}

.race-registration {
  align-items: start;
}

.parkfest-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 144px clamp(18px, 5vw, 72px) 78px;
}

.parkfest-hero-media,
.parkfest-hero-media::after,
.parkfest-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.parkfest-hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
}

.parkfest-page-hero .parkfest-hero-media img {
  object-position: center top;
}

.parkfest-hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.97) 0%, rgba(8, 9, 11, 0.78) 42%, rgba(8, 9, 11, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.08) 58%);
}

.parkfest-hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.parkfest-hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
  line-height: 0.93;
}

.parkfest-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.24rem);
}

.parkfest-overview {
  border-bottom: 1px solid var(--line);
}

.parkfest-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.parkfest-facts article {
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(247, 169, 40, 0.13), rgba(167, 227, 43, 0.06)),
    var(--panel);
  border: 1px solid var(--line);
}

.parkfest-facts span,
.program-day header span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.parkfest-facts strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1.12;
}

.parkfest-facts p {
  margin: 16px 0 0;
  color: var(--muted);
}

.parkfest-program {
  border-bottom: 1px solid var(--line);
}

.program-day-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.program-day {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.program-day h3 {
  margin: 10px 0 22px;
  font-size: clamp(1.7rem, 2.4vw, 2.55rem);
  line-height: 1;
}

.program-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-list li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.program-list time {
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.program-list span {
  min-width: 0;
}

.program-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.parkfest-all-day {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.parkfest-all-day p {
  margin: 20px 0 0;
  color: var(--muted);
}

.all-day-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.all-day-list li {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 42px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.all-day-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 9px;
  height: 9px;
  background: var(--green);
}

.parkfest-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 24px;
  align-items: end;
  padding: 44px clamp(20px, 4vw, 38px);
  margin-top: clamp(72px, 9vw, 118px);
  margin-bottom: clamp(72px, 9vw, 118px);
  background:
    linear-gradient(135deg, rgba(247, 169, 40, 0.18), rgba(167, 227, 43, 0.1)),
    var(--panel-2);
  border: 1px solid var(--line);
}

.parkfest-cta h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.parkfest-cta p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
}

.parkfest-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.pdf-lightbox {
  width: min(1120px, calc(100vw - 36px));
  max-width: none;
  height: min(860px, calc(100vh - 36px));
  max-height: none;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
}

.pdf-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.pdf-lightbox-panel {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #08090b;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pdf-lightbox-head,
.pdf-lightbox-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: rgba(17, 19, 24, 0.96);
  border-bottom: 1px solid var(--line);
}

.pdf-lightbox-head h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.pdf-lightbox-close {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.pdf-lightbox-close:hover,
.pdf-lightbox-close:focus-visible {
  border-color: var(--green);
  outline: none;
}

.pdf-lightbox-frame {
  width: 100%;
  height: 100%;
  background: #111318;
  border: 0;
}

.pdf-lightbox-actions {
  justify-content: flex-end;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.required-note {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.required-marker,
.required-note span {
  color: var(--green);
  font-weight: 900;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

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

.contact-form input:not([type="radio"]):not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #08090b;
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.field-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.field-group legend {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.field-group p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.choice {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--text) !important;
  font-weight: 700 !important;
  line-height: 1.4;
}

.choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.gdpr {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
}

.gdpr a,
.captcha-note a {
  color: var(--amber);
  font-weight: 900;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.g-recaptcha {
  min-height: 78px;
}

.captcha-field {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.captcha-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-error-list {
  margin: 18px 0 28px;
  padding-left: 20px;
  color: var(--muted);
}

.form-error-list li + li {
  margin-top: 8px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94), rgba(8, 9, 11, 0.72)),
    url("assets/hero-apmusic-event.jpg") center / cover;
}

.form-response {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 46px);
  background: rgba(17, 19, 24, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-response-logo {
  width: min(320px, 74vw);
  height: auto;
  margin-bottom: 28px;
}

.form-response h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.form-response p {
  max-width: 620px;
  color: var(--muted);
}

.subpage-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 152px 0 72px;
  border-bottom: 1px solid var(--line);
}

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

.subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
}

.rental-title {
  max-width: 900px;
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 0.95;
  overflow-wrap: normal;
  hyphens: none;
}

.dj-page-hero {
  padding-bottom: 56px;
}

.dj-page-logo {
  width: min(520px, 92vw);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.54));
}

.dj-page-hero .eyebrow {
  margin-bottom: 14px;
}

.dj-page-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.96;
}

.dj-page-hero .subpage-hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 0;
  font-size: clamp(1.06rem, 1.25vw, 1.22rem);
}

.dj-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.dj-portrait-wrap {
  background:
    linear-gradient(135deg, rgba(167, 227, 43, 0.18), rgba(247, 169, 40, 0.08)),
    var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.dj-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.dj-profile-copy p {
  color: var(--muted);
}

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

.dj-quotes blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 40px);
  background: var(--green);
  color: #17130f;
}

.dj-quotes p {
  margin: 0 0 18px;
  color: #17130f;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
  font-weight: 900;
}

.dj-quotes cite {
  color: #3b3a22;
  font-style: normal;
  font-weight: 900;
}

.dj-details {
  display: grid;
  gap: 28px;
}

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

.dj-detail-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.dj-detail-grid span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dj-detail-grid p {
  color: var(--muted);
}

.legal-page {
  display: grid;
  gap: 42px;
}

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

.legal-block,
.legal-content article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.legal-block h3,
.legal-content h3 {
  margin-top: 0;
}

.legal-content h4 {
  margin: 22px 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.legal-block p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 10px 0 18px;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-block a,
.legal-content a {
  color: var(--amber);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-source,
.legal-copyright {
  margin: 0;
  color: var(--muted);
}

.legal-copyright {
  padding-top: 12px;
  text-align: center;
  font-weight: 800;
}

.rental-jump {
  position: sticky;
  top: 82px;
  z-index: 10;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 0;
  background: rgba(8, 9, 11, 0.9);
  backdrop-filter: blur(18px);
}

.rental-jump a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.rental-jump a:hover,
.rental-jump a:focus-visible {
  color: var(--text);
  border-color: var(--green);
  outline: none;
}

.rental-section {
  border-bottom: 1px solid var(--line);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.package-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(167, 227, 43, 0.05), rgba(17, 19, 24, 0)),
    var(--panel);
  border: 1px solid var(--line);
}

.package-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.package-head span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-head strong {
  color: var(--amber);
  font-size: 1rem;
}

.package-card h3 {
  margin: 0;
}

.package-card p,
.package-card li,
.package-note p {
  color: var(--muted);
}

.package-card .package-recommendation {
  display: grid;
  gap: 4px;
  margin: -2px 0 0;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 800;
  background: rgba(167, 227, 43, 0.1);
  border-left: 3px solid var(--green);
}

.package-card .package-recommendation span {
  color: var(--green);
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card ul {
  margin: 0;
  padding-left: 18px;
}

.package-card li + li {
  margin-top: 6px;
}

.package-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.package-note p {
  margin: 0;
  max-width: 760px;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.rental-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.rental-card-feature {
  grid-column: auto;
}

.rental-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.rental-card > div {
  padding: 24px;
}

.rental-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rental-card p {
  color: var(--muted);
}

.rental-detail {
  color: var(--text) !important;
  font-weight: 800;
}

.rental-source {
  margin-top: 8px;
  color: var(--muted) !important;
  font-size: 0.82rem;
}

.rental-card strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--amber);
  font-size: 1.05rem;
}

.rental-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.dj-booking-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  padding-top: 58px;
  padding-bottom: 58px;
}

.dj-booking-cta h2 {
  max-width: 720px;
}

.dj-booking-cta .btn {
  min-width: 190px;
  white-space: nowrap;
}

.social-action-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: var(--lime);
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(167, 226, 62, 0.45);
  background: rgba(167, 226, 62, 0.08);
}

.social-link:hover,
.social-link:focus-visible {
  color: #0f130d;
  background: var(--lime);
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.image-lightbox {
  width: min(980px, calc(100vw - 36px));
  max-width: none;
  height: min(920px, calc(100vh - 36px));
  max-height: none;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.image-lightbox-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  background: #08090b;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(17, 19, 24, 0.96);
  border-bottom: 1px solid var(--line);
}

.image-lightbox-head h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.image-lightbox-close {
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 1.5rem;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  color: #111;
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

.image-lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #08090b;
}

.cookie-banner {
  position: fixed;
  left: clamp(16px, 3vw, 36px);
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 36px);
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px;
  background: rgba(17, 19, 24, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--amber);
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .race-info h2 {
    font-size: 2.35rem;
    line-height: 1.2;
    white-space: normal;
  }

  .race-info .section-heading {
    margin-bottom: 24px;
  }

  .race-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-day-grid {
    grid-template-columns: 1fr;
  }

  .parkfest-all-day,
  .parkfest-cta {
    grid-template-columns: 1fr;
  }

  .parkfest-cta-actions {
    justify-content: flex-start;
  }

  .intro,
  .split,
  .dj-profile,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .equipment-grid,
  .event-layout,
  .event-grid,
  .reference-grid,
  .legal-grid,
  .dj-quotes,
  .dj-detail-grid,
  .rental-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .event-poster-card img {
    aspect-ratio: 4 / 5;
  }

  .event-poster-card-wide img {
    min-height: 0;
  }

  .rental-card,
  .rental-card-feature {
    grid-template-columns: 1fr;
  }

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

  .reference-grid figure,
  .reference-grid .reference-feature,
  .reference-grid .reference-wide,
  .reference-grid .reference-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 720px) {
  .race-hero h1 {
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.08;
    white-space: normal;
  }

  .race-info h2 {
    font-size: 1.9rem;
    line-height: 1.26;
  }

  .race-info .section-heading {
    margin-bottom: 20px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: clamp(126px, 42vw, 170px);
    max-height: 52px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 73px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(8, 9, 11, 0.96);
    border: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
  }

  .main-nav .nav-social {
    width: 100%;
  }

  .pdf-lightbox-head,
  .pdf-lightbox-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pdf-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
  }

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

  .hero-logo {
    width: min(420px, 94vw);
    margin-left: -8px;
  }

  .hero-image {
    object-position: 40% 56%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 9, 11, 0.93) 0%, rgba(8, 9, 11, 0.62) 100%),
      linear-gradient(0deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0) 54%);
  }

  .hero-stats,
  .parkfest-facts,
  .service-grid,
  .equipment-grid,
  .event-layout,
  .event-list,
  .event-grid,
  .reference-grid,
  .legal-grid,
  .dj-quotes,
  .dj-detail-grid,
  .rental-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .event-poster-card img {
    aspect-ratio: 4 / 5;
  }

  .event-poster-card > .event-poster-media {
    grid-template-columns: 1fr;
  }

  .reference-grid figure,
  .reference-grid .reference-feature,
  .reference-grid .reference-wide,
  .reference-grid .reference-tall {
    aspect-ratio: 4 / 3;
  }

  .form-row,
  .race-info-grid,
  .all-day-list,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .parkfest-hero {
    min-height: 660px;
    padding-top: 126px;
  }

  .parkfest-hero h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .program-day {
    padding: 22px;
  }

  .program-list li {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .subpage-hero {
    padding-top: 126px;
  }

  .rental-title {
    font-size: clamp(2.15rem, 12vw, 3.15rem);
    line-height: 1;
    overflow-wrap: normal;
    hyphens: manual;
  }

  .desktop-nowrap {
    white-space: normal;
  }

  .rental-jump {
    position: static;
  }

  .rental-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .dj-booking-cta {
    display: flex;
  }

  .social-action-group {
    justify-content: flex-start;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .card,
  .timeline article {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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