/* ============================================================
   Stichting de Rode Mantel
   Nachtelijke, speelse Sinterklaasstijl met de poster als basis.
   ============================================================ */

:root {
  --night: #070829;
  --night-deep: #050316;
  --purple: #22075c;
  --blue: #0966d6;
  --blue-deep: #09286f;
  --red: #c91f2b;
  --red-deep: #821018;
  --gold: #ffd94a;
  --gold-soft: #fff1a3;
  --paper: #fff8e7;
  --paper-dim: #d8ddff;
  --ink: #12091f;
  --line: rgba(255, 217, 74, 0.34);
  --line-light: rgba(255, 255, 255, 0.26);

  --maxw: 1180px;
  --radius: 8px;
  --font-display: "Cooper Black", "Cooper Std Black", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--night) 0%, #10083b 48%, #180416 100%);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 5% 13%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1.8px),
    radial-gradient(circle at 16% 7%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.6px),
    radial-gradient(circle at 27% 18%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.6px),
    radial-gradient(circle at 43% 10%, rgba(255, 217, 74, 0.58) 0 1px, transparent 1.7px),
    radial-gradient(circle at 62% 8%, rgba(255, 255, 255, 0.86) 0 1px, transparent 1.7px),
    radial-gradient(circle at 79% 15%, rgba(255, 255, 255, 0.66) 0 1px, transparent 1.6px),
    radial-gradient(circle at 93% 9%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.8px),
    radial-gradient(circle at 9% 31%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.6px),
    radial-gradient(circle at 22% 43%, rgba(255, 217, 74, 0.48) 0 1px, transparent 1.7px),
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.7px),
    radial-gradient(circle at 54% 41%, rgba(255, 255, 255, 0.64) 0 1px, transparent 1.6px),
    radial-gradient(circle at 68% 29%, rgba(255, 217, 74, 0.56) 0 1px, transparent 1.7px),
    radial-gradient(circle at 84% 38%, rgba(255, 255, 255, 0.76) 0 1px, transparent 1.7px),
    radial-gradient(circle at 98% 31%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px),
    radial-gradient(circle at 4% 57%, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.7px),
    radial-gradient(circle at 19% 66%, rgba(255, 255, 255, 0.56) 0 1px, transparent 1.5px),
    radial-gradient(circle at 31% 53%, rgba(255, 217, 74, 0.46) 0 1px, transparent 1.7px),
    radial-gradient(circle at 47% 63%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.7px),
    radial-gradient(circle at 59% 55%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.5px),
    radial-gradient(circle at 73% 69%, rgba(255, 255, 255, 0.86) 0 1px, transparent 1.7px),
    radial-gradient(circle at 88% 59%, rgba(255, 217, 74, 0.52) 0 1px, transparent 1.7px),
    radial-gradient(circle at 95% 76%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.6px),
    radial-gradient(circle at 11% 82%, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.6px),
    radial-gradient(circle at 28% 91%, rgba(255, 217, 74, 0.42) 0 1px, transparent 1.7px),
    radial-gradient(circle at 41% 79%, rgba(255, 255, 255, 0.76) 0 1px, transparent 1.7px),
    radial-gradient(circle at 66% 88%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.6px),
    radial-gradient(circle at 81% 92%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.8px),
    linear-gradient(115deg, transparent 0 35%, rgba(64, 123, 255, 0.12) 35% 39%, transparent 39% 100%),
    linear-gradient(74deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 61%, transparent 61% 100%);
  opacity: 0.75;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ---------- header / logo ---------- */
.site-header {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.site-header-home { justify-content: space-between; }
.site-header a { text-decoration: none; }

.brand-lockup {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.logo-present {
  position: absolute;
  left: 60%;
  top: 76%;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.48), 0 0 10px rgba(255, 217, 74, 0.12);
  transform: rotate(-2deg);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(180deg, #e22b35, var(--red-deep));
  border: 1px solid rgba(255, 217, 74, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@media (hover: hover) {
  .site-nav a:hover {
    color: var(--ink);
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  }
}

/* ---------- eerste scherm ---------- */
.screen {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(106deg, transparent 0 25%, rgba(82, 136, 255, 0.18) 25% 30%, transparent 30% 100%),
    linear-gradient(72deg, transparent 0 52%, rgba(255, 255, 255, 0.10) 52% 56%, transparent 56% 100%),
    linear-gradient(180deg, rgba(7, 8, 41, 0) 0 66%, rgba(0, 0, 0, 0.38) 100%);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  padding: 22px 24px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  max-width: 660px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.42);
}

.stars {
  color: #fff200;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(7, 8, 41, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 10px;
}

.hero h1 {
  max-width: 10.6ch;
  margin: 16px 0 16px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 5.1rem;
  font-weight: 900;
  line-height: 0.92;
  text-wrap: balance;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-small {
  font-size: 0.58em;
  line-height: 1;
}

.hero-intro {
  max-width: 34rem;
  color: var(--paper-dim);
  font-size: 1.22rem;
  font-weight: 650;
}

.when {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 24px;
}

.when strong,
.when span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.when strong {
  color: var(--gold-soft);
  background: none;
  font-weight: 900;
}

.when span {
  color: #ffffff;
  background: none;
  font-weight: 800;
}

.when span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- ticketknoppen ---------- */
.tickets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 580px;
}

.ticket {
  position: relative;
  display: block;
  min-height: 150px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #e9323d 0%, var(--red) 48%, var(--red-deep) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 17px 18px 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--night);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ticket::before { left: -12px; }
.ticket::after { right: -12px; }
.ticket:active { transform: scale(0.985); }

@media (hover: hover) {
  .ticket:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38), 0 0 0 4px rgba(255, 217, 74, 0.12);
  }
}

.ticket .slot {
  display: block;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket .time {
  display: block;
  margin: 6px 0 6px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
}

.ticket .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 1rem;
  font-weight: 900;
}

.ticket .arrow { transition: transform 0.14s ease; }

@media (hover: hover) {
  .ticket:hover .arrow { transform: translateX(4px); }
}

/* ---------- poster ---------- */
.poster-panel {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
  aspect-ratio: 4 / 5.25;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  background: var(--night-deep);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 0 7px rgba(255, 217, 74, 0.16);
}

.poster-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 217, 74, 0.42), inset 0 -90px 70px rgba(0, 0, 0, 0.22);
}

.poster-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.055);
  transform-origin: center top;
}

/* ---------- kleurplaat ---------- */
.kleurplaat {
  position: relative;
  z-index: 1;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 217, 74, 0.22) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fffdf3, var(--paper));
  background-size: 34px 34px, 100% 100%;
  border-top: 8px solid var(--red);
  padding: 58px 24px 64px;
}

.kleurplaat .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.kleurplaat-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  grid-template-areas:
    "copy visual"
    "button visual";
  align-items: center;
  gap: 22px 42px;
}

.kleurplaat-copy { grid-area: copy; }
.kleurplaat-visual {
  grid-area: visual;
  justify-self: center;
}

.kleurplaat-preview {
  display: block;
  width: min(180px, 100%);
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  border: 3px solid var(--blue-deep);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(18, 9, 31, 0.22);
  transform: rotate(2deg);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.kleurplaat-preview img {
  width: 100%;
  height: auto;
}

@media (hover: hover) {
  .kleurplaat-preview:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow: 0 18px 36px rgba(18, 9, 31, 0.28);
  }
}

.kleurplaat .eyebrow {
  color: #ffffff;
  background: var(--blue-deep);
  border-color: transparent;
}

.kleurplaat h2 {
  margin: 12px 0 8px;
  color: var(--red-deep);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.kleurplaat p {
  max-width: 32rem;
  color: #3a2652;
  font-size: 1.1rem;
  font-weight: 650;
}

.kp-art {
  width: 138px;
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(18, 9, 31, 0.18));
}

.btn-outline {
  grid-area: button;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 50px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #e22b35, var(--red-deep));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(130, 16, 24, 0.22);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.btn-outline svg {
  width: 21px;
  height: 21px;
  flex: none;
}

.btn-outline:active { transform: scale(0.98); }

@media (hover: hover) {
  .btn-outline:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
}

/* ---------- footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 34px 20px 42px;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 217, 74, 0.13), transparent 58%),
    linear-gradient(180deg, var(--red-deep), #4a0610);
  border-top: 2px solid var(--gold);
}

.footer-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.46fr);
  gap: 12px;
  width: min(720px, 100%);
  margin: 0 auto 22px;
}

.footer-actions-single {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.footer-panel {
  min-height: 112px;
  border: 1px solid rgba(255, 217, 74, 0.28);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 24px rgba(0, 0, 0, 0.16);
}

.donation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 217, 74, 0.16), rgba(7, 8, 41, 0.16));
}

.donation p {
  max-width: 25rem;
  color: rgba(255, 248, 231, 0.9);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.donation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 15px;
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 900;
  background: rgba(7, 8, 41, 0.18);
  border: 1.5px solid rgba(255, 217, 74, 0.72);
  border-radius: var(--radius);
  white-space: nowrap;
}

@media (hover: hover) {
  .donation-link:hover {
    color: var(--ink);
    background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  }
}

.footer-about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 900;
  background: rgba(7, 8, 41, 0.14);
  transition: background 0.12s ease, color 0.12s ease, transform 0.12s ease;
}

@media (hover: hover) {
  .footer-about-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
  }
}

.fineprint {
  color: rgba(255, 248, 231, 0.72);
  font-size: 0.9rem;
}

/* ---------- over-ons pagina ---------- */
body.doc {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

body.doc .page { flex: 1 0 auto; }
body.doc .site-header { padding-bottom: 18px; }

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 24px 42px;
}

.page h1 {
  margin: 10px 0 22px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.page .lead {
  color: var(--paper-dim);
  font-size: 1.12rem;
}

.page h2 {
  margin: 34px 0 12px;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.38rem;
  font-weight: 900;
}

.namelist {
  list-style: none;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
}

.namelist li {
  display: inline;
}

.namelist li:not(:last-child)::after {
  content: ", ";
  color: var(--paper-dim);
  font-weight: 600;
}

.namelist li:nth-last-child(2)::after {
  content: " en ";
}

.team-photo {
  border-radius: var(--radius);
  margin: 18px 0 4px;
}

.contact {
  color: var(--paper-dim);
  line-height: 1.9;
}

.contact a { color: var(--gold-soft); }

.back {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.back a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 900;
}

/* ---------- compactere schermen ---------- */
@media (min-width: 761px) and (max-width: 1050px) {
  .site-header { padding-top: 18px; }
  .logo { width: 190px; }

  .hero {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .hero h1 { font-size: 3.65rem; }
  .hero-intro { font-size: 1.05rem; }
  .stars { font-size: 1.45rem; margin-bottom: 12px; }
  .poster-panel { width: 330px; }
  .tickets { grid-template-columns: 1fr; max-width: 340px; }
  .ticket { min-height: 118px; padding: 14px 16px; }
  .ticket .time { font-size: 2.05rem; }
}

@media (max-width: 760px) {
  .site-header-home {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav { justify-content: center; }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 18px;
    gap: 22px;
    text-align: center;
  }

  .hero-copy {
    max-width: 660px;
    margin: 0 auto;
  }

  .hero h1 {
    max-width: none;
    font-size: 3.45rem;
  }

  .hero-intro { margin: 0 auto; }
  .when { justify-content: center; }

  .tickets {
    margin: 0 auto;
    max-width: 620px;
  }

  .poster-panel {
    order: -1;
    justify-self: center;
    width: min(420px, 88vw);
    aspect-ratio: 16 / 10;
  }

  .poster-panel img {
    object-position: center 46%;
    transform: none;
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }

  .site-header { padding: 10px 16px 0; }
  .site-header-home { gap: 8px; }
  .logo { width: 132px; }
  .logo-present {
    left: 60%;
    top: 75%;
    font-size: 0.62rem;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .site-nav a {
    justify-content: center;
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 10px 16px 24px;
    gap: 14px;
  }

  .poster-panel {
    width: min(360px, 94vw);
    aspect-ratio: 16 / 8.9;
  }
  .poster-panel img { object-position: center 43%; }
  .stars { font-size: 1.18rem; margin-bottom: 8px; }
  .eyebrow { min-height: 30px; font-size: 0.76rem; }

  .hero h1 {
    margin: 8px 0 8px;
    font-size: 2.08rem;
  }

  .hero-intro { display: none; }

  .when {
    gap: 8px;
    justify-content: center;
    margin: 10px 0 12px;
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .when strong,
  .when span {
    width: auto;
    justify-content: center;
  }

  .when span::before {
    width: 5px;
    height: 5px;
    margin-right: 8px;
  }

  .tickets {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 8px;
  }

  .ticket {
    min-height: 82px;
    padding: 10px 16px;
  }

  .ticket .slot { font-size: 0.72rem; }
  .ticket .time {
    margin: 3px 0 2px;
    font-size: 1.7rem;
  }
  .ticket .cta { font-size: 0.9rem; }

  .kleurplaat {
    padding: 46px 18px 52px;
  }

  .kleurplaat-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy"
      "button";
    text-align: center;
    gap: 18px;
  }

  .kleurplaat h2 { font-size: 2rem; }
  .kleurplaat p { margin: 0 auto; }
  .kleurplaat-preview { width: 138px; }
  .btn-outline { width: 100%; }

  .site-footer { padding: 30px 18px 38px; }
  .footer-actions,
  .footer-actions-single {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-panel { min-height: auto; }
  .donation {
    flex-direction: column;
    align-items: center;
    padding: 18px 16px;
    text-align: center;
  }
  .footer-about-link {
    min-height: 54px;
  }

  .page {
    padding: 8px 20px 36px;
  }

  .page h1 { font-size: 2.45rem; }
}

@media (max-width: 620px) and (max-height: 720px) {
  .site-header { padding-top: 6px; }
  .site-header-home { gap: 6px; }
  .logo { width: 108px; }
  .logo-present { font-size: 0.52rem; }

  .site-nav a {
    min-height: 30px;
    padding: 5px 6px;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 8px;
    padding-bottom: 18px;
    gap: 8px;
  }

  .poster-panel {
    width: min(330px, 92vw);
    aspect-ratio: 16 / 8.35;
    border-width: 3px;
  }

  .poster-panel img { object-position: center 44%; }

  .stars,
  .hero-copy > .eyebrow {
    display: none;
  }

  .hero h1 {
    margin: 4px 0 6px;
    font-size: 1.88rem;
  }

  .title-small { font-size: 0.56em; }

  .when {
    margin: 4px 0 8px;
    font-size: 0.82rem;
  }

  .tickets { gap: 7px; }

  .ticket {
    min-height: 72px;
    padding: 8px 14px;
  }

  .ticket .slot { font-size: 0.68rem; }
  .ticket .time {
    margin: 2px 0 1px;
    font-size: 1.48rem;
  }
  .ticket .cta { font-size: 0.84rem; }
}

@media (min-width: 901px) and (max-height: 760px) {
  .site-header { padding-top: 16px; }
  .logo { width: 178px; }
  .hero {
    min-height: calc(100svh - 92px);
    padding-top: 14px;
    padding-bottom: 28px;
  }
  .hero h1 { font-size: 4.1rem; }
  .hero-intro { font-size: 1.04rem; }
  .stars { font-size: 1.42rem; margin-bottom: 12px; }
  .poster-panel { width: min(350px, 100%); }
  .ticket { min-height: 128px; }
  .ticket .time { font-size: 2.12rem; }
}

/* ---------- respecteer bewegingsvoorkeur ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
