/* infodag.css — PuurSpanje Infodagen Best, juni 2026
   Hi-fi brand styling. Headings: Big Shoulders Display (navy).
   Body: Inter. Accent/CTA: orange. Non-white sections: light blue. */

:root {
  --orange: #d5610a;
  --orange-dark: #b8500a;
  --navy: #033a4e;
  --navy-700: #0a2c3b;
  --band: #eaf8ff;
  --ink: #26343a;
  --ink-soft: #5b6b72;
  --line: #d7e3e8;
  --line-strong: #b9ccd4;
  --white: #fff;
  --ok: #1f8a5b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(3, 58, 78, .06), 0 2px 8px rgba(3, 58, 78, .05);
  --shadow-md: 0 6px 22px rgba(3, 58, 78, .10);
  --shadow-lg: 0 18px 50px rgba(3, 58, 78, .16);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 90px);
  --header-h: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.no-scroll {
  overflow: hidden;
}

/* ── typography ─────────────────────────────────────────── */
h1,
h2,
h3,
.display {
  font-family: "Big Shoulders Display", "Inter", sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: .005em;
  margin: 0;
  text-wrap: balance;
  padding-bottom: .02em;
}

h1 {
  font-size: clamp(34px, 6.2vw, 60px);
}

h2 {
  font-size: clamp(28px, 4.6vw, 46px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.lead {
  font-size: clamp(17px, 2.1vw, 20px);
  color: var(--ink-soft);
  line-height: 1.55;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ── layout helpers ─────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(48px, 8vw, 96px);
}

.section--band {
  background: var(--band);
}

.section--navy {
  background: var(--navy);
  color: #dceaf0;
}

.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section__head {
  max-width: 680px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section--center .section__head {
  margin-inline: auto;
  text-align: center;
}

.section--center .eyebrow {
  justify-content: center;
}

/* ── buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(213, 97, 10, .28);
}

.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 22px rgba(213, 97, 10, .34);
}

.btn--ghost {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn--ghost:hover {
  background: rgba(213, 97, 10, .07);
}

.btn--white {
  background: #fff;
  color: var(--orange);
}

.btn--white:hover {
  background: #fff7f0;
}

.btn--lg {
  padding: 19px 34px;
  font-size: 18px;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

/* ── header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header__logo {
  height: 26px;
  width: auto;
}

.site-header .btn {
  padding: 11px 20px;
  font-size: 14px;
}

.site-header__link-mobile {
  display: none;
}


/* ── hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(86vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 60% center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(3, 28, 40, .86) 0%, rgba(3, 28, 40, .62) 42%, rgba(3, 28, 40, .18) 72%, transparent 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
}

.hero__copy {
  max-width: 620px;
  padding-block: clamp(48px, 9vw, 90px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 22px;
}

.hero .lead {
  color: rgba(255, 255, 255, .92);
  margin-bottom: 26px;
  max-width: 520px;
}

.hero__ticks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero__cta-note {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}

.hero__badge {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

/* tick row */
.tick {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 500;
}

.tick svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--orange);
}

.hero .tick svg {
  color: #fff;
}

.tick--lg {
  font-size: 16px;
  font-weight: 600;
}

/* ── trust strip ────────────────────────────────────────── */
.trust {
  background: var(--navy);
  color: #cfe2ea;
}

.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding-block: 20px;
}

.trust__item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #eaf6fb;
}

.trust__item svg {
  color: var(--orange);
  flex: 0 0 auto;
}

/* ── topic cards ────────────────────────────────────────── */
.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--band);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}

/* ── split (voor wie / social) ──────────────────────────── */
.split {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.split--media-right {
  direction: ltr;
}

.media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--band);
}

.section--center .media {
  margin-bottom: 30px;
}


.media image-slot,
.media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 8px;
}

/* ── stats ──────────────────────────────────────────────── */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px 56px;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat__n {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--orange);
  line-height: 1;
}

.section--navy .stat__n {
  color: #ff8a3d;
}

.stat__l {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.section--navy .stat__l {
  color: #a9c6d2;
}

/* ── reviews ────────────────────────────────────────────── */
.reviews {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.review__stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 15px;
}

.review p {
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
}

.review__by {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--band);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  object-fit: cover;
}

.review__name {
  font-weight: 700;
  font-size: 14px;
}

.review__src {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ── practical + form grid ──────────────────────────────── */
.book {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.factlist {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fact {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 20px;
  border-bottom: 1px solid var(--line);
}

.fact:last-child {
  border-bottom: 0;
}

.fact__ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--band);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.fact__ic svg {
  width: 20px;
  height: 20px;
}

.fact__k {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}

.fact__v {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding-left: 10px;
}

.scarcity {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  background: #fff4ea;
  border: 1px solid #f3d2b0;
  color: #9a4a06;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

/* ── booking form ───────────────────────────────────────── */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-card__head {
  padding: 24px 26px 0;
}

.steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 4px;
}

.step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.step__n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  background: #fff;
  transition: all .2s ease;
}

.step.is-active {
  color: var(--navy);
}

.step.is-active .step__n {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.step.is-done .step__n {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.steps__bar {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
}

.form-card__body {
  padding: 22px 26px 26px;
}

.panel {
  display: none;
}

.panel.is-active {
  display: block;
  animation: fade .25s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.daytabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.daytab {
  flex: 1;
  border: 2px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  text-align: center;
  transition: all .15s ease;
  font-family: inherit;
}

.daytab:hover:not(:disabled) {
  border-color: var(--line-strong);
}

.daytab.is-on {
  border-color: var(--orange);
  background: #fff7f0;
}

.daytab__d {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.daytab__date {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 3px;
}

.daytab:disabled {
  opacity: .55;
  cursor: not-allowed;
  background: #f4f7f9;
}

.daytab.is-full .daytab__d {
  color: var(--ink-soft);
}

.daytab__full {
  display: inline-block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #b3261e;
}

.slotgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
}

.slot {
  position: relative;
  border: 2px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: all .14s ease;
}

.slot:hover:not(:disabled) {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.slot.is-on {
  border-color: var(--orange);
  background: #fff7f0;
  color: #000;
  box-shadow: 0 6px 14px rgba(213, 97, 10, .3);
}

.slot__t {
  font-weight: 700;
  font-size: 16px;
}

.slot__left {
  display: block;
  font-size: 11px;
  margin-top: 2px;
  color: var(--ink-soft);
  font-weight: 600;
}

.slot.is-on .slot__left {
  color: rgba(255, 255, 255, .85);
}

.slot.is-soon .slot__left {
  color: #b3261e;
}

.slot:disabled {
  cursor: not-allowed;
  background: #f4f7f9;
  color: var(--ink-soft);
  border-color: var(--line);
}

.slot:disabled .slot__t {
  text-decoration: line-through;
  opacity: .7;
}

.slot__vol {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #b3261e;
  margin-top: 2px;
}

.empty-note {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 14px;
  background: #f4f7f9;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* fields */
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.field label .opt {
  color: var(--ink-soft);
  font-weight: 500;
}

.field input,
.field select {
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border .15s ease;
  width: 100%;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
}

.field input.invalid,
.field select.invalid {
  border-color: #d9412f;
  background: #fef6f5;
}

.field__err {
  font-size: 12.5px;
  color: #d9412f;
  font-weight: 600;
  min-height: 0;
  display: none;
}

.field.show-err .field__err {
  display: block;
}

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.form-foot .muted {
  font-size: 13px;
  color: var(--ink-soft);
}

.chosen-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--band);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.chosen-pill button {
  background: none;
  border: 0;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 0;
}

.linkback {
  background: none;
  border: 0;
  color: var(--orange);
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* success */
.success {
  text-align: center;
  padding: 14px 10px 6px;
}

.success__ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e7f6ee;
  color: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success h3 {
  margin-bottom: 10px;
}

.success__detail {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--band);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  margin: 16px 0;
  text-align: left;
}

.success__detail b {
  color: var(--navy);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qa {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.qa__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.qa__sign {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform .2s ease;
  color: var(--orange);
}

.qa.is-open .qa__sign {
  transform: rotate(45deg);
}

.qa__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.qa__a-inner {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

/* ── final CTA ──────────────────────────────────────────── */
.final {
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.final h2 {
  color: #fff;
  margin-bottom: 14px;
}

.final p {
  color: rgba(255, 255, 255, .92);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 26px;
}

/* ── footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-700);
  color: #9fb9c4;
  padding-block: 40px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.site-footer__logo {
  height: 26px;
}

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

.site-footer a {
  font-size: 14px;
  color: #bcd2db;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__legal {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 26px;
  padding-top: 18px;
  font-size: 13px;
  color: #7795a3;
}

/* ── sticky mobile CTA ──────────────────────────────────── */
.mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(3, 58, 78, .1);
}

.mobilebar.show {
  display: flex;
}

.mobilebar__txt {
  flex: 1;
  min-width: 0;
}

.mobilebar__k {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
}

.mobilebar__v {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.mobilebar .btn {
  padding: 13px 20px;
  font-size: 15px;
}

/* ── video container ────────────────────────────────────── */
.video-wrapper {
  margin-top: 48px;
  width: 100%;
}

.video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── responsive ─────────────────────────────────────────── */
@media (max-width:880px) {
  .book {
    grid-template-columns: 1fr;
  }

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

  .split .media {
    order: -1;
  }
}

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

  .hero {
    background: var(--navy);
  }

  .hero__bg,
  .hero__scrim {
    display: none;
  }

  .hero__ticks {
    grid-template-columns: 1fr;
    gap: 9px;
  }

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

  .mobilebar.show {
    display: flex;
  }

  .site-header .btn {
    display: none;
  }

  .site-header__link-mobile {
    display: inline-flex;
    align-items: center;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
  }

  .site-header__link-mobile:hover {
    color: var(--orange-dark);
  }

  .site-header__link-mobile:active {
    transform: translateY(1px);
  }

  .stats {
    gap: 26px 38px;
  }
}

@media (min-width:641px) {
  .mobilebar {
    display: none !important;
  }
}

/* ── Beheer panel ───────────────────────────────────────── */
#beheerRoot {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

#beheerRoot.is-open {
  pointer-events: auto;
}

.beheer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 28, 40, .5);
  opacity: 0;
  transition: opacity .25s ease;
}

#beheerRoot.is-open .beheer__overlay {
  opacity: 1;
}

.beheer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  max-height: 100dvh;
  width: min(460px, 100%);
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

#beheerRoot.is-open .beheer__panel {
  transform: none;
}

.beheer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px 14px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.beheer__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

.beheer__head h3 {
  margin: 2px 0 0;
}

.beheer__x {
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0 4px;
}

.beheer__hint {
  padding: 14px 24px 0;
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  flex-shrink: 0;
}

.beheer__body {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 18px 24px;
}

.beheer__day {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.beheer__day+.beheer__day {
  margin-top: 18px;
}

.beheer__day.is-off {
  opacity: .62;
}

.beheer__dayhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--band);
  border-bottom: 1px solid var(--line);
}

.beheer__dayname {
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.beheer__daymeta {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.beheer__slots {
  padding: 6px 16px 12px;
}

.beheer__slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}

.beheer__slot:last-child {
  border-bottom: 0;
}

.beheer__slot.off .beheer__time {
  color: var(--ink-soft);
  text-decoration: line-through;
}

.beheer__time {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  width: 52px;
  flex: 0 0 auto;
}

/* segmented toggle */
.seg {
  display: inline-flex;
  background: #eef3f5;
  border-radius: 999px;
  padding: 3px;
  flex: 0 0 auto;
}

.seg button {
  border: 0;
  background: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all .15s ease;
}

.seg button.on {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.seg button[data-v="vol"].on {
  color: #b3261e;
}

.seg--sm button {
  padding: 6px 11px;
  font-size: 12.5px;
}

.beheer__foot {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.beheer__foot .btn {
  flex: 1;
  padding: 13px;
  font-size: 15px;
}

.beheer__note {
  margin: 0;
  padding: 0 24px 20px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.5;
  flex-shrink: 0;
}

/* Standalone admin page (beheer.html — not linked publicly) */
.beheer-page {
  background: var(--band);
  min-height: 100dvh;
}

#beheerRoot.beheer--standalone {
  position: static;
  inset: auto;
  pointer-events: auto;
  padding: clamp(16px, 4vw, 32px) 16px clamp(24px, 6vw, 48px);
}

#beheerRoot.beheer--standalone .beheer__panel {
  position: static;
  transform: none;
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: none;
  min-height: 0;
  margin: 0 auto;
  overflow: visible;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

#beheerRoot.beheer--standalone .beheer__body {
  overflow: visible;
}

.beheer__back {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 0;
}

.beheer__back:hover {
  color: var(--orange);
}

.beheer__foot .btn {
  flex: 1;
  padding: 13px;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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