/* ============================================================
   Fijnbakkerij Bouman — base layer
   Tokens · typography · layout · chrome (topbar / header / footer
   / buttons / dividers / mobile). Two switchable directions:
   [data-direction="editorial"] (default) and ="minimal".
   ============================================================ */

/* ---- Tokens : Warm Artisan Editorial (default) ------------- */
:root {
  --bg:        #FAF5EC;
  --surface:   #F0E6D6;
  --surface-2: #EADCC6;
  --ink:       #3B2A1D;
  --ink-soft:  #6B4A2E;
  --ink-mute:  #8a7359;
  --accent:    #C68A33;
  --accent-2:  #8F6120;
  --berry:     #9E3B34;
  --line:      #D8C7AE;
  --line-soft: #e6dac4;

  /* sterren blijven amber in elke variant; goud-op-donker krijgt per
     variant een eigen leesbare tint (bband/seal/footerkoppen) */
  --star:      #E8A33D;
  --accent-on-dark: #e7be78;

  --btn-bg:    var(--accent);
  --btn-ink:   #2c1f12;
  --btn-radius: 999px;
  --chip-bg:   color-mix(in srgb, var(--accent) 20%, var(--bg));

  --radius:    18px;
  --radius-sm: 12px;
  --shadow:    0 26px 50px -28px rgba(59,42,29,.36);
  --shadow-sm: 0 10px 26px -16px rgba(59,42,29,.32);
  --shadow-lift: 0 34px 60px -30px rgba(59,42,29,.42);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(84px, 10vw, 152px);

  --grain-opacity: .35;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --display-wght: 400;
  --display-track: -0.01em;
  --display-soft: 0;
  --eyebrow-track: 0.22em;

  color-scheme: light;
}

/* ---- Tokens : Premium Patisserie / Minimal ---------------- */
[data-direction="minimal"] {
  --bg:        #FCFBF8;
  --surface:   #F4F0E8;
  --surface-2: #ECE6DA;
  --ink:       #20160e;
  --ink-soft:  #5c5249;
  --ink-mute:  #9a9087;
  --line:      #E7E0D4;
  --line-soft: #efe9df;

  --btn-bg:    var(--ink);
  --btn-ink:   #FCFBF8;
  --btn-radius: 2px;
  --chip-bg:   color-mix(in srgb, var(--accent) 16%, var(--bg));

  --radius:    3px;
  --radius-sm: 2px;
  --shadow:    0 1px 0 rgba(32,22,14,.06);
  --shadow-sm: 0 1px 0 rgba(32,22,14,.05);
  --shadow-lift: 0 24px 50px -34px rgba(32,22,14,.40);

  --maxw: 1240px;
  --section-y: clamp(96px, 12vw, 184px);

  --grain-opacity: .35;

  --display-wght: 360;
  --display-track: -0.02em;
  --display-soft: 0;
  --eyebrow-track: 0.34em;
}

/* ---- Tokens : Bouman-rood & echt merk (variant A) ----------- */
/* Het echte merk: logo- en gevelrood als accent op de warme cream-basis.
   Twee tinten: --accent voor vlakken/knoppen, --accent-2 voor kleine
   tekst op cream (AA-contrast). */
[data-direction="bouman"] {
  --accent:    #D21F1F;
  --accent-2:  #A31716;
  --berry:     #8C1F1B;

  --btn-bg:    var(--accent);
  --btn-ink:   #FFF6EA;
  --chip-bg:   color-mix(in srgb, var(--accent) 9%, var(--bg));

  --accent-on-dark: #F0937F;
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- Accessibility: keyboard focus + skip link ------------ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.cine__btn:focus-visible, .linkarrow:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.on-dark :focus-visible, .cine__btn--o:focus-visible, .bread-hero :focus-visible { outline-color: #f7eedd; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 9999;
  background: var(--ink); color: var(--bg); font-weight: 600; font-size: 0.92rem;
  padding: 11px 18px; border-radius: 10px; box-shadow: var(--shadow);
  transform: translateY(-160%); transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 2px; }

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--display-wght);
  letter-spacing: var(--display-track);
  line-height: 1.04;
  margin: 0;
  font-variation-settings: "SOFT" var(--display-soft), "WONK" 0, "opsz" 144;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

.display {
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  line-height: 0.98;
}
.h-xl { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.h-lg { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.h-md { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.12; }

.lead {
  font-size: clamp(1.12rem, 1.5vw, 1.36rem);
  line-height: 1.55;
  color: var(--ink-soft);
}
.muted { color: var(--ink-mute); }
.serif { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-track);
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

/* ---- Layout ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: clamp(48px, 6vw, 84px); }
.bg-surface { background: var(--surface); }
.bg-ink { background: var(--ink); color: var(--bg); }
.bg-ink .lead, .bg-ink .muted { color: rgba(250,245,236,.74); }
.bg-ink .eyebrow { color: var(--accent-on-dark); }

.stack { display: flex; flex-direction: column; }
.stack-sm > * + * { margin-top: 0.6rem; }
.stack-md > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 1.8rem; }
.center { text-align: center; }
.measure { max-width: 56ch; }
.measure-sm { max-width: 44ch; }
.row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  --_bg: var(--btn-bg);
  --_ink: var(--btn-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.92em 1.5em;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  border-radius: var(--btn-radius);
  border: 1.5px solid transparent;
  background: var(--_bg);
  color: var(--_ink);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 1.1em; height: 1.1em; }

.btn--primary { box-shadow: 0 12px 26px -14px color-mix(in srgb, var(--btn-bg) 80%, transparent); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--ink); background: transparent; }
.bg-ink .btn--outline { color: var(--bg); border-color: rgba(250,245,236,.34); }
.btn--ghost { background: transparent; color: var(--ink); padding-inline: 0.4em; }

.btn--lg { padding: 1.08em 1.9em; font-size: 1.02rem; }
.btn--sm { padding: 0.66em 1.1em; font-size: 0.86rem; }

.linkarrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-2);
}
.linkarrow .ic { width: 1em; height: 1em; transition: transform .25s; }
.linkarrow:hover .ic { transform: translateX(4px); }

/* ---- Pills / tags ----------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.45em 0.9em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 60%, transparent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.tag .ic { width: 1.05em; height: 1.05em; color: var(--accent-2); }
.tag--berry { color: var(--berry); border-color: color-mix(in srgb, var(--berry) 30%, var(--line)); }
.tag--berry .ic { color: var(--berry); }

.rating {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.9rem; color: var(--ink-soft);
}
.rating .stars { color: var(--star); display: inline-flex; gap: 1px; }
.rating .stars .ic { width: 1.05em; height: 1.05em; }

/* ---- Icons ------------------------------------------------ */
.ic { width: 1.25em; height: 1.25em; display: inline-block; fill: none;
      stroke: currentColor; stroke-width: 1.7; stroke-linecap: round;
      stroke-linejoin: round; vertical-align: middle; flex: none; }
.ic-fill { fill: currentColor; stroke: none; }

/* ---- Topbar ----------------------------------------------- */
.topbar {
  background: var(--ink);
  color: rgba(250,245,236,.82);
  font-size: 0.82rem;
  position: relative;
  z-index: 60;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 38px; padding-block: 6px;
}
.topbar a { display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar .ic { width: 1em; height: 1em; color: var(--accent-on-dark); }
.topbar .hours { letter-spacing: 0.01em; white-space: nowrap; }
.topbar .dot { opacity: .4; }
@media (max-width: 880px) { .topbar .hours { display: none; } }
/* live open/closed status — dot signals state, text inherits topbar colour */
.shop-status { display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap; }
.shop-status .status-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; background: currentColor; opacity: .45; }
.shop-status.is-open .status-dot { background: #5cb46c; opacity: 1; box-shadow: 0 0 0 3px rgba(92,180,108,.22); }
.shop-status.is-closed .status-dot { background: #d98a5a; opacity: 1; }
@media (max-width: 880px) { .shop-status .status-text { display: none; } }

/* ---- Header ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(59,42,29,.5);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  flex: none; border: 1.5px solid var(--accent);
}
[data-direction="minimal"] .brand-mark { border-radius: 2px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b {
  font-family: var(--font-display); font-weight: 500; font-size: 1.16rem;
  letter-spacing: -0.01em;
}
.brand-text span {
  font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink-mute); font-weight: 600; white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding-block: 4px; transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.2,.7,.3,1);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none; appearance: none; border: 1px solid var(--line);
  background: transparent; color: var(--ink); width: 46px; height: 46px;
  border-radius: var(--radius-sm); cursor: pointer; place-items: center;
}
.menu-toggle .ic { width: 1.4em; height: 1.4em; }

@media (max-width: 940px) {
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: grid; }
}

/* ---- Mobile drawer ---------------------------------------- */
.drawer {
  position: fixed; inset: 0; z-index: 80; visibility: hidden;
}
.drawer__scrim {
  position: absolute; inset: 0; background: rgba(28,18,10,.5);
  opacity: 0; transition: opacity .3s;
}
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
  background: var(--bg); border-left: 1px solid var(--line);
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .36s cubic-bezier(.3,.8,.3,1);
  overflow-y: auto;
}
.drawer.open { visibility: visible; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer__close {
  appearance: none; border: 1px solid var(--line); background: transparent;
  color: var(--ink); width: 44px; height: 44px; border-radius: var(--radius-sm);
  cursor: pointer; display: grid; place-items: center;
}
.drawer__panel nav { display: flex; flex-direction: column; }
.drawer__panel nav a {
  padding: 14px 4px; font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 460; border-bottom: 1px solid var(--line-soft); color: var(--ink);
}
.drawer__panel nav a:last-of-type { border-bottom: 0; }
.drawer__panel .btn { margin-top: 16px; }
.drawer__contact { margin-top: auto; padding-top: 20px; font-size: 0.9rem; color: var(--ink-soft); }
.drawer__contact a { display: flex; align-items: center; gap: 0.5em; padding: 4px 0; }
.drawer__contact .ic { color: var(--accent-2); width: 1.05em; height: 1.05em; }

/* ---- Dividers (craft motif) ------------------------------- */
/* A divider sits on the cream background, immediately before a coloured
   section — its scalloped bumps rise into the cream above. */
.divider { position: relative; height: 0; z-index: 1; pointer-events: none; }

[data-divider="scallop"] .divider {
  height: 22px;
  background-image: radial-gradient(circle at 11px 22px, var(--surface) 11px, transparent 11.5px);
  background-size: 22px 22px;
  background-repeat: repeat-x;
  background-position: 0 0;
}
[data-divider="scallop"] .divider.to-ink {
  background-image: radial-gradient(circle at 11px 22px, var(--ink) 11px, transparent 11.5px);
}

[data-divider="wheat"] .divider {
  height: 46px; display: grid; place-items: center;
}
[data-divider="wheat"] .divider::after {
  content: ""; width: min(520px, 64%); height: 24px;
  background: var(--line);
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='24'%3E%3Cpath d='M23 3 L23 21 M23 9 q-7 -2 -10 -6 M23 9 q7 -2 10 -6 M23 15 q-7 -2 -10 -6 M23 15 q7 -2 10 -6' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/46px 24px no-repeat,
    linear-gradient(#000,#000) left center/calc(50% - 38px) 1px no-repeat,
    linear-gradient(#000,#000) right center/calc(50% - 38px) 1px no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='24'%3E%3Cpath d='M23 3 L23 21 M23 9 q-7 -2 -10 -6 M23 9 q7 -2 10 -6 M23 15 q-7 -2 -10 -6 M23 15 q7 -2 10 -6' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/46px 24px no-repeat,
    linear-gradient(#000,#000) left center/calc(50% - 38px) 1px no-repeat,
    linear-gradient(#000,#000) right center/calc(50% - 38px) 1px no-repeat;
}
[data-divider="none"] .divider { height: clamp(8px, 2vw, 28px); }

/* ---- Footer ----------------------------------------------- */
.site-footer {
  background: var(--ink); color: rgba(250,245,236,.78);
  position: relative; z-index: 1;
  padding-block: clamp(56px, 7vw, 92px) 32px;
}
.site-footer .brand-text b, .site-footer .brand-mark { color: var(--bg); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent-on-dark);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(250,245,236,.78); font-size: 0.95rem; }
.footer-col p { font-size: 0.95rem; line-height: 1.7; }
.footer-contact a { display: flex; gap: 0.6em; align-items: flex-start; }
.footer-contact .ic { color: var(--accent-on-dark); margin-top: 0.2em; width: 1.05em; height: 1.05em; }
.footer-socials { display: flex; gap: 10px; margin-top: 6px; }
.footer-socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(250,245,236,.2); color: rgba(250,245,236,.82);
}
[data-direction="minimal"] .footer-socials a { border-radius: 2px; }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 24px;
  border-top: 1px solid rgba(250,245,236,.14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.84rem; color: rgba(250,245,236,.55);
}
.footer-credit a { color: rgba(250,245,236,.72); font-weight: 600; }
.footer-credit a:hover { color: #fff; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Mobile sticky order bar ------------------------------ */
.orderbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  gap: 10px; align-items: center;
}
.orderbar .btn { flex: 1; }
.orderbar .btn--outline { flex: 0 0 auto; width: 52px; padding: 0; height: 52px; }
@media (max-width: 940px) {
  .orderbar { display: flex; }
  body { padding-bottom: 84px; }
}

/* ---- Reveal animation ------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
/* self-heal: JS force-settles after the entrance window so content can never
   stay hidden in a throttled/backgrounded tab or a static capture. */
.reveal.settled { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- image-slot theming ----------------------------------- */
image-slot {
  color: var(--ink-mute);
  font-family: var(--font-body) !important;
}
image-slot::part(frame) {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in srgb, var(--accent) 9%, var(--surface)) 0 14px,
      var(--surface) 14px 28px);
}
.on-dark image-slot::part(frame) {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, rgba(255,255,255,.02) 14px 28px);
}

/* ---- Echt merk: logo in header/footer ---------------------- */
.brand-logo { height: 44px; width: auto; display: block; }
.site-footer .brand-logo { height: 40px; }
@media (max-width: 560px) { .brand-logo { height: 38px; } }

/* ---- Vakantiemelding ---------------------------------------- */
/* Datumgestuurd (site.js): kondigt de zomersluiting aan en verdwijnt
   na afloop vanzelf. */
.vakantie-note {
  background: var(--berry); color: #FFF6EA;
  font-size: 0.92rem; font-weight: 600; text-align: center;
  padding: 10px clamp(16px, 4vw, 28px); line-height: 1.45;
  position: relative; z-index: 55;
}
.vakantie-note b { font-weight: 700; }
