:root {
  --ink: #173243;
  --muted: #607582;
  --paper: #fffdf7;
  --cream: #fff7de;
  --sky: #dff4ff;
  --sky-deep: #8fd4ef;
  --grass: #b9dda2;
  --grass-deep: #6fa25f;
  --navy: #163f58;
  --navy-2: #0e2d42;
  --coral: #ef6f5d;
  --coral-dark: #bd493c;
  --yellow: #ffd563;
  --yellow-dark: #b97800;
  --purple: #7258b7;
  --blue: #3a8fb7;
  --green: #2d8a62;
  --red: #bd3f49;
  --line: rgba(23, 50, 67, 0.16);
  --shadow: 0 20px 55px rgba(24, 58, 76, 0.16);
  --small-shadow: 0 10px 26px rgba(24, 58, 76, 0.11);
  --radius: 24px;
  --page: min(1180px, calc(100% - 32px));
  --focus: 0 0 0 4px rgba(239, 111, 93, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #f2f7f3; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 213, 99, 0.23), transparent 23rem),
    radial-gradient(circle at 92% 9%, rgba(58, 143, 183, 0.18), transparent 26rem),
    #f3f7f1;
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--navy-2);
  color: white;
  font-weight: 800;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(22, 63, 88, 0.1);
  background: rgba(248, 251, 246, 0.91);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 47px;
  height: 47px;
  border-radius: 16px 16px 19px 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy-2), var(--navy) 58%, #2b718f);
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 9px 22px rgba(14, 45, 66, 0.24);
  transform: rotate(-3deg);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  right: 6px;
  top: 5px;
}
.brand-copy strong {
  display: block;
  font-size: 1.24rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}
.desktop-nav a {
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 12px;
  color: #395261;
  font-size: 0.86rem;
  font-weight: 800;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: white;
  color: var(--navy);
  box-shadow: 0 5px 16px rgba(23, 50, 67, 0.08);
}
.header-cta { margin-left: 8px; }
.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  z-index: 90;
  padding: 22px 20px 40px;
  background: rgba(248, 251, 246, 0.98);
  overflow: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  text-decoration: none;
  font-weight: 800;
}

.btn {
  min-height: 45px;
  border: 0;
  border-radius: 14px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}
.btn.primary { background: var(--navy); color: white; box-shadow: 0 9px 22px rgba(22, 63, 88, 0.23); }
.btn.coral { background: var(--coral); color: white; box-shadow: 0 9px 22px rgba(239, 111, 93, 0.24); }
.btn.light { background: white; color: var(--navy); border: 1px solid rgba(22, 63, 88, 0.15); }
.btn.ghost { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn.small { min-height: 38px; padding: 8px 12px; border-radius: 12px; font-size: 0.88rem; }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

main { overflow: clip; }
.section {
  width: var(--page);
  margin: 0 auto;
  padding: 78px 0;
}
.section.compact { padding-top: 48px; padding-bottom: 48px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(22, 63, 88, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.1; }
h1 {
  margin: 16px 0 18px;
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  letter-spacing: -0.055em;
  max-width: 940px;
}
h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  letter-spacing: -0.035em;
}
h3 { margin: 0; }
.lead {
  max-width: 760px;
  color: #365160;
  font-size: clamp(1.04rem, 2vw, 1.23rem);
}
.muted { color: var(--muted); }

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(223, 244, 255, 0.96) 0 61%, rgba(185, 221, 162, 0.96) 61% 100%);
  border-bottom: 1px solid rgba(22, 63, 88, 0.08);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(0.2px);
}
.hero::before { width: 210px; height: 70px; left: 8%; top: 15%; box-shadow: 70px 18px 0 3px rgba(255,255,255,.64), 132px -7px 0 -14px rgba(255,255,255,.68); }
.hero::after { width: 150px; height: 54px; right: 10%; top: 20%; box-shadow: 55px 13px 0 1px rgba(255,255,255,.67); }
.hero-inner {
  width: var(--page);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 90px 0 88px;
}
.hero-copy { max-width: 880px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.hero-note {
  display: inline-flex;
  margin-top: 18px;
  gap: 8px;
  align-items: center;
  color: #385b3e;
  font-weight: 800;
  font-size: 0.91rem;
}
.entrance-arch {
  position: absolute;
  right: clamp(10px, 5vw, 80px);
  bottom: 0;
  width: min(390px, 35vw);
  min-width: 280px;
  height: 315px;
  pointer-events: none;
}
.arch-post { position: absolute; bottom: 0; width: 40px; height: 210px; background: #f7ead0; border: 4px solid var(--navy); border-radius: 12px 12px 0 0; }
.arch-post.left { left: 31px; transform: rotate(-1deg); }
.arch-post.right { right: 31px; transform: rotate(1deg); }
.arch-sign {
  position: absolute;
  left: 50%;
  top: 38px;
  transform: translateX(-50%) rotate(-2deg);
  width: 310px;
  padding: 21px 18px;
  border: 5px solid var(--navy);
  border-radius: 24px;
  background: var(--yellow);
  text-align: center;
  box-shadow: var(--small-shadow);
}
.arch-sign strong { display: block; font-size: 2rem; letter-spacing: 0.08em; }
.arch-sign small { font-weight: 900; color: #604b15; }
.arch-flags { position: absolute; top: 0; left: 45px; right: 45px; height: 48px; border-top: 3px solid var(--navy); transform: rotate(-2deg); }
.arch-flags span { position: absolute; top: -2px; width: 28px; height: 34px; clip-path: polygon(0 0, 100% 0, 50% 100%); }
.arch-flags span:nth-child(1) { left: 5%; background: var(--coral); }
.arch-flags span:nth-child(2) { left: 23%; background: var(--purple); }
.arch-flags span:nth-child(3) { left: 43%; background: var(--blue); }
.arch-flags span:nth-child(4) { left: 63%; background: var(--green); }
.arch-flags span:nth-child(5) { left: 82%; background: var(--yellow-dark); }
.arch-path { position: absolute; bottom: 0; left: 50%; width: 210px; height: 90px; transform: translateX(-50%); background: #efd9a9; clip-path: polygon(35% 0,65% 0,100% 100%,0 100%); opacity: .88; }

.wristbands { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.wristband {
  position: relative;
  min-height: 245px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--small-shadow);
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.wristband:hover { transform: translateY(-5px) rotate(-.35deg); box-shadow: var(--shadow); }
.wristband::after { content: ""; position: absolute; width: 120px; height: 120px; right: -34px; bottom: -46px; border: 24px solid rgba(255,255,255,.45); border-radius: 50%; }
.wristband.vo { background: linear-gradient(150deg,#fff4c8,#fffdf7); }
.wristband.pabo { background: linear-gradient(150deg,#ffe2dc,#fffdf7); }
.wristband.hbo { background: linear-gradient(150deg,#ddf3ff,#fffdf7); }
.wristband.all { background: linear-gradient(150deg,#e9e2ff,#fffdf7); }
.wristband-code { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; color: white; background: var(--navy); font-size: 1.05rem; font-weight: 900; transform: rotate(-3deg); }
.wristband h3 { margin-top: 20px; font-size: 1.38rem; }
.wristband p { color: #4b6472; font-size: .94rem; }
.status-line { display: flex; align-items: center; gap: 7px; margin-top: 15px; font-size: .81rem; font-weight: 900; color: var(--navy); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--yellow-dark); }
.status-dot.live { background: var(--green); }
.status-dot.build { background: var(--blue); }

.map-wrap {
  width: min(1320px, calc(100% - 18px));
  margin: 0 auto;
  padding: 76px 0;
}
.map-intro { width: var(--page); margin: 0 auto 25px; }
.festival-map {
  position: relative;
  min-height: 810px;
  border: 5px solid #2f6a49;
  border-radius: 42px 32px 48px 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.34) 0 3px, transparent 4px),
    linear-gradient(145deg, #bfdfa7, #a8d18e);
  box-shadow: 0 28px 80px rgba(44, 86, 56, 0.2);
  overflow: hidden;
}
.map-sky-label {
  position: absolute;
  top: 22px;
  left: 26px;
  padding: 9px 13px;
  border-radius: 13px;
  background: rgba(255,255,255,.82);
  border: 2px solid var(--navy);
  font-weight: 900;
  transform: rotate(-2deg);
  z-index: 5;
}
.map-paths { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.map-paths path { fill: none; stroke: #edd5a6; stroke-width: 54; stroke-linecap: round; stroke-linejoin: round; }
.map-paths .edge { stroke: rgba(117, 90, 39, .25); stroke-width: 59; }
.map-pond { position: absolute; right: 6.5%; bottom: 8%; width: 175px; height: 92px; border: 4px solid #377c97; border-radius: 50% 48% 55% 42%; background: repeating-radial-gradient(ellipse at center,#8fd7eb 0 8px,#77c9e3 9px 16px); transform: rotate(-5deg); box-shadow: inset 0 0 0 8px rgba(255,255,255,.25); }
.map-pond::after { content: "DISCOZWEMMEN"; position: absolute; left: 50%; bottom: -29px; transform: translateX(-50%) rotate(3deg); white-space: nowrap; padding: 4px 7px; border-radius: 7px; background: white; border: 2px solid var(--navy); font-size: .61rem; font-weight: 900; }
.keiblij-sign { position: absolute; left: 4.5%; bottom: 7%; padding: 7px 10px; border: 3px solid #684c26; border-radius: 8px; background: #f6d494; font-size: .66rem; font-weight: 900; transform: rotate(4deg); }
.keiblij-sign::before { content: ""; position: absolute; width: 4px; height: 44px; background: #684c26; left: 50%; top: 100%; }
.grabbel-sign { position: absolute; left: 38%; bottom: 8%; padding: 6px 9px; border-radius: 999px; background: var(--purple); color: white; font-size: .67rem; font-weight: 900; transform: rotate(-4deg); }
.map-zone {
  position: absolute;
  display: block;
  text-decoration: none;
  color: var(--ink);
  z-index: 10;
  transition: transform .18s ease, filter .18s ease;
}
.map-zone:hover { transform: translateY(-5px) scale(1.012); filter: drop-shadow(0 16px 18px rgba(23,50,67,.18)); }
.map-zone:focus-visible { outline: 5px solid rgba(239,111,93,.42); outline-offset: 5px; border-radius: 24px; }
.zone-card {
  padding: 17px;
  border: 3px solid var(--navy);
  border-radius: 20px 24px 18px 26px;
  background: rgba(255,253,247,.96);
  box-shadow: 6px 8px 0 rgba(22,63,88,.15);
}
.zone-card h3 { font-size: 1.12rem; }
.zone-card p { margin: 6px 0 0; color: #526874; font-size: .82rem; line-height: 1.35; }
.zone-badge { display: inline-flex; margin-bottom: 7px; padding: 4px 7px; border-radius: 999px; color: white; background: var(--navy); font-size: .64rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.zone-vo { left: 6%; top: 16%; width: 225px; transform: rotate(-2deg); }
.zone-hbo { right: 7%; top: 16%; width: 250px; transform: rotate(2deg); }
.zone-pabo { left: 36%; top: 27%; width: 330px; transform: rotate(-1deg); }
.zone-pabo .zone-card { padding: 21px; border-width: 4px; background: linear-gradient(145deg,#fffdf7,#ffe8e1); }
.zone-pabo .zone-card::before { content: ""; display: block; width: 100%; height: 25px; margin: -42px 0 14px; border: 4px solid var(--navy); border-bottom: 0; border-radius: 20px 20px 0 0; background: repeating-linear-gradient(90deg,var(--coral) 0 25px,#fff5da 25px 50px); }
.zone-pabo h3 { font-size: 1.5rem; }
.zone-rafel { left: 8%; bottom: 18%; width: 260px; transform: rotate(2deg); }
.zone-rafel .zone-card { border-style: dashed; background: #fff9dd; }
.zone-backstage { right: 23%; bottom: 13%; width: 230px; transform: rotate(-2deg); }
.zone-kladblok { left: 42%; bottom: 5%; width: 235px; transform: rotate(1deg); }
.zone-kladblok .zone-card { background: linear-gradient(145deg,#fff,#e8f7ff); }
.zone-marker {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  float: right;
  margin: -3px -3px 5px 10px;
  border-radius: 12px;
  background: var(--yellow);
  border: 2px solid var(--navy);
  font-weight: 900;
}
.map-legend {
  position: absolute;
  left: 24px;
  top: 72px;
  z-index: 6;
  display: grid;
  gap: 5px;
  padding: 11px;
  border: 2px solid rgba(22,63,88,.3);
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  font-size: .69rem;
  font-weight: 800;
}
.map-legend span { display: flex; gap: 6px; align-items: center; }
.legend-chip { width: 10px; height: 10px; border-radius: 3px; background: var(--coral); }
.legend-chip.build { background: var(--blue); }
.legend-chip.edge { background: var(--yellow-dark); }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.tool-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--small-shadow);
}
.tool-card[data-accent="coral"] { border-top: 7px solid var(--coral); }
.tool-card[data-accent="blue"] { border-top: 7px solid var(--blue); }
.tool-card[data-accent="purple"] { border-top: 7px solid var(--purple); }
.tool-card-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: var(--navy); color: white; font-size: 1.4rem; font-weight: 900; transform: rotate(-3deg); }
.tool-card h3 { margin: 17px 0 7px; font-size: 1.35rem; }
.tool-card p { color: #526874; }
.label-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 13px; }
.label { display: inline-flex; align-items: center; padding: 5px 8px; border-radius: 999px; background: #edf5f7; border: 1px solid rgba(22,63,88,.12); font-size: .73rem; font-weight: 900; }
.label.live { background: #e4f6eb; color: #176341; }
.label.concept { background: #fff1d1; color: #765000; }
.tool-meta { display: grid; grid-template-columns: 108px 1fr; gap: 7px 10px; margin: 8px 0 20px; font-size: .8rem; }
.tool-meta dt { font-weight: 900; color: var(--muted); }
.tool-meta dd { margin: 0; }
.tool-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 21px; }
.filter-chip { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: white; color: var(--ink); font-weight: 900; cursor: pointer; }
.filter-chip.active { background: var(--navy); color: white; border-color: var(--navy); }

.split-band {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: white;
}
.split-band .section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.split-band .lead, .split-band .muted { color: rgba(255,255,255,.76); }
.backstage-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.backstage-card { padding: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; background: rgba(255,255,255,.08); }
.backstage-card strong { display: block; margin-bottom: 5px; }
.backstage-card p { margin: 0; color: rgba(255,255,255,.73); font-size: .88rem; }

.kladblok-section { background: linear-gradient(180deg,#fff9e9,#f5f8f1); }
.kladblok-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: start; }
.notepad-illustration {
  min-height: 390px;
  padding: 27px;
  border: 3px solid var(--navy);
  border-radius: 20px 28px 22px 18px;
  background: repeating-linear-gradient(#fffdf5 0 34px,#d7e9f0 35px 36px);
  box-shadow: 10px 13px 0 rgba(22,63,88,.13);
  transform: rotate(-1.3deg);
  position: relative;
}
.notepad-illustration::before { content: ""; position: absolute; left: 34px; top: 0; bottom: 0; border-left: 2px solid rgba(239,111,93,.42); }
.notepad-illustration h2, .notepad-illustration p { position: relative; z-index: 2; margin-left: 23px; }
.notepad-illustration .scribble { margin: 37px 0 0 32px; font-family: Georgia, serif; font-style: italic; font-size: 1.15rem; color: #3d5966; }
.feedback-panel { padding: 24px; border: 1px solid var(--line); border-radius: 27px; background: white; box-shadow: var(--small-shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 900; font-size: .88rem; }
.field small { color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 2px solid #d8e2e5;
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}
.field textarea { min-height: 145px; resize: vertical; }
.form-note { margin: 13px 0; padding: 12px; border-radius: 14px; background: #fff6d8; color: #66501c; font-size: .82rem; }
.form-status { min-height: 24px; margin-top: 11px; font-weight: 800; }
.form-status.good { color: var(--green); }
.form-status.bad { color: var(--red); }
.turnstile-mount { min-height: 66px; display: grid; align-items: center; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.page-hero { padding: 78px 0 58px; background: linear-gradient(180deg,var(--sky),#f3f7f1); border-bottom: 1px solid var(--line); }
.page-hero-inner { width: var(--page); margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.5rem,6vw,5rem); margin-bottom: 14px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: .82rem; color: var(--muted); font-weight: 800; }
.breadcrumbs a { text-decoration: none; }
.content-card { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--small-shadow); }
.content-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.notice { padding: 14px 16px; border-radius: 15px; border-left: 5px solid var(--yellow-dark); background: #fff6d8; }
.quality-list { display: grid; gap: 12px; }
.quality-item { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: start; padding: 14px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.quality-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: white; background: var(--navy); font-weight: 900; }

.product-hero { padding: 72px 0; background: linear-gradient(135deg,#ffe4de,#fff8df 62%,#e5f6ff); }
.product-hero-inner { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: center; }
.product-ticket { padding: 26px; border: 3px solid var(--navy); border-radius: 25px; background: white; box-shadow: 10px 12px 0 rgba(22,63,88,.13); transform: rotate(1deg); }
.product-ticket h2 { font-size: 2rem; }
.product-facts { display: grid; gap: 9px; margin: 20px 0; }
.product-fact { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 8px; border-bottom: 1px dashed var(--line); font-size: .86rem; }
.product-fact strong { color: var(--muted); }

.site-footer { padding: 48px 0; background: #0f2e42; color: white; }
.footer-inner { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-nav a { color: rgba(255,255,255,.78); font-size: .84rem; text-decoration: none; }
.footer-small { color: rgba(255,255,255,.6); font-size: .78rem; }

.dialog-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 18px;
  align-items: center;
  justify-content: center;
  background: rgba(5,25,37,.64);
  backdrop-filter: blur(7px);
}
.dialog-backdrop.open { display: flex; }
.dialog { width: min(620px,100%); max-height: 90vh; overflow: auto; padding: 24px; border-radius: 26px; background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.dialog-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.dialog-close { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
.route-options { display: grid; gap: 10px; margin-top: 20px; }
.route-option { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 17px; background: white; text-decoration: none; }
.route-option:hover { border-color: var(--coral); }
.route-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--sky); color: var(--navy); font-weight: 900; }

@media (max-width: 1040px) {
  .desktop-nav a:nth-child(5), .desktop-nav a:nth-child(6) { display: none; }
  .wristbands { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .entrance-arch { opacity: .72; right: -45px; }
  .zone-pabo { left: 34%; }
}

@media (max-width: 820px) {
  :root { --page: min(100% - 24px, 720px); }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu-button { display: grid; place-items: center; }
  .hero { min-height: 630px; }
  .hero-inner { padding-top: 74px; padding-bottom: 225px; }
  .entrance-arch { width: 310px; min-width: 0; height: 250px; right: 50%; transform: translateX(50%); opacity: 1; }
  .arch-sign { width: 250px; padding: 14px; top: 40px; }
  .arch-sign strong { font-size: 1.55rem; }
  .arch-post { height: 154px; width: 34px; }
  .arch-post.left { left: 31px; }.arch-post.right { right: 31px; }
  .section { padding: 60px 0; }
  .festival-map {
    min-height: auto;
    padding: 86px 18px 120px;
    display: grid;
    gap: 16px;
  }
  .map-paths, .map-pond, .keiblij-sign, .grabbel-sign, .map-legend { display: none; }
  .map-zone { position: static; width: auto; transform: none !important; }
  .map-zone:hover { transform: translateY(-3px) !important; }
  .zone-pabo { order: 1; }.zone-vo { order: 2; }.zone-hbo { order: 3; }.zone-rafel { order: 4; }.zone-backstage { order: 5; }.zone-kladblok { order: 6; }
  .zone-pabo .zone-card::before { margin-top: -36px; }
  .cards-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split-band .section, .kladblok-grid, .product-hero-inner { grid-template-columns: 1fr; }
  .notepad-illustration { min-height: 270px; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 590px) {
  .header-inner { min-height: 64px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
  .mobile-nav { top: 64px; }
  .hero { min-height: 650px; }
  h1 { font-size: clamp(2.55rem, 15vw, 4rem); }
  .hero-actions .btn { width: 100%; }
  .wristbands, .cards-grid, .backstage-grid, .form-grid { grid-template-columns: 1fr; }
  .wristband { min-height: 220px; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 14px; }
  .field.full { grid-column: auto; }
  .tool-meta { grid-template-columns: 1fr; gap: 2px; }
  .tool-meta dt { margin-top: 7px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { gap: 8px 12px; }
  .map-wrap { width: min(100% - 10px, 560px); }
  .festival-map { border-width: 4px; border-radius: 29px; padding-left: 11px; padding-right: 11px; }
  .zone-card { box-shadow: 4px 6px 0 rgba(22,63,88,.13); }
}

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

@media print {
  .site-header, .hero-actions, .map-wrap, .feedback-panel, .site-footer, .dialog-backdrop { display: none !important; }
  body { background: white; }
  .section { width: 100%; padding: 20px 0; }
  .tool-card, .content-card { box-shadow: none; }
}
