/* ==========================================================================
   Podologie Medemblik — stylesheet
   Type:  Fraunces (display) + Karla (text), self-hosted
   ========================================================================== */

@import url("fonts.css");

/* --- Tokens ------------------------------------------------------------- */

:root {
  --paper:      #faf7f1;
  --paper-2:    #f2ece1;
  --paper-3:    #ece4d6;
  --ink:        #1e241f;
  --ink-2:      #4d554c;
  --ink-3:      #6b736a;
  --line:       #ded4c2;
  --line-soft:  #e9e1d3;
  --green:      #3f6b45;
  --green-dk:   #223a29;
  --green-lt:   #e9efe5;
  --clay:       #ac5b38;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-text:    "Karla", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --measure: 66ch;
  --rule: 1px solid var(--line);

  color-scheme: light;
}

/* --- Reset -------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Paper grain — a very light tactile layer over the whole page. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

body > * { position: relative; z-index: 1; }

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}

p, ul, ol { margin: 0; }

a { color: inherit; }

::selection { background: var(--green); color: #fff; }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 1px;
}

/* --- Layout primitives -------------------------------------------------- */

.wrap {
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 58rem; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 100;
}
.skip:focus { left: 0; }

.eyebrow {
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1.25rem;
  line-height: 1.9;
}
/* Een vakterm mag niet middenin afbreken; de regel breekt bij de stippen. */
.eyebrow span { white-space: nowrap; }

.rule { border: 0; border-top: var(--rule); margin: 0; }

/* --- Header ------------------------------------------------------------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: var(--rule);
}

.site-head__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.75rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.05;
  letter-spacing: -.015em;
}
.brand__name span {
  display: block;
  font-family: var(--font-text);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: 1.25rem; flex-wrap: nowrap; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav__list a {
  text-decoration: none;
  font-size: .9rem;
  color: var(--ink-2);
  padding-block: .35rem;
  border-bottom: 1px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav__list a:hover { color: var(--ink); border-bottom-color: var(--line); }
.nav__list a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--green);
}

/* De telefoonknop en de menuknop vormen een paar: zelfde hoogte en rand. */
.nav__tel, .nav__toggle {
  min-height: 2.75rem;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
}

.nav__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  white-space: nowrap;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  padding: .48rem .95rem;
  transition: background .18s, color .18s, border-color .18s;
}
.nav__tel:hover { background: var(--ink); color: var(--paper); }
.nav__tel svg { width: 14px; flex: none; }

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem .8rem;
  cursor: pointer;
}
.nav__toggle b { display: block; width: 16px; }
.nav__toggle b i {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 3px 0;
  transition: transform .22s, opacity .22s;
}
[aria-expanded="true"].nav__toggle b i:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
[aria-expanded="true"].nav__toggle b i:nth-child(2) { opacity: 0; }
[aria-expanded="true"].nav__toggle b i:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* --- Hero --------------------------------------------------------------- */

.hero { padding-block: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 3.5rem); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: .96;
  letter-spacing: -.028em;
  max-width: 12ch;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 120;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.65;
  max-width: 44ch;
  margin-top: 1.75rem;
  color: var(--ink-2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.25rem;
}

/* Portrait on an offset block — a small piece of craft. */
.hero__portrait { position: relative; margin: 0; isolation: isolate; }
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 2rem -1.75rem -1.75rem 2rem;
  background: var(--paper-3);
  border-radius: 3px;
  z-index: -1;
}
.hero__portrait img {
  width: 100%;
  border-radius: 3px;
  filter: saturate(.92) contrast(1.02);
}

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-text);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  padding: .78rem 1.4rem;
  border: 1.5px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn svg { width: 15px; flex: none; }
.btn--solid { background: var(--green); color: #fff; border-color: var(--green); }
.btn--solid:hover { background: var(--green-dk); border-color: var(--green-dk); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: #fff; border-color: #fff; }
.btn--outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn--outline-light:hover { border-color: #fff; }

/* --- Complaints index (typographic strip) ------------------------------- */

.treats {
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding-block: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .6rem 1.75rem;
}
.treats__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.treats ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  list-style: none;
  padding: 0;
}
.treats li {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--ink);
  position: relative;
}
.treats li + li::before {
  content: "";
  position: absolute;
  left: -.85rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

/* --- Full-bleed photo band ---------------------------------------------- */

.band {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--paper-2);
}
.band img {
  width: 100%;
  height: clamp(190px, 26vw, 340px);
  object-fit: cover;
  object-position: center 45%;
}

/* --- Sections ----------------------------------------------------------- */

.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section + .section { border-top: var(--rule); }

.section__grid {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: start;
}

.section__num {
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: .55rem;
  border-top: 2px solid var(--green);
}

.section h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  letter-spacing: -.02em;
  max-width: 20ch;
}

/* --- Prose -------------------------------------------------------------- */

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.6rem, 3vw, 2.15rem); letter-spacing: -.018em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: 2.25rem;
  font-size: 1.3rem;
  letter-spacing: -.01em;
}

/* Numbered steps: the numeral carries a rule out to the margin. */
.prose h2.step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3.5rem;
  font-size: 1.9rem;
  color: var(--green);
}
.prose h2.step::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.prose h2.step + p { margin-top: 1rem; }
.prose h4 {
  font-family: var(--font-text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2rem;
}
.prose a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, var(--green) 45%, transparent);
}
.prose a:hover { text-decoration-color: var(--green); }
.prose strong, .prose b { color: var(--ink); font-weight: 700; }

.prose ul, .prose ol { padding-left: 0; list-style: none; }
.prose ul li, .prose ol li { position: relative; padding-left: 1.5rem; }
.prose ul li + li, .prose ol li + li { margin-top: .5rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: .1rem;
  top: .78em;
  width: .45rem;
  height: 1px;
  background: var(--green);
}
.prose ol { counter-reset: li; }
.prose ol li::before {
  counter-increment: li;
  content: counter(li) ".";
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  color: var(--green);
}

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: 46ch;
}

/* --- Figure ------------------------------------------------------------- */

.figure { margin: 2.5rem 0 0; }
.figure img {
  width: 100%;
  border: var(--rule);
  border-radius: 3px;
  background: #fff;
}
.figure figcaption {
  font-size: .84rem;
  color: var(--ink-3);
  margin-top: .7rem;
  padding-left: 1rem;
  border-left: 2px solid var(--line);
}

/* --- Page header (inner pages) ------------------------------------------ */

.page-head {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.75rem, 4vw, 3rem);
  border-bottom: var(--rule);
}
.page-head h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  letter-spacing: -.026em;
  line-height: 1.02;
  max-width: 16ch;
}
.page-head .lead { margin-top: 1.5rem; }

.crumb {
  font-size: .8rem;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
.crumb a { text-decoration: none; border-bottom: 1px solid var(--line); }
.crumb a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* --- Two-column content with side rail ---------------------------------- */

.doc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 15rem;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.rail { position: sticky; top: 7rem; }
.rail h2 {
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: .75rem;
  border-bottom: var(--rule);
}
.rail ol { list-style: none; margin: 1rem 0 0; padding: 0; counter-reset: r; }
.rail li + li { margin-top: .55rem; }
/* Alleen de links in de lijst, niet die in het tekstblok eronder. */
.rail ol a {
  display: block;
  font-size: .9rem;
  line-height: 1.4;
  text-decoration: none;
  color: var(--ink-3);
  padding-left: .9rem;
  border-left: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.rail ol a:hover { color: var(--ink); }
.rail ol a.is-active { color: var(--ink); border-left-color: var(--green); }

.rail__aside {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: var(--rule);
  font-size: .88rem;
  line-height: 1.6;
  color: var(--ink-3);
}
.rail__aside strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: .35rem; }
.rail__aside a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in srgb, var(--green) 45%, transparent);
}
.rail__aside a:hover { text-decoration-color: var(--green); }

/* --- Price list --------------------------------------------------------- */

.pricelist { margin-top: 1.75rem; }
.pricelist h3 {
  font-family: var(--font-text);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 .35rem;
}
.pricelist ul { list-style: none; margin: 0; padding: 0; }
.prose .pricelist ul li,
.pricelist ul li {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .85rem 0;
  margin-top: 0;
  border-bottom: 1px dotted var(--line);
}
.prose .pricelist ul li::before,
.pricelist ul li::before { content: none; }
.pricelist li span:first-child { color: var(--ink-2); }
.pricelist li span:last-child {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  white-space: nowrap;
}
.pricelist + .pricelist { margin-top: 2.5rem; }

/* A hanging note: hairline above, label in small caps, no tinted box. */
.note {
  margin-top: 2.75rem;
  padding-top: 1.15rem;
  border-top: var(--rule);
  font-size: .95rem;
  max-width: 52ch;
}
.note strong {
  display: block;
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
}

/* --- Foot types --------------------------------------------------------- */

.foottypes { margin-top: 2.5rem; }
.foottype {
  padding: 2rem 0;
  border-top: var(--rule);
}
.foottype:first-child { border-top: 2px solid var(--green); }
.foottype h3 { font-size: 1.45rem; letter-spacing: -.012em; margin: 0 0 .75rem; }
.foottype p { font-size: 1rem; }

/* --- Contact card ------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: var(--rule);
  border-radius: 3px;
  overflow: hidden;
}
.contact-cell { background: var(--paper); padding: clamp(1.5rem, 3vw, 2.25rem); }
.contact-cell h3 {
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .75rem;
}
.contact-cell p, .contact-cell > a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.012em;
  text-decoration: none;
  overflow-wrap: break-word;
}
.contact-cell > a { border-bottom: 1px solid var(--line); }
.contact-cell a:hover { border-bottom-color: var(--green); color: var(--green); }
.contact-cell small {
  display: block;
  font-family: var(--font-text);
  font-size: .88rem;
  color: var(--ink-3);
  margin-top: .8rem;
  letter-spacing: 0;
}
.contact-cell small a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-color: color-mix(in srgb, var(--green) 45%, transparent);
}

/* --- Widget frame ------------------------------------------------------- */

.widget-frame {
  margin-top: 2.5rem;
  border: var(--rule);
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
}
.widget-frame iframe { display: block; width: 100%; height: 820px; border: 0; }

/* --- CTA band ----------------------------------------------------------- */

.cta {
  background: var(--green-dk);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
}
.cta h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  letter-spacing: -.022em;
  max-width: 18ch;
}
.cta p {
  color: rgba(255,255,255,.72);
  margin-top: 1rem;
  max-width: 42ch;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- Footer ------------------------------------------------------------- */

.site-foot {
  background: var(--ink);
  color: rgba(255,255,255,.62);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .93rem;
}
.site-foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.site-foot h2 {
  color: #fff;
  font-family: var(--font-text);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: .55;
}
.site-foot a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-foot a:hover { color: #fff; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li + li { margin-top: .55rem; }

.foot-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.foot-address { font-style: normal; line-height: 1.8; }
.foot-address a { border-bottom: 1px solid rgba(255,255,255,.25); }

.foot-badges { display: flex; gap: .9rem; margin-top: 1.75rem; }
.foot-badges img {
  width: 74px;
  border-radius: 3px;
  background: #fff;
}

.site-foot__base {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
}

/* --- 404 ---------------------------------------------------------------- */

.center-page {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding-block: 5rem;
}
.center-page h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); letter-spacing: -.03em; }
.center-page p { margin: 1.25rem auto 2rem; max-width: 40ch; }

/* --- Responsive --------------------------------------------------------- */

/* The menu collapses earlier than the layout: eight labels need the room. */
@media (max-width: 66rem) {
  .nav__toggle { display: inline-flex; }
  .nav__list {
    display: none;
    position: fixed;
    inset: 4.75rem 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    white-space: normal;
    background: var(--paper);
    border-bottom: var(--rule);
    padding: .5rem var(--gutter) 1.5rem;
    max-height: calc(100dvh - 4.75rem);
    overflow-y: auto;
  }
  .nav__list.is-open { display: flex; }
  .nav__list li { border-bottom: 1px solid var(--line-soft); }
  .nav__list a {
    display: block;
    font-size: 1.15rem;
    font-family: var(--font-display);
    padding: .85rem 0;
    border-bottom: 0;
  }
  .nav__list a[aria-current="page"] { border-bottom: 0; color: var(--green); }
}

@media (max-width: 62rem) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  .hero__portrait { max-width: 26rem; margin-top: 1rem; }
  .doc { grid-template-columns: 1fr; }
  .cta__grid { grid-template-columns: 1fr; }
  .site-foot__grid { grid-template-columns: 1fr 1fr; }

  /* "Op deze pagina" heeft geen nut op een smal scherm: de lezer scrolt
     toch. Het tekstblok eronder blijft wel staan, onder de inhoud. */
  .rail { position: static; }
  .rail nav { display: none; }
  .rail__aside { margin-top: 0; }
}

@media (max-width: 48rem) {
  /* Grotere raakvlakken voor vingers. */
  .site-foot li a { display: block; padding-block: .45rem; }
  .site-foot li + li { margin-top: .2rem; }
  .crumb a { display: inline-block; padding-block: .35rem; }

  .nav__tel span { display: none; }
  .nav__tel { padding-inline: .8rem; }
  .section__grid { grid-template-columns: 1fr; }
  .section__num { border-top: 0; padding-top: 0; }
  .site-foot__grid { grid-template-columns: 1fr; }
  .hero__portrait::after { display: none; }

  /* Knoppen naast elkaar worden knoppen onder elkaar, even breed. */
  .hero__actions, .cta__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .cta__actions .btn { justify-content: center; width: 100%; }

  /* De opsomming staat onder elkaar; de scheidingsstippen vervallen,
     anders hangen ze aan het begin van een regel. */
  .treats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .treats ul { flex-direction: column; gap: .4rem; }
  .treats li + li::before { display: none; }
}

/* --- Preferences -------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .site-head, .cta, .nav, .rail, .band { display: none; }
  body { background: #fff; color: #000; }
  body::before { display: none; }
}
