/* =========================================================
   Jomba Thuiszorg — design system
   Warm editorial: cream & blush, aubergine & magenta,
   Fraunces (display) + Hanken Grotesk (body), arch motifs.
   ========================================================= */

/* ---------- Fonts (self-hosted, latin subset) ---------- */
@font-face {
  font-family: 'Young Serif';
  src: url('/fonts/young-serif-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/hanken-grotesk-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #FBF5EF;
  --cream-deep: #F5EBE1;
  --blush: #F7E9EE;
  --card: #FFFDFB;
  --ink: #33202E;
  --ink-soft: #5C4454;
  --plum: #46203C;
  --plum-deep: #3A1A31;
  --on-plum: #F3DCE6;
  --on-plum-strong: #FDF4EE;
  --magenta: #A62858;
  --magenta-deep: #8B1F49;
  --apricot: #E8A26B;
  --gold: #C9963F;
  --line: #EADCD2;
  --line-soft: #F0E5DB;

  --font-display: 'Young Serif', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Hanken Grotesk', 'Segoe UI', Tahoma, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --arch: 999px 999px 24px 24px;

  --shadow-soft: 0 18px 40px -22px rgba(70, 32, 60, 0.28);
  --shadow-lift: 0 26px 48px -24px rgba(70, 32, 60, 0.34);

  --wrap: 1160px;
  --gutter: clamp(1.25rem, 4.5vw, 3rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--magenta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--magenta-deep); }
strong { font-weight: 700; }
ul { padding-left: 1.2em; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.45rem); line-height: 1.25; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--plum);
  color: var(--on-plum-strong);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

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

/* ---------- Reveal on scroll (JS-progressive) ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header ---------- */
/* Geen backdrop-filter hier: dat maakt de header het containing block
   voor het fixed mobiele menu, waardoor het paneel niet meer schermvullend is. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 239, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -24px rgba(70, 32, 60, 0.4);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1;
  text-decoration: none;
}
.brand-lockup { height: 52px; width: auto; flex: none; }
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .brand-sub {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--magenta);
}
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.main-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-block: 0.3rem;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.main-nav a:not(.btn):hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--magenta-deep); }
.main-nav a.btn-primary { color: #FFF6F0; text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  z-index: 95;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icoon-sluit { display: none; }
.nav-toggle[aria-expanded="true"] .icoon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icoon-sluit { display: block; }
.brand { position: relative; z-index: 95; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--magenta);
  color: #FFF6F0;
  box-shadow: 0 14px 28px -14px rgba(166, 40, 88, 0.55);
}
.btn-primary:hover { background: var(--magenta-deep); color: #FFF6F0; }
.btn-outline {
  border-color: var(--plum);
  color: var(--plum);
  background: transparent;
}
.btn-outline:hover { background: var(--plum); color: var(--on-plum-strong); }
.btn-light {
  background: var(--on-plum-strong);
  color: var(--plum);
}
.btn-light:hover { background: #fff; color: var(--plum-deep); }
.btn-ghost-dark {
  border-color: rgba(243, 220, 230, 0.5);
  color: var(--on-plum-strong);
}
.btn-ghost-dark:hover { border-color: var(--on-plum-strong); background: rgba(253, 244, 238, 0.08); color: #fff; }

/* ---------- Eyebrow & section headers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--apricot);
}
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}
.section-head .lede { color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3rem, 7vw, 6rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: normal;
  color: var(--magenta);
}
.hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; margin-bottom: 2.2rem; }
.hero-points { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; }
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.hero-points svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 4.7;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute;
  left: clamp(-1.4rem, -2vw, -0.6rem);
  bottom: clamp(1.2rem, 3vw, 2.4rem);
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 15.5rem;
}
.hero-card svg { width: 26px; height: 26px; color: var(--magenta); flex: none; }
.hero-card strong { display: block; font-size: 0.95rem; line-height: 1.3; }
.hero-card span { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.35; }

/* Decorative nested arcs */
.arcs {
  position: absolute;
  pointer-events: none;
  color: var(--magenta);
  opacity: 0.1;
}
.hero .arcs { top: -70px; right: -60px; width: 300px; }

/* ---------- USP strip ---------- */
.usp-strip { background: var(--card); border-block: 1px solid var(--line-soft); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  padding-block: clamp(1.8rem, 3.5vw, 2.6rem);
}
.usp {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
}
.usp svg { width: 26px; height: 26px; color: var(--magenta); flex: none; margin-top: 0.2rem; }
.usp strong { display: block; font-size: 1.02rem; margin-bottom: 0.15rem; }
.usp p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Service cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.card-service {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.card-service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-service .card-photo { aspect-ratio: 16 / 9.5; overflow: hidden; }
.card-service .card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.card-service:hover .card-photo img { transform: scale(1.04); }
.card-body { padding: clamp(1.3rem, 2.5vw, 1.8rem); display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.card-body h3 { margin-bottom: 0.1rem; }
.card-body .card-tag { font-size: 0.95rem; color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; display: grid; gap: 0.45rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.check-list svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 0.3rem; }
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--magenta);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-out); }
.card-link:hover svg { transform: translateX(4px); }

/* ---------- Story band (plum) ---------- */
.band-plum {
  position: relative;
  background: linear-gradient(150deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--on-plum);
  border-radius: clamp(24px, 4vw, 44px);
  overflow: hidden;
}
.band-plum .arcs { bottom: -80px; right: -70px; width: 340px; color: var(--apricot); opacity: 0.14; }
.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.4rem, 6vw, 4.8rem);
}
.band-plum .eyebrow { color: var(--apricot); }
.band-plum .eyebrow::before { background: var(--magenta); }
.band-plum h2 { color: var(--on-plum-strong); }
.band-plum p { color: var(--on-plum); }
.band-plum .band-quote {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.5;
  color: var(--apricot);
  border-left: 3px solid var(--magenta);
  padding-left: 1.1rem;
  margin-block: 1.5rem;
}
.band-photo {
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 3 / 3.8;
}
.band-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 1.1rem; }
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--blush);
  -webkit-text-stroke: 1.5px var(--magenta);
  display: block;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }
.step + .step::after {
  content: '';
  position: absolute;
  top: 2.6rem;
  left: -14%;
  width: 28%;
  max-width: 70px;
  border-top: 2px dotted var(--apricot);
}

/* ---------- Split band (blush) ---------- */
.band-blush { background: var(--blush); }
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.info-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.info-card h3 { margin-bottom: 0.8rem; }
.info-card .place {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding-block: 0.75rem;
}
.info-card .place + .place { border-top: 1px solid var(--line-soft); }
.info-card .place svg { width: 20px; height: 20px; color: var(--magenta); flex: none; margin-top: 0.25rem; }
.info-card .place strong { display: block; }
.info-card .place span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-final { text-align: left; }
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: clamp(24px, 4vw, 44px);
  padding: clamp(2.2rem, 5.5vw, 4.2rem);
  position: relative;
  overflow: hidden;
}
.cta-box .arcs { top: -60px; right: -50px; width: 240px; opacity: 0.12; }
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { color: var(--ink-soft); max-width: 32rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-actions .tel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 400;
  font-variant-numeric: lining-nums;
  color: var(--plum);
  text-decoration: none;
}
.cta-actions .tel:hover { color: var(--magenta-deep); }
.cta-actions .tel svg { width: 26px; height: 26px; color: var(--magenta); }
.cta-actions .sub { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding-block: clamp(2.8rem, 6vw, 4.6rem) clamp(1.6rem, 3.5vw, 2.6rem); }
.page-hero h1 { margin-bottom: 1.1rem; max-width: 18ch; }
.page-hero .lede { font-size: 1.13rem; color: var(--ink-soft); max-width: 42rem; }
.anchor-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.anchor-chips a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--plum);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.anchor-chips a:hover { background: var(--blush); border-color: var(--magenta); }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.4rem, 5vw, 3.8rem);
  scroll-margin-top: 90px;
}
.service-row + .service-row { border-top: 1px solid var(--line-soft); }
.service-row .photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 2;
}
.service-row .photo.arched { border-radius: var(--arch); aspect-ratio: 4 / 4.4; }
.service-row .photo img { width: 100%; height: 100%; object-fit: cover; }
.service-row.flip .photo { order: 2; }
.service-row h2 { margin-bottom: 0.9rem; }
.service-row p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.service-row .check-list li { font-size: 1rem; }
.service-note {
  margin-top: 1.3rem;
  background: var(--blush);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.service-note strong { color: var(--ink); }

/* ---------- Values (over ons) ---------- */
.values { display: grid; gap: 0; }
.value-row {
  display: grid;
  grid-template-columns: minmax(70px, 110px) minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.6rem);
  padding-block: clamp(1.5rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row .num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--apricot);
}
.value-row h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
.value-row p { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 46rem; display: grid; gap: 0.9rem; }
.faq-list details {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-soft); border-color: var(--line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .faq-icon {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--magenta);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease-out), background-color 0.2s ease;
}
.faq-list details[open] .faq-icon { transform: rotate(45deg); background: var(--magenta); color: #fff; }
.faq-list .faq-body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq-list .faq-body p + p { margin-top: 0.6rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
a.contact-card { text-decoration: none; color: inherit; }
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.contact-card .icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blush);
  color: var(--magenta);
  display: grid;
  place-items: center;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; font-size: 1.05rem; margin-bottom: 0.15rem; }
.contact-card .big {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.2;
}
.contact-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Prose (privacy e.d.) ---------- */
.prose { max-width: 44rem; }
.prose h2 { font-size: 1.5rem; margin: 2.4rem 0 0.8rem; }
.prose p, .prose ul { color: var(--ink-soft); margin-bottom: 0.9rem; }
.prose li + li { margin-top: 0.35rem; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  background: var(--plum-deep);
  color: var(--on-plum);
  position: relative;
  overflow: hidden;
}
.site-footer .arcs { top: -90px; right: -80px; width: 320px; color: var(--apricot); opacity: 0.08; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(2.8rem, 6vw, 4.2rem) 2.2rem;
}
.footer-lockup { height: 50px; width: auto; display: block; margin-bottom: 1.1rem; }
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--on-plum-strong);
}
.footer-brand .brand-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--apricot);
  margin: 0.3rem 0 1.1rem;
}
.footer-brand p { font-size: 0.95rem; max-width: 26rem; }
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: var(--on-plum); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 0.3rem; color: var(--apricot); }
.footer-bottom {
  border-top: 1px solid rgba(243, 220, 230, 0.18);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(243, 220, 230, 0.75);
}
.footer-bottom a { color: inherit; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding-block: clamp(4rem, 10vw, 8rem); }
.error-page .code {
  font-family: var(--font-display);
  color: var(--apricot);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
}
.error-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-block: 1rem 0.8rem; }
.error-page p { color: var(--ink-soft); margin-bottom: 2rem; }
.error-page .actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid, .band-inner, .split, .contact-grid, .service-row { grid-template-columns: 1fr; }
  .service-row.flip .photo { order: 0; }
  .hero-visual { max-width: 480px; }
  .band-photo { max-width: 420px; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; }
  .step + .step::after { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: minmax(50px, 70px) minmax(0, 1fr); }
  .value-row p { grid-column: 2; }

  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 90;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.6rem;
    background: var(--cream);
    padding: 6.5rem var(--gutter) 3rem;
    transform: translateY(-102%);
    transition: transform 0.45s var(--ease-out);
    overflow-y: auto; /* clipt de overloop bij gesloten paneel en scrollt bij lage schermen */
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a:not(.btn) {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
  }
  .main-nav .btn {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin-top: 0.8rem;
  }
  body.nav-locked { overflow: hidden; }
  .site-header { background: var(--cream); }
}

@media (max-width: 560px) {
  .usp-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .steps { grid-template-columns: 1fr; }
  .hero-card { position: static; margin-top: 1rem; max-width: none; }
  .hero-photo { aspect-ratio: 4 / 4.2; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
