:root {
  --navy: #142b52;
  --navy-dark: #0b1f3d;
  --yellow: #ffd34e;
  --coral: #ed6155;
  --sky: #5ec8e5;
  --cream: #fff8ea;
  --paper: #ffffff;
  --ink: #13233d;
  --muted: #536176;
  --line: #d8e0e9;
  --radius: 28px;
  --shadow: 0 18px 55px rgba(20, 43, 82, 0.12);
  font-family: "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 4px solid var(--sky);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 18px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: auto;
  color: white;
}

.wordmark {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  width: max-content;
  line-height: .85;
  text-decoration: none;
}
.wordmark span { font-size: 1.25rem; font-weight: 900; letter-spacing: -.06em; }
.wordmark b { color: var(--yellow); font-size: 1.25rem; }
.wordmark em {
  grid-column: 1 / -1;
  margin-top: 7px;
  font-size: .64rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .18em;
}
.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  min-height: 44px;
  padding: 9px 4px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}
.site-header nav a:hover { color: var(--yellow); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  min-height: 750px;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero-copy {
  align-self: center;
  width: min(690px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 130px 44px 90px 0;
}
.eyebrow, .section-kicker, .mini-label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero .eyebrow {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
}
.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  font-weight: 1000;
  line-height: .9;
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--yellow); }
.hero-lede {
  max-width: 590px;
  margin: 0 0 30px;
  color: #e4ecf6;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}
.event-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 610px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.event-facts li {
  min-height: 82px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.event-facts b, .event-facts span { display: block; }
.event-facts b { color: white; font-size: .98rem; }
.event-facts span { color: #bfcce0; font-size: .8rem; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { color: var(--navy-dark); background: var(--yellow); }
.button-primary:hover { background: #ffe077; transform: translateY(-2px); }
.button-light { color: var(--navy); background: white; }
.button-outline { color: white; border-color: rgba(255,255,255,.45); background: transparent; }
.hero-visual { position: relative; min-height: 750px; overflow: hidden; background: var(--coral); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, rgba(11,31,61,.7));
}
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.free-sticker {
  position: absolute;
  z-index: 2;
  top: 130px;
  left: clamp(18px, 2.5vw, 40px);
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 7px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-size: .88rem;
  font-weight: 1000;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 8px 0 rgba(11,31,61,.25);
}
.shape { position: absolute; z-index: 2; border-radius: 50%; }
.shape-one { right: 26px; bottom: 54px; width: 44px; height: 44px; background: var(--yellow); }
.shape-two { right: 80px; bottom: 40px; width: 20px; height: 20px; background: var(--sky); }

.section-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.intro { padding: 105px 0 80px; text-align: center; }
.intro h2, .section-heading h2, .activities h2, .practical h2, .faq h2, .cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.intro-text {
  max-width: 850px;
  margin: 30px auto;
  color: #2e3d54;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.trust-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.trust-strip span {
  padding: 9px 14px;
  border: 1px solid #e7d9bd;
  border-radius: 999px;
  color: var(--navy);
  background: #fffdf8;
  font-size: .88rem;
  font-weight: 800;
}

.character-parade {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  overflow: hidden;
  margin-top: 48px;
  padding: 18px 16px 0;
  border-radius: 28px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.character-parade::before {
  content: "ONTMOET JE HELDEN";
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: .61rem;
  font-weight: 1000;
  letter-spacing: .12em;
}
.character-parade figure {
  position: relative;
  min-width: 0;
  height: 190px;
  margin: 0;
  padding-top: 24px;
}
.character-parade figure::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 28px;
  left: 8%;
  height: 54%;
  border-radius: 50% 50% 12px 12px;
  background: rgba(255,255,255,.08);
}
.character-parade img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 140px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 9px 8px rgba(5,19,42,.28));
  transition: transform .2s ease;
}
.character-parade figure:hover img { transform: translateY(-5px); }
.character-parade figcaption {
  position: absolute;
  z-index: 2;
  right: 3px;
  bottom: 8px;
  left: 3px;
  overflow: hidden;
  color: white;
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.character-parade .parade-wide img { width: 118%; margin-left: -9%; }

.shopping {
  scroll-margin-top: 20px;
  padding: 100px 0;
  color: white;
  background: var(--navy);
}
.shopping-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
}
.shopping-intro h2 {
  max-width: 650px;
  margin: 0 0 24px;
  color: white;
  font-size: clamp(2.5rem, 4.8vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.shopping-intro > p:not(.section-kicker):not(.small-note) { color: #d8e2f0; }
.shopping-intro .section-kicker { color: var(--yellow); }
.shopping-intro .text-link { color: white; }
.shopping-intro .small-note { margin-top: 22px; color: #aebbd0; }
.shopping-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.shopping-options article {
  min-height: 210px;
  padding: 23px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.07);
}
.shopping-options article:nth-child(2) { background: var(--coral); }
.shopping-options article:nth-child(3) { color: var(--navy); background: var(--yellow); }
.shopping-options article:nth-child(4) { background: #254873; }
.shopping-options article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 35px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}
.shopping-options h3 { margin: 0 0 7px; font-size: 1.15rem; line-height: 1.15; }
.shopping-options p { margin: 0; color: inherit; font-size: .86rem; line-height: 1.45; opacity: .86; }

.program { padding: 85px 0 100px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 36px; }
.section-heading > p { max-width: 450px; margin: 0 0 5px; color: var(--muted); }
.day-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.day-tab {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 68px;
  padding: 10px 18px;
  border: 2px solid var(--line);
  border-radius: 18px;
  color: var(--navy);
  background: white;
  text-decoration: none;
}
.day-tab span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: white; background: var(--navy); font-size: .75rem; font-weight: 900; }
.day-tab.is-active { border-color: var(--navy); box-shadow: 0 7px 0 var(--navy); }
.day-tab.is-active span { color: var(--navy); background: var(--yellow); }
.day-panel {
  scroll-margin-top: 20px;
  padding: 30px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.day-panel + .day-panel { margin-top: 24px; }
.enhanced .day-panel[hidden] { display: none; }
.day-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.day-heading p { margin: 0; color: var(--coral); font-size: .8rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.day-heading h3 { margin: 0; color: var(--navy); font-size: 2.3rem; line-height: 1; letter-spacing: -.04em; }
.day-heading > span { color: var(--muted); font-size: .87rem; font-weight: 700; }
.stage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stage-card { overflow: hidden; border-radius: 20px; background: #f2f6fa; }
.stage-card h4 { display: flex; align-items: center; gap: 10px; margin: 0; padding: 16px 18px; color: white; background: var(--navy); font-size: 1rem; }
.stage-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); }
.schedule-list { margin: 0; padding: 0; list-style: none; }
.schedule-list li { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 14px; min-height: 64px; padding: 10px 18px; border-bottom: 1px solid #d9e1eb; }
.schedule-list li:last-child { border: 0; }
.schedule-list time { color: var(--coral); font-weight: 900; font-variant-numeric: tabular-nums; }
.schedule-list strong { color: var(--navy); }
.schedule-list li.has-character {
  grid-template-columns: 118px minmax(0, 1fr) 82px;
  min-height: 96px;
  padding-top: 0;
  padding-bottom: 0;
}
.schedule-portraits {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: end;
  justify-content: center;
  min-width: 74px;
  overflow: hidden;
}
.schedule-portraits::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 10px;
  left: 4px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .72;
}
.schedule-portraits img {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 92px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 5px 4px rgba(20,43,82,.2));
}
.schedule-duo { min-width: 94px; }
.schedule-duo::before { right: 0; left: 0; }
.schedule-duo img { width: 57px; }
.schedule-duo img + img { margin-left: -18px; }
.schedule-wide img { width: 94px; }
.program-note { margin: 20px 4px 0; color: var(--muted); font-size: .84rem; }

.activities { padding: 105px 0; background: white; }
.activities h2 { margin-bottom: 40px; }
.activity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.activity-card { display: grid; grid-template-columns: 42% 58%; overflow: hidden; min-height: 500px; border-radius: 30px; }
.yellow-card { background: var(--yellow); }
.blue-card { color: white; background: var(--navy); }
.activity-image { min-height: 100%; overflow: hidden; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; }
.activity-copy { padding: 36px 32px; }
.activity-copy h3 { margin: 0 0 17px; color: inherit; font-size: clamp(2rem, 3vw, 3rem); line-height: .98; letter-spacing: -.045em; }
.activity-copy p { line-height: 1.55; }
.yellow-card .mini-label { color: #8d281f; }
.blue-card .mini-label { color: var(--yellow); }
.ongoing { display: inline-block; margin-top: 13px; padding: 8px 12px; border-radius: 999px; color: white; background: var(--navy); font-size: .76rem; font-weight: 900; }
.zone-list { margin: 24px 0 0; padding: 0; list-style: none; }
.zone-list li { margin: 0 0 18px; padding-left: 18px; border-left: 4px solid var(--yellow); }
.zone-list b, .zone-list span { display: block; }
.zone-list span { color: #c9d5e7; font-size: .88rem; line-height: 1.45; }

.practical { padding: 105px 0; }
.practical-card { display: grid; grid-template-columns: 1.35fr .65fr; overflow: hidden; border-radius: 32px; background: white; box-shadow: var(--shadow); }
.practical-main { padding: 52px; }
.practical h2 { margin-bottom: 32px; }
.practical-list { margin: 0; }
.practical-list div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.practical-list dt { color: var(--muted); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.practical-list dd { margin: 0; color: var(--navy); font-weight: 800; }
.small-note { color: var(--muted); font-size: .82rem; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--navy); font-weight: 900; }
.parking-box { display: flex; flex-direction: column; justify-content: center; padding: 45px; color: white; background: var(--coral); }
.parking-box > span { display: grid; place-items: center; width: 68px; height: 68px; border: 4px solid white; border-radius: 16px; font-size: 2rem; font-weight: 900; }
.parking-box h3 { margin: 26px 0 10px; font-size: 2rem; line-height: 1.05; }
.parking-box a { font-weight: 900; }

.faq { padding: 85px 0 110px; }
.faq-list { max-width: 920px; margin: auto; }
.faq details { border-bottom: 1px solid #cfd7e0; }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { display: grid; place-items: center; flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; background: var(--yellow); font-size: 1.4rem; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 800px; margin: -5px 0 25px; color: var(--muted); }

.cta { padding: 30px 0 105px; }
.cta-card { position: relative; overflow: hidden; padding: 75px 40px; border-radius: 34px; color: white; background: var(--navy); text-align: center; }
.cta-card::before, .cta-card::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; }
.cta-card::before { top: -75px; left: -50px; background: var(--coral); }
.cta-card::after { right: -65px; bottom: -90px; background: var(--sky); }
.cta h2 { position: relative; color: white; }
.cta-card > p { position: relative; }
.cta-card .section-kicker { color: var(--yellow); }
.centered { position: relative; z-index: 2; justify-content: center; }
.share-status { min-height: 24px; color: var(--yellow); font-size: .85rem; font-weight: 800; }

footer { padding: 60px max(20px, calc((100vw - 1180px) / 2)) 90px; color: white; background: var(--navy-dark); }
.footer-inner { display: flex; justify-content: space-between; gap: 50px; }
.footer-inner > div > p { max-width: 430px; color: #aebbd0; }
.footer-mark { margin-bottom: 20px; }
.footer-inner nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; align-content: start; }
.footer-inner nav a { min-height: 44px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 45px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); color: #93a3bc; font-size: .78rem; }
.mobile-actions { display: none; }

.cookie-settings {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cookie-settings:hover { color: white; }
.cookie-settings:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 26px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 22px;
  color: white;
  background: var(--navy-dark);
  box-shadow: 0 18px 55px rgba(0,0,0,.34);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__eyebrow { margin: 0 0 4px; color: var(--yellow); font-size: .73rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.cookie-banner h2 { margin: 0 0 8px; color: white; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.15; }
.cookie-banner__copy > p:last-child { max-width: 760px; margin: 0; color: #d8e2f0; font-size: .88rem; line-height: 1.55; }
.cookie-banner a { color: white; font-weight: 800; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner .button { min-height: 48px; white-space: nowrap; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr 42%; min-height: 710px; }
  .hero-copy { padding-right: 28px; }
  .hero h1 { font-size: clamp(3.3rem, 8vw, 5.2rem); }
  .event-facts { grid-template-columns: 1fr; }
  .event-facts li { min-height: 70px; }
  .free-sticker { left: 18px; width: 105px; height: 105px; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card { min-height: 430px; }
  .shopping-layout { grid-template-columns: 1fr; }
  .practical-card { grid-template-columns: 1fr; }
  .parking-box { min-height: 360px; }
  .character-parade {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 42px;
  }
  .character-parade figure { height: 175px; }
  .character-parade img { height: 128px; }
}

@media (max-width: 660px) {
  body { font-size: 16px; padding-bottom: 66px; }
  .site-header { min-height: 72px; width: calc(100% - 32px); }
  .hero { display: flex; min-height: 0; flex-direction: column; }
  .hero-copy { order: 2; width: auto; margin: 0; padding: 34px 20px 58px; }
  .hero-visual { order: 1; height: 390px; min-height: 390px; margin-top: 72px; }
  .hero-visual img { object-position: 50% 26%; }
  .hero h1 { margin-top: 16px; font-size: clamp(3.3rem, 17vw, 5rem); }
  .hero-lede { font-size: 1.05rem; }
  .free-sticker { top: auto; bottom: 20px; left: 20px; width: 94px; height: 94px; border-width: 5px; font-size: .72rem; }
  .event-facts { grid-template-columns: 1fr 1fr; gap: 8px; }
  .event-facts li { min-height: 82px; padding: 10px 11px; }
  .event-facts b { font-size: .82rem; }
  .event-facts span { font-size: .71rem; }
  .hero .button { width: 100%; }
  .section-shell { width: calc(100% - 28px); }
  .intro, .program, .practical, .faq { padding: 68px 0; }
  .shopping { padding: 68px 0; }
  .shopping-options { grid-template-columns: 1fr; }
  .shopping-options article { min-height: 0; }
  .shopping-options article > span { margin-bottom: 24px; }
  .activities { padding: 68px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 17px; }
  .day-tabs { grid-template-columns: 1fr; }
  .day-panel { padding: 19px 14px; }
  .day-heading { display: block; }
  .day-heading > span { display: block; margin-top: 12px; }
  .stage-grid { grid-template-columns: 1fr; }
  .schedule-list li { grid-template-columns: 112px 1fr; padding-inline: 13px; }
  .schedule-list li.has-character { grid-template-columns: 96px minmax(0, 1fr) 72px; min-height: 90px; }
  .schedule-portraits { min-width: 64px; }
  .schedule-portraits img { width: 66px; height: 86px; }
  .schedule-duo { min-width: 74px; }
  .schedule-duo img { width: 48px; }
  .schedule-duo img + img { margin-left: -17px; }
  .schedule-wide img { width: 78px; }
  .character-parade {
    grid-template-columns: repeat(8, 108px);
    justify-content: start;
    overflow-x: auto;
    padding: 42px 12px 2px;
    scroll-snap-type: x proximity;
    scrollbar-color: var(--yellow) transparent;
  }
  .character-parade figure { height: 158px; scroll-snap-align: start; }
  .character-parade img { height: 115px; }
  .activity-card { grid-template-columns: 1fr; }
  .activity-image { height: 240px; }
  .blue-card .activity-image { height: 280px; }
  .activity-copy { padding: 28px 23px 34px; }
  .practical-main, .parking-box { padding: 32px 23px; }
  .practical-list div { grid-template-columns: 1fr; gap: 3px; }
  .practical .button { width: 100%; }
  .cta { padding-bottom: 70px; }
  .cta-card { padding: 60px 20px; }
  .cta .button { width: 100%; }
  .footer-inner, .footer-bottom { display: block; }
  .footer-inner nav { margin-top: 35px; }
  .footer-bottom p + p { margin-top: 20px; }
  .mobile-actions {
    position: fixed;
    z-index: 50;
    inset: auto 10px 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 54px;
    border: 2px solid white;
    border-radius: 16px;
    background: var(--navy);
    box-shadow: 0 10px 28px rgba(0,0,0,.28);
  }
  .mobile-actions a { display: grid; place-items: center; color: white; font-weight: 900; text-decoration: none; }
  .mobile-actions a:last-child { color: var(--navy); background: var(--yellow); }
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 18px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 22px 18px;
    border-radius: 18px;
  }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-banner .button { width: 100%; padding-inline: 14px; }
}

@media (prefers-reduced-motion: no-preference) {
  .button, .day-tab, .faq summary span { transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
  .hero-copy > * { animation: rise .55s both; }
  .hero-copy > *:nth-child(2) { animation-delay: .06s; }
  .hero-copy > *:nth-child(3) { animation-delay: .12s; }
  .hero-copy > *:nth-child(4) { animation-delay: .18s; }
  .hero-copy > *:nth-child(5) { animation-delay: .24s; }
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } }
}
