/* ==========================================================================
   Praktijk voor Mesologie Lelystad — publieke stylesheet
   Kleuren komen uit de adminomgeving en worden als CSS-variabelen ingevoegd.
   ========================================================================== */

:root {
  --c-primary: #245894;
  --c-accent: #e57200;
  --c-accent-strong: #b45c00;
  --c-dark: #2b2f33;

  --c-ink: #23272b;
  --c-ink-soft: #565f68;
  --c-line: #e2e6ea;
  --c-surface: #ffffff;
  --c-surface-alt: #f5f7f9;

  --wrap: 1180px;
  --wrap-text: 760px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgb(16 24 32 / .06), 0 2px 8px rgb(16 24 32 / .05);
  --shadow-md: 0 4px 12px rgb(16 24 32 / .08), 0 12px 32px rgb(16 24 32 / .08);
  --header-h: 92px;

  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1.0625rem, .35vw + 1rem, 1.125rem);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 600; letter-spacing: -.012em; }
p, ul, ol, dl, figure, table { margin: 0 0 1.15em; }
a { color: var(--c-primary); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--c-accent-strong); }
hr { border: 0; border-top: 1px solid var(--c-line); margin: 2rem 0; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--c-primary); color: #fff; padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 600; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* -------------------------------------------------------------- Layout -- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--text { width: min(100% - 2.5rem, var(--wrap-text)); }
@media (min-width: 700px) { .wrap { width: min(100% - 4rem, var(--wrap)); }
  .wrap--text { width: min(100% - 4rem, var(--wrap-text)); } }

.section { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section + .section { padding-top: 0; }
.section--cta, .section--cards, .section--features, .section--contact { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section + .section--cta, .section + .section--cards { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.section--alt { background: var(--c-surface-alt); }

.section__title {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.05rem);
  color: var(--c-accent);
  margin-bottom: .75rem;
  position: relative;
  padding-bottom: .7rem;
}
.section__title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 56px; height: 3px; background: var(--c-accent); border-radius: 2px;
}
.section__head { margin-inline: auto; margin-bottom: 2rem; padding-inline: 0; }
.section__intro { color: var(--c-ink-soft); font-size: 1.05em; }

/* --------------------------------------------------------------- Knoppen */
.btn {
  --btn-bg: var(--c-primary);
  --btn-fg: #fff;
  --btn-border: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .7rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-border); border-radius: var(--radius);
  font: inherit; font-weight: 600; line-height: 1.2; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { color: var(--btn-fg); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.btn:active { transform: none; }
.btn--sm { min-height: 42px; padding: .45rem 1.05rem; font-size: .95rem; }
.btn--primary { --btn-bg: var(--c-primary); --btn-border: var(--c-primary); }
.btn--primary:hover { --btn-bg: #1c4676; }
.btn--accent { --btn-bg: var(--c-accent-strong); --btn-border: var(--c-accent-strong); }
.btn--accent:hover { --btn-bg: #914a00; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-primary); --btn-border: currentColor; }
.btn--ghost:hover { --btn-bg: rgb(36 88 148 / .07); }
.btn--invert { --btn-fg: #fff; }
.btn--invert:hover { --btn-bg: rgb(255 255 255 / .14); }

.linkbutton {
  background: none; border: 0; padding: 0; font: inherit; color: inherit;
  text-decoration: underline; text-underline-offset: .18em; cursor: pointer;
}

/* --------------------------------------------------------------- Header -- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  min-height: var(--header-h);
  padding-block: .6rem;
}
/* De kopbalk mag breder zijn dan de tekstkolom: logo, praktijknaam en menu
   hebben meer ruimte nodig dan de inhoud eronder. */
.site-header .wrap { max-width: 1280px; }

/* Balk met praktijknaam en contactgegevens, boven de navigatie. */
.topbar { background: var(--c-primary); color: rgb(255 255 255 / .92); font-size: .86rem; }
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .15rem 1.5rem; padding-block: .45rem;
}
.topbar p { margin: 0; }
.topbar__name { font-weight: 600; color: #fff; letter-spacing: .01em; }
.topbar__sub { font-weight: 400; color: rgb(255 255 255 / .8); }
.topbar__contact { display: flex; align-items: center; gap: .5rem; white-space: nowrap; }
.topbar__contact a { color: rgb(255 255 255 / .92); text-decoration: none; }
.topbar__contact a:hover { color: #fff; text-decoration: underline; }
.topbar__dot { color: rgb(255 255 255 / .55); }
.topbar :focus-visible { outline-color: #fff; }
@media (max-width: 559px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__sub { display: none; }
}

.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; color: inherit; flex: none;
}
.brand__logo { width: auto; height: clamp(38px, 3.6vw, 50px); flex: none; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 48px; padding: .5rem .9rem;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  font: inherit; font-weight: 600; color: var(--c-ink); cursor: pointer;
}
/* Op zeer smalle schermen (320 px) past 'Menu' er niet naast het logo.
   De tekst blijft wel bestaan voor schermlezers. */
@media (max-width: 399px) {
  .nav-toggle__label {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap;
  }
  .nav-toggle { padding: .5rem .7rem; }
}
.nav-toggle__bars { display: grid; gap: 4px; width: 20px; }
.nav-toggle__bars span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav__list { list-style: none; margin: 0; padding: 0; }
.site-nav__link {
  display: flex; align-items: center; gap: .35rem;
  padding: .6rem .2rem; background: none; border: 0;
  font: inherit; font-weight: 600; color: var(--c-ink);
  text-decoration: none; cursor: pointer;
}
.site-nav__link:hover, .site-nav__link.is-active { color: var(--c-accent-strong); }
.site-nav__item.is-active > .site-nav__link { color: var(--c-accent-strong); }
.chev { transition: transform .2s ease; flex: none; }
[aria-expanded="true"] > .chev { transform: rotate(180deg); }

.submenu { list-style: none; margin: 0; padding: 0; }
.submenu__link {
  display: block; padding: .55rem .85rem; border-radius: 8px;
  color: var(--c-ink); text-decoration: none; font-size: .98rem;
}
.submenu__link:hover, .submenu__link.is-active { background: var(--c-surface-alt); color: var(--c-accent-strong); }

.nav-backdrop { position: fixed; inset: 0; background: rgb(15 23 32 / .45); z-index: 55; }

/* Mobiel menu */
@media (max-width: 1023px) {
  /* Dicht is 'display: none' en niet 'buiten beeld geschoven': een vast
     element dat naast het scherm hangt, geeft een horizontale schuifbalk. */
  .site-nav {
    display: none;
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 70;
    background: #fff; padding: 1.25rem 1.25rem 2rem;
    overflow-y: auto; box-shadow: var(--shadow-md);
    flex-direction: column; gap: 1rem;
  }
  .site-nav.is-open { display: flex; animation: lade-in .25s ease both; }
  @keyframes lade-in { from { transform: translateX(100%); } to { transform: none; } }
  @media (prefers-reduced-motion: reduce) { .site-nav.is-open { animation: none; } }
  .site-nav__item { border-bottom: 1px solid var(--c-line); }
  .site-nav__link { width: 100%; justify-content: space-between; padding: .85rem .25rem; font-size: 1.05rem; }
  .submenu { display: none; padding: 0 0 .75rem .5rem; }
  .submenu.is-open { display: block; }
}

@media (min-width: 1024px) {
  .nav-toggle, .nav-backdrop { display: none; }
  .site-nav { display: flex; align-items: center; gap: 1.25rem; }
  .site-nav__list { display: flex; align-items: center; gap: clamp(.5rem, 1.3vw, 1.35rem); }
  .site-nav__link { white-space: nowrap; font-size: clamp(.88rem, .74rem + .25vw, .98rem); }
  .site-nav__item { position: relative; }
  .submenu {
    position: absolute; top: calc(100% + .55rem); left: 50%; transform: translateX(-50%) translateY(-6px);
    min-width: 290px; padding: .5rem; background: #fff;
    border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  .site-nav__item:hover .submenu,
  .site-nav__item:focus-within .submenu,
  .submenu.is-open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}


/* ----------------------------------------------------------------- Hero -- */
.hero { position: relative; isolation: isolate; display: grid; align-items: end; overflow: hidden; background: var(--c-dark); }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgb(12 18 26 / .58) 0%, rgb(12 18 26 / .30) 42%, rgb(12 18 26 / .72) 100%);
}
.hero--full { min-height: min(78vh, 660px); }
.hero--banner { min-height: min(46vh, 400px); }
.hero--compact { min-height: 240px; }
.hero--plain { background: linear-gradient(135deg, var(--c-primary), #163d68); }

.hero__inner { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero__content { max-width: 46rem; color: #fff; text-shadow: 0 1px 14px rgb(8 14 20 / .45); }
.hero__title {
  font-size: clamp(1.85rem, 1.1rem + 3.1vw, 3.35rem);
  font-weight: 600; margin-bottom: .55rem; color: #fff;
}
.hero__subtitle { font-size: clamp(1.05rem, .95rem + .4vw, 1.24rem); line-height: 1.65; color: rgb(255 255 255 / .95); }
.hero__actions { margin-top: 1.6rem; margin-bottom: 0; }
.hero--full .hero__subtitle { max-width: 42rem; }

.page-heading { padding-block: clamp(2rem, 4vw, 3rem) 0; }
.page-heading__eyebrow { color: var(--c-ink-soft); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; margin-bottom: .35rem; }
.page-heading__title { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); }

/* ---------------------------------------------------------- Kruimelpad -- */
.crumbs { border-bottom: 1px solid var(--c-line); background: var(--c-surface-alt); }
.crumbs__list {
  display: flex; flex-wrap: wrap; gap: .4rem; list-style: none;
  margin: 0; padding: .7rem 0; font-size: .92rem; color: var(--c-ink-soft);
}
.crumbs__list li + li::before { content: "›"; margin-right: .4rem; color: #9aa4ad; }
.crumbs__list a { color: var(--c-ink-soft); text-decoration: none; }
.crumbs__list a:hover { color: var(--c-primary); text-decoration: underline; }
.crumbs__list [aria-current] { color: var(--c-ink); font-weight: 600; }

/* ---------------------------------------------------------------- Prose -- */
.prose > :last-child { margin-bottom: 0; }
.prose h2 { font-size: 1.5rem; color: var(--c-accent); margin-top: 2rem; }
.prose h3 { font-size: 1.2rem; color: var(--c-primary); margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose li::marker { color: var(--c-accent); }
.prose blockquote {
  margin: 1.5rem 0; padding: .35rem 0 .35rem 1.15rem;
  border-left: 3px solid var(--c-accent); color: var(--c-ink-soft); font-style: italic;
}
.prose--invert, .prose--invert a { color: rgb(255 255 255 / .92); }
.prose--invert a { text-decoration: underline; }

/* ----------------------------------------------------------- Klachten --- */
.checklist { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .55rem; }
@media (min-width: 620px) { .checklist { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1.75rem; } }
.checklist__item {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .55rem .75rem; background: var(--c-surface-alt);
  border-radius: 8px; border-left: 3px solid var(--c-accent);
  line-height: 1.5;
}
.checklist__icon { flex: none; margin-top: .28rem; color: var(--c-primary); }

/* ------------------------------------------------------------ Features -- */
.features { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.feature {
  padding: 1.4rem 1.5rem; background: #fff;
  border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  border-top: 3px solid var(--c-primary);
  box-shadow: var(--shadow-sm);
}
.feature__title { font-size: 1.12rem; color: var(--c-primary); margin-bottom: .3rem; }
.feature__text { margin: 0; color: var(--c-ink-soft); }

/* --------------------------------------------------------------- Cards -- */
.cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) { .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { display: flex; }
.card__link {
  display: flex; flex-direction: column; gap: .4rem; width: 100%;
  padding: 1.25rem 1.35rem; background: #fff; text-decoration: none; color: inherit;
  border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card__link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cdd7e0; color: inherit; }
.card__title { font-size: 1.05rem; color: var(--c-primary); margin: 0; }
.card__text { margin: 0; font-size: .95rem; color: var(--c-ink-soft); }
.card__more { margin-top: auto; padding-top: .5rem; font-weight: 600; font-size: .92rem; color: var(--c-accent-strong); }

/* ----------------------------------------------------------------- CTA -- */
.cta {
  display: grid; gap: 1.25rem; align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--c-primary), #163d68);
  color: #fff; border-radius: var(--radius-lg);
}
@media (min-width: 820px) { .cta { grid-template-columns: 1fr auto; gap: 2rem; } }
.cta__title { color: #fff; font-size: clamp(1.3rem, 1rem + 1vw, 1.7rem); margin-bottom: .35rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 0; }

/* ------------------------------------------------------------- Contact -- */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.15fr .85fr; gap: 3rem; } }
.contact-card {
  padding: 1.5rem 1.6rem; background: var(--c-surface-alt);
  border: 1px solid var(--c-line); border-radius: var(--radius-lg);
}
.contact-card__title { font-size: 1.1rem; color: var(--c-primary); }
.contact-card__address { font-style: normal; margin-bottom: 1rem; }
.contact-card__list { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1rem; margin: 0; font-size: .97rem; }
.contact-card__list dt { color: var(--c-ink-soft); }
.contact-card__list dd { margin: 0; }

.figure { margin: 0; }
.figure img { border-radius: var(--radius-lg); }
.figure__caption { margin-top: .6rem; font-size: .92rem; color: var(--c-ink-soft); }

/* ------------------------------------------------------------ Formulier -- */
.form__row { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
.field { margin-bottom: 1.15rem; }
.field__label { display: block; margin-bottom: .35rem; font-weight: 600; font-size: .96rem; }
.req { color: var(--c-accent-strong); }
.field__input {
  width: 100%; min-height: 48px; padding: .65rem .85rem;
  font: inherit; color: inherit; background: #fff;
  border: 1px solid #c9d2da; border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field__input:focus { border-color: var(--c-primary); box-shadow: 0 0 0 3px rgb(36 88 148 / .14); outline: none; }
.field__input--area { min-height: 160px; resize: vertical; line-height: 1.6; }
.field--check { margin-top: .25rem; }
.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .97rem; line-height: 1.5; cursor: pointer; }
.check input { margin-top: .35rem; width: 20px; height: 20px; accent-color: var(--c-primary); flex: none; }
.form__note { font-size: .9rem; color: var(--c-ink-soft); }
.form__actions { margin-top: 1.25rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  padding: .95rem 1.15rem; margin-bottom: 1.5rem;
  border-radius: var(--radius); border-left: 4px solid;
}
.alert--ok { background: #eaf6ee; border-color: #2e7d4f; color: #1c5533; }
.alert--error { background: #fdeceb; border-color: #b3261e; color: #8c1d18; }

/* --------------------------------------------------------------- Footer -- */
.site-footer { margin-top: clamp(3rem, 6vw, 5rem); background: var(--c-dark); color: rgb(255 255 255 / .78); font-size: .97rem; }
.site-footer a { color: rgb(255 255 255 / .9); }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; gap: 2.25rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 860px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.site-footer__title { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .9rem; }
.site-footer__badges { margin-top: 1.25rem; width: 100%; max-width: 420px; background: #fff; padding: .6rem .8rem; border-radius: var(--radius); }
.site-footer__address { font-style: normal; margin-bottom: .85rem; }
.site-footer__address strong { color: #fff; }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; }
.site-footer__list--links { margin-top: 1rem; }
.site-footer__actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.site-footer__actions .btn--ghost { --btn-fg: #fff; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  padding-block: 1.1rem; border-top: 1px solid rgb(255 255 255 / .14); font-size: .9rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__meta { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }

/* --------------------------------------------------------- Cookiebanner -- */
.cookie {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  padding: clamp(.75rem, 2vw, 1.25rem);
  display: flex; justify-content: center;
}
.cookie[hidden] { display: none; }
.cookie__panel {
  width: min(100%, 900px);
  background: #fff; color: var(--c-ink);
  border: 1px solid var(--c-line); border-top: 4px solid var(--c-primary);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: clamp(1.15rem, 2.5vw, 1.75rem);
  max-height: min(86vh, 760px); overflow-y: auto;
}
.cookie__title { font-size: 1.2rem; margin-bottom: .4rem; }
.cookie__intro { margin-bottom: .5rem; font-size: .98rem; line-height: 1.6; }
.cookie__policy { margin-bottom: 1rem; font-size: .95rem; }

.cookie__actions { display: grid; gap: .6rem; }
@media (min-width: 640px) {
  .cookie__actions { grid-auto-flow: column; grid-auto-columns: 1fr; align-items: stretch; }
}
/* Accepteren en weigeren zijn bewust identiek van formaat, kleur en gewicht. */
.cookie__btn { width: 100%; }
.cookie__btn--tertiary { --btn-fg: var(--c-primary); }

.cookie__prefs { margin: .25rem 0 1.15rem; }
.cookie__fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: .9rem; }
.cookie__cat { padding: .9rem 1rem; background: var(--c-surface-alt); border-radius: var(--radius); }
.cookie__cat-desc { margin: .45rem 0 0; font-size: .9rem; line-height: 1.55; color: var(--c-ink-soft); }
.cookie__badge {
  margin-left: .5rem; padding: .1rem .5rem; border-radius: 999px;
  background: #dfe6ec; color: #46525d; font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em; vertical-align: middle;
}

.switch { display: flex; align-items: center; gap: .7rem; cursor: pointer; font-weight: 600; }
.switch input { position: absolute; opacity: 0; width: 44px; height: 26px; margin: 0; cursor: pointer; }
.switch__track {
  flex: none; width: 44px; height: 26px; border-radius: 999px;
  background: #b7c1cb; position: relative; transition: background-color .18s ease;
}
.switch__knob {
  position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgb(0 0 0 / .3);
  transition: transform .18s ease;
}
.switch input:checked + .switch__track { background: var(--c-primary); }
.switch input:checked + .switch__track .switch__knob { transform: translateX(18px); }
.switch input:disabled + .switch__track { cursor: not-allowed; opacity: .7; }
.switch input:disabled:not(:checked) + .switch__track { background: #96a4b1; }
.switch input:focus-visible + .switch__track { outline: 3px solid var(--c-accent); outline-offset: 2px; }

/* --------------------------------------------------------------- Tabel --- */
.cookietable { width: 100%; border-collapse: collapse; font-size: .93rem; }
.cookietable th, .cookietable td { padding: .55rem .7rem; border-bottom: 1px solid var(--c-line); text-align: left; vertical-align: top; }
.cookietable th { background: var(--c-surface-alt); font-weight: 600; }
.table-scroll { overflow-x: auto; margin-bottom: 1.25rem; }

@media print {
  .site-header, .site-footer, .cookie, .crumbs, .hero__image, .hero__scrim { display: none !important; }
  body { font-size: 11pt; }
}
