/* =============================================================
   Alma del Monte — designsysteem
   Structuur & typografie: Tu Travesía-tokens · Kleuren: logo
   ============================================================= */

:root {
  --ink: #1d1d1f;
  --ink-2: #3a3a3d;
  --ink-3: #515154;
  --muted: #86868b;

  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --bg-warm: #f5f1e8;
  --bg-dark: #262922;

  --line: #e6e1d6;
  --line-strong: #d6cfc0;

  --olijf: #6B764C;
  --olijf-hover: #5C6740;
  --olijf-diep: #4F5937;
  --olijf-zacht: #AEB98C;

  --honing: #E4AE64;
  --honing-diep: #A8803F;
  --honing-zacht: #F4E7CC;
  --honing-dark: #EAD4A8;

  --on-dark: rgba(255, 255, 255, 0.92);
  --on-dark-2: rgba(255, 255, 255, 0.78);
  --on-dark-dim: rgba(255, 255, 255, 0.6);

  --space-section: 120px;
  --space-section-sm: 80px;
  --gutter: 32px;

  --radius: 18px;
  --radius-card: 16px;
  --radius-sm: 10px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --nav-h: 64px;
}

@media (max-width: 900px) {
  :root { --space-section: 64px; --space-section-sm: 48px; --gutter: 24px; }
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}

img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container { max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.container--text { max-width: 760px; }

/* ── Typografie ─────────────────────────────────────────────── */
.typo-hero {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin: 0;
}
.typo-hero-sub {
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.45;
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
}
.typo-h2 {
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.typo-h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.3; margin: 0; }
.typo-body { font-size: 16px; line-height: 1.7; color: var(--ink-3); }
.typo-body p { margin: 0 0 14px; }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--olijf-diep);
  margin-bottom: 18px;
}
.eyebrow--honing { color: var(--honing-dark); }

.statement {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}

.staccato {
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.65;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}

/* ── Knoppen ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary { background: var(--olijf); color: #fff; box-shadow: 0 4px 14px rgba(107, 118, 76, 0.25); }
.btn--primary:hover { background: var(--olijf-hover); }
.btn--secondary { background: transparent; color: var(--ink); border: 1px solid var(--olijf-zacht); }
.btn--secondary:hover { background: rgba(174, 185, 140, 0.16); border-color: var(--olijf); }
.btn--on-dark { background: rgba(255, 255, 255, 0.94); color: var(--ink); }
.btn--on-dark:hover { background: #fff; }
.btn--on-dark-secondary { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.45); }
.btn--on-dark-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.75); }

/* ── Header ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__brand { display: inline-flex; align-items: center; gap: 11px; }
.nav__brand img { height: 40px; width: auto; }
.nav__brand span { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a:not(.btn) { font-size: 15px; color: var(--ink-3); transition: color .2s; }
.nav__links a:not(.btn):hover, .nav__links a.is-active { color: var(--ink); }
.nav__links .btn { height: 38px; padding: 0 20px; font-size: 14px; box-shadow: none; }
.nav__toggle { display: none; width: 44px; height: 44px; margin-right: -10px; align-items: center; justify-content: center; }
.nav__toggle svg { width: 24px; height: 24px; }

.menu {
  position: fixed; inset: 0; z-index: 70;
  background: var(--bg-warm);
  display: none;
  flex-direction: column;
  padding: 22px var(--gutter) 40px;
}
.menu.is-open { display: flex; }
.menu__top { display: flex; align-items: center; justify-content: space-between; }
.menu__top img { height: 38px; }
.menu__close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-right: -10px; }
.menu__close svg { width: 24px; height: 24px; }
.menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 9vh; }
.menu nav a { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; padding: 10px 0; border-bottom: 1px solid var(--line); }
.menu .btn { margin-top: 28px; align-self: flex-start; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* ── Secties ────────────────────────────────────────────────── */
.section { padding-block: var(--space-section); }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--center { text-align: center; }
.section--center .eyebrow { margin-inline: auto; }
.section--center .typo-body { margin-inline: auto; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24, 25, 20, 0.18) 0%, rgba(24, 25, 20, 0.05) 38%, rgba(24, 25, 20, 0.62) 100%);
}
.hero__content { position: relative; z-index: 2; width: 100%; padding-block: 0 clamp(72px, 11vh, 120px); color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; color: rgba(255, 255, 255, 0.75);
}
.hero__hint svg { width: 22px; height: 22px; animation: hint 2.6s ease-in-out infinite; }
@keyframes hint { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .hero__hint svg { animation: none; } }
@media (max-width: 640px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

/* ── Intro / redactioneel (home) ────────────────────────────── */
.intro { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.intro__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; margin: 0; }
.intro__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.intro__text { display: flex; flex-direction: column; justify-content: center; }
.intro__text .eyebrow { margin-bottom: 16px; }
.intro__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: balance;
}
.intro__body { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; color: var(--ink-3); }
.intro__body p { margin: 0 0 16px; }
.intro__body p:last-child { margin-bottom: 0; }
.intro__body .accent { color: var(--ink); font-weight: 500; }
.intro__statement {
  font-size: clamp(18px, 1.7vw, 21px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--ink);
  margin: 26px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  text-wrap: balance;
}
@media (max-width: 820px) {
  .intro { grid-template-columns: 1fr; gap: 22px; }
  .intro__media { min-height: 0; aspect-ratio: 3 / 2; }
}

/* ── Sectiekop (gecentreerd, ingetogen) ─────────────────────── */
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head .eyebrow { margin-inline: auto; }
.section-head p { font-size: 16px; line-height: 1.7; color: var(--ink-3); margin: 14px 0 0; }

/* ── Toegangspoorten (3 grote beeldkaarten) ─────────────────── */
.gateways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gateway {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-warm);
}
.gateway img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1); }
.gateway::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 16, 0) 38%, rgba(20, 22, 16, 0.34) 64%, rgba(20, 22, 16, 0.78) 100%);
}
.gateway:hover img { transform: scale(1.05); }
.gateway__cap { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 26px 24px; color: #fff; }
.gateway__cap h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 0; }
.gateway__cap p { font-size: 14.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.85); margin: 7px 0 0; max-width: 30ch; }
.gateway__link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 14px; font-size: 14px; font-weight: 500; color: #fff;
}
.gateway__link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.gateway:hover .gateway__link svg { transform: translateX(4px); }
@media (max-width: 820px) {
  .gateways { grid-template-columns: 1fr; gap: 14px; }
  .gateway { aspect-ratio: 16 / 11; }
  .gateway__cap p { max-width: none; }
}

/* ── Feature-split (off-grid) ───────────────────────────────── */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.feature__text { max-width: 520px; }
.feature__lead { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6; color: var(--ink-2); margin: 0 0 18px; }
.feature__text .typo-body p:last-child { margin-bottom: 0; }
.feature__media { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature__media img { width: 100%; height: clamp(220px, 26vw, 340px); object-fit: cover; border-radius: var(--radius); }
.feature__media img:first-child { grid-column: 1 / -1; height: clamp(180px, 22vw, 280px); }
.comfort { list-style: none; margin: 24px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
.comfort li { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--ink); }
.comfort li svg { width: 18px; height: 18px; color: var(--olijf); flex-shrink: 0; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: -1; }
  .comfort { grid-template-columns: 1fr; }
}

/* ── Subpagina-hoofdstukken (gebalanceerd, alternerend) ─────── */
.chapter { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.chapter + .chapter { margin-top: clamp(48px, 7vw, 88px); }
.chapter__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px; margin: 0; display: grid; gap: 12px; }
.chapter__media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 0; }
.chapter__media--duo { grid-template-rows: 1fr 1fr; }
.chapter__media--solo img { position: absolute; inset: 0; }
.chapter__text { display: flex; flex-direction: column; justify-content: center; }
.chapter__text .eyebrow { margin-bottom: 14px; }
.chapter__text h2 { margin-bottom: 18px; }
.chapter__lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--ink-2); margin: 0 0 18px; }
.chapter__text .typo-body p:last-child { margin-bottom: 0; }
.chapter--reverse .chapter__media { order: 2; }
@media (max-width: 820px) {
  .chapter { grid-template-columns: 1fr; gap: 20px; }
  .chapter + .chapter { margin-top: 52px; }
  .chapter--reverse .chapter__media { order: -1; }
  .chapter__media { min-height: 0; aspect-ratio: 4 / 3; }
  .chapter__media--duo { aspect-ratio: auto; }
  .chapter__media--duo img { aspect-ratio: 4 / 3; height: auto; }
}

/* Fotostrip onder een hoofdstuk (overige beelden) */
.ch-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 16px; }
.ch-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-card); display: block; }

/* Poëtisch valleihoofdstuk (tekst + 2 beelden) — hergebruikt .chapter */
.chapter__poem { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.85; color: var(--ink-2); letter-spacing: -0.01em; margin: 0; }

/* ── Slot-CTA (closing) ─────────────────────────────────────── */
.closing { text-align: center; max-width: 640px; margin-inline: auto; }
.closing .typo-body { margin-top: 10px; }

/* ═══ Homepage v4 — gerealiseerd pilootproject ═══════════════ */

/* Hero-uitbreiding */
.hero__eyebrow { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: var(--honing-dark); margin-bottom: 20px; }
.hero__loc { margin: 28px 0 0; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); }

/* S2 — uitgangspunt (tekst + beeld, gebalanceerd) */
.startpoint { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.startpoint__text { display: flex; flex-direction: column; justify-content: center; }
.startpoint__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px; margin: 0; }
.startpoint__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .startpoint { grid-template-columns: 1fr; gap: 22px; }
  .startpoint__media { order: -1; min-height: 0; aspect-ratio: 3 / 2; }
}

/* S3 — projectfeiten (trust-band met hairlines) */
.factband { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.factband__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.factband__item { padding: 36px 30px; border-left: 1px solid var(--line); }
.factband__item:first-child { border-left: 0; padding-left: 0; }
.factband__item h3 { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 9px; }
.factband__item p { font-size: 14px; line-height: 1.55; color: var(--ink-3); margin: 0; }
@media (max-width: 820px) {
  .factband__grid { grid-template-columns: 1fr; }
  .factband__item { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line); }
  .factband__item:first-child { border-top: 0; padding-top: 0; }
  .factband__item:last-child { padding-bottom: 0; }
}

/* S4 — systemen (redactioneel beeld + tekst, geen featurecards) */
.systems { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px); margin-top: clamp(36px, 5vw, 52px); }
.system__media { aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden; margin: 0 0 16px; background: var(--bg-warm); }
.system__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1); }
.system:hover .system__media img { transform: scale(1.04); }
.system__n { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; color: var(--honing-diep); }
.system h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin: 6px 0 8px; color: var(--ink); }
.system p { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 0; }
@media (max-width: 900px) { .systems { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .systems { grid-template-columns: 1fr; gap: 30px; } }

/* S5 — comfort (groot interieurbeeld + tekst + pull quote) */
.comfortrow { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.comfortrow__media { border-radius: var(--radius); overflow: hidden; margin: 0; }
.comfortrow__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3 / 2; }
.pullquote { border-left: 3px solid var(--olijf); padding-left: 22px; margin: 26px 0 0; font-size: clamp(18px, 2vw, 22px); font-weight: 500; line-height: 1.32; letter-spacing: -0.015em; color: var(--ink); }
@media (max-width: 820px) {
  .comfortrow { grid-template-columns: 1fr; gap: 24px; }
  .comfortrow__media { order: -1; }
}

/* S6 — lessen (drie kolommen met bovenrand) */
.lessons { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 40px); margin: clamp(36px, 5vw, 48px) 0 clamp(28px, 4vw, 40px); }
.lesson { border-top: 2px solid var(--line-strong); padding-top: 20px; }
.lesson__n { font-size: 12px; font-weight: 600; letter-spacing: 0.07em; color: var(--honing-diep); }
.lesson h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin: 8px 0 10px; color: var(--ink); }
.lesson p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin: 0; }
@media (max-width: 760px) {
  .lessons { grid-template-columns: 1fr; gap: 0; }
  .lesson { border-top: 1px solid var(--line); padding: 22px 0; }
  .lesson:first-child { border-top: 2px solid var(--line-strong); }
}

/* S8 — redactionele galerij (max 8, lightbox) */
.homegal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: clamp(32px, 4vw, 44px); }
.homegal img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-card); display: block; cursor: zoom-in; transition: transform .5s ease; }
.homegal img:hover { transform: scale(1.03); }
@media (max-width: 900px) { .homegal { grid-template-columns: repeat(2, 1fr); } }

/* ── Manifest (S2) ──────────────────────────────────────────── */
.manifest { max-width: 720px; margin-inline: auto; text-align: center; }
.manifest .typo-body { max-width: 600px; margin-inline: auto; }
.manifest__statement { margin-top: 34px; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 44px; }
.duo img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 700px) {
  .duo { grid-template-columns: 1fr; }
  .duo img { height: 230px; }
}

/* ── Drieluik (S3/S4) ───────────────────────────────────────── */
.triptych { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 12px; align-items: stretch; }
.triptych__text { padding: clamp(8px, 3vw, 40px) clamp(0px, 2vw, 28px); display: flex; flex-direction: column; justify-content: center; }
.triptych__img { position: relative; min-height: 340px; border-radius: var(--radius); overflow: hidden; }
.triptych__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.triptych__img--wide { grid-column: span 2; }
@media (max-width: 900px) {
  .triptych { grid-template-columns: 1fr; }
  .triptych__img { min-height: 0; height: 230px; }
  .triptych--reverse .triptych__text { order: -1; }
  .triptych__img--wide { grid-column: auto; }
}

.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 14.5px;
  color: var(--ink);
}
.sunline { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; font-size: 16px; font-weight: 500; color: var(--honing-diep); }
.sunline svg { width: 19px; height: 19px; }

.list-lines { list-style: none; margin: 0 0 26px; padding: 0; }
.list-lines li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 17.5px; letter-spacing: -0.01em; }
.list-lines li:first-child { border-top: 1px solid var(--line); }

/* ── Tijdlijn (S5) ──────────────────────────────────────────── */
.tl { max-width: 820px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.tl__row {
  display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 16px 20px;
}
.tl__media { width: 120px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-warm); position: relative; }
.tl__media img { width: 100%; height: 100%; object-fit: cover; }
.tl__media--ph { display: flex; align-items: center; justify-content: center; }
.tl__media--ph svg { width: 38px; height: 28px; color: var(--line-strong); }
.tl__num { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--honing-diep); }
.tl__title { font-size: 19px; font-weight: 500; letter-spacing: -0.015em; margin: 3px 0 4px; }
.tl__note { font-size: 15px; color: var(--ink-3); margin: 0; }
@media (max-width: 600px) {
  .tl__row { grid-template-columns: 84px 1fr; padding: 14px; gap: 14px; }
  .tl__media { width: 84px; height: 64px; }
}

/* ── Donkere sectie (S6) ────────────────────────────────────── */
.dark { position: relative; background: var(--bg-dark); color: var(--on-dark); overflow: hidden; }
.dark__media { position: absolute; inset: 0; }
.dark__media img { width: 100%; height: 100%; object-fit: cover; }
.dark__media::after { content: ""; position: absolute; inset: 0; background: rgba(26, 28, 21, 0.68); }
.dark__content { position: relative; z-index: 2; max-width: 600px; padding-block: var(--space-section); }
.dark__content .typo-body { color: var(--on-dark-2); }
.dark__big {
  font-size: clamp(27px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin: 30px 0 0;
}
.dark .btn { margin-top: 32px; }

/* ── Leer-kaarten (S7) ──────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 48px; text-align: left; }
.card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--olijf-zacht); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29, 29, 31, 0.06); }
.card svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--honing-diep); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ── Wild by Mathias (S7b) ──────────────────────────────────── */
.wbm { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.wbm__media { border-radius: var(--radius); overflow: hidden; max-height: 420px; }
.wbm__media img { width: 100%; height: 420px; object-fit: cover; object-position: center 22%; }
.wbm .btn { margin-top: 26px; }
.wbm__bee { display: inline-flex; align-items: center; gap: 9px; color: var(--honing-diep); font-size: 14.5px; font-weight: 500; margin-bottom: 14px; }
.wbm__bee svg { width: 20px; height: 20px; }
@media (max-width: 820px) {
  .wbm { grid-template-columns: 1fr; }
  .wbm__media img { height: 300px; }
}

/* ── Volg het verhaal (S8) ──────────────────────────────────── */
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 44px; }
.tile {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: border-color .2s ease, transform .2s ease;
}
.tile:hover { border-color: var(--olijf-zacht); transform: translateY(-2px); }
.tile svg { width: 16px; height: 16px; color: var(--olijf-diep); flex-shrink: 0; }
@media (max-width: 820px) { .tiles { grid-template-columns: 1fr 1fr; } }

.newsletter { max-width: 480px; margin: 36px auto 0; }
.newsletter__row { display: flex; gap: 10px; }
.newsletter input[type="email"] {
  flex: 1; min-width: 0;
  height: 52px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg);
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
}
.newsletter input[type="email"]:focus { outline: none; border-color: var(--olijf); }
.newsletter__note { font-size: 13.5px; color: var(--muted); margin-top: 12px; }
@media (max-width: 540px) {
  .newsletter__row { flex-direction: column; }
  .newsletter .btn { width: 100%; }
}

/* ── Galerijstrook ──────────────────────────────────────────── */
.strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.strip a { display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.strip a:hover img { transform: scale(1.04); }
.strip-note { text-align: center; margin-top: 18px; font-size: 14.5px; }
.strip-note a { color: var(--olijf-diep); font-weight: 500; border-bottom: 1px solid var(--olijf-zacht); padding-bottom: 1px; }
@media (max-width: 820px) { .strip { grid-template-columns: repeat(3, 1fr); } }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--bg-dark); color: var(--on-dark-2); padding-block: 72px 36px; }
.footer__logo img { height: 150px; width: auto; }
.footer__slogan { font-size: 15.5px; color: var(--on-dark-2); margin: 22px 0 0; max-width: 420px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-top: 48px; }
.footer__head { font-size: 12px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--honing-dark); margin: 0 0 14px; }
.footer__col a { display: block; font-size: 15px; padding: 5px 0; color: var(--on-dark-dim); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 52px; padding-top: 24px;
  font-size: 13.5px; color: rgba(255, 255, 255, 0.45);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.45); }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

/* ── Subpagina-hero ─────────────────────────────────────────── */
.page-hero { padding: calc(var(--nav-h) + clamp(48px, 9vh, 96px)) 0 clamp(40px, 6vh, 72px); background: var(--bg-soft); text-align: center; }
.page-hero--warm { background: var(--bg-warm); }
.page-hero .typo-body { max-width: 620px; margin-inline: auto; }
.page-hero__mark { width: 52px; height: 38px; color: var(--olijf-diep); margin: 0 auto 26px; }

/* ── Galerijpagina ──────────────────────────────────────────── */
.gal-chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 28px; }
.gal-chips a { border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 16px; font-size: 14px; color: var(--ink-2); background: var(--bg); transition: border-color .2s, background-color .2s; }
.gal-chips a:hover { border-color: var(--olijf); background: var(--bg-soft); }
.gal-section { padding-block: 56px 8px; }
.gal-section h2 { scroll-margin-top: calc(var(--nav-h) + 20px); }
.gal-grid { columns: 3 300px; column-gap: 12px; margin-top: 24px; }
.gal-grid figure { margin: 0 0 12px; break-inside: avoid; border-radius: var(--radius-card); overflow: hidden; position: relative; }
.gal-grid img { width: 100%; height: auto; cursor: zoom-in; transition: transform .5s ease; }
.gal-grid figure:hover img { transform: scale(1.03); }
.gal-empty {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-card);
  padding: 28px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  margin-top: 24px;
}

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1200px); }
.lightbox::backdrop { background: rgba(20, 21, 17, 0.92); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: 8px; }
.lightbox figcaption { color: rgba(255, 255, 255, 0.75); font-size: 14px; text-align: center; padding-top: 12px; font-family: var(--font); }
.lightbox__close {
  position: fixed; top: 18px; right: 22px;
  color: #fff; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close svg { width: 26px; height: 26px; }

/* ── Formulieren ────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 18px; max-width: 560px; margin-inline: auto; text-align: left; }
.form label { font-size: 14.5px; font-weight: 500; display: flex; flex-direction: column; gap: 8px; }
.form input, .form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--bg);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--olijf); }
.form textarea { min-height: 150px; resize: vertical; }
.form .btn { align-self: flex-start; }
.form__status { font-size: 15px; color: var(--olijf-diep); font-weight: 500; display: none; }
.form__status.is-error { color: #a13b2a; }
.form.is-done .form__status { display: block; }

/* ── Legal / prose ──────────────────────────────────────────── */
.prose { padding-block: 48px var(--space-section); }
.prose h2 { font-size: 22px; font-weight: 500; letter-spacing: -0.015em; margin: 40px 0 14px; line-height: 1.25; }
.prose p, .prose li { font-size: 15.5px; line-height: 1.75; color: var(--ink-3); }
.prose ul { padding-left: 22px; margin: 10px 0 18px; }
.prose a { color: var(--olijf-diep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-strong); }
.prose a:hover { color: var(--ink); }

/* ── Cookie-balk ────────────────────────────────────────────── */
.cookies-bar {
  position: fixed; z-index: 80;
  left: 16px; right: 16px; bottom: 16px;
  margin-inline: auto;
  max-width: 660px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 44px rgba(29, 29, 31, 0.14);
  padding: 18px 20px;
  display: none;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookies-bar.is-visible { display: flex; }
.cookies-bar p { margin: 0; font-size: 14px; color: var(--ink-3); flex: 1 1 280px; }
.cookies-bar p a { color: var(--olijf-diep); text-decoration: underline; text-underline-offset: 2px; }
.cookies-bar .btn { height: 40px; padding: 0 18px; font-size: 14px; box-shadow: none; }

/* ── 404 ────────────────────────────────────────────────────── */
.nf { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--bg-warm); padding: var(--gutter); }
.nf svg { width: 72px; height: 52px; color: var(--olijf-diep); margin-inline: auto; }
.nf .btn { margin-top: 28px; }

/* ── Reveals — alleen actief mét JS; zonder JS is alles zichtbaar ── */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ── Hulpklassen ────────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ═══ EINDFASE-CONSOLIDATIE (22-06-2026) ═══════════════════════ */

/* Skip-link (toegankelijkheid) */
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; }
.skip:focus { left: 12px; top: 12px; width: auto; height: auto; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 999px; font-size: 14px; font-weight: 500; outline: 2px solid var(--honing); outline-offset: 2px; }

/* Gedeelde anker-offset voor sticky header (alle pagina's) */
.anchor { scroll-margin-top: calc(var(--nav-h) + 22px); }

/* Footer: cookievoorkeuren-knop oogt als footer-link */
.footer__col .foot-link { display: block; font-size: 15px; padding: 5px 0; color: var(--on-dark-dim); transition: color .2s; text-align: left; }
.footer__col .foot-link:hover { color: #fff; }
.footer__mail { font-size: 15px; padding: 5px 0; display: inline-block; color: var(--on-dark-2); }
.footer__mail:hover { color: #fff; }


/* ── Page-specifiek: .project-page (geconsolideerd uit inline) ── */
  .project-page .phase { display: grid; grid-template-columns: 0.94fr 1.06fr; gap: clamp(24px, 4vw, 52px); align-items: center; padding: clamp(30px, 4vw, 44px) 0; border-top: 1px solid var(--line); }
  .project-page .phase:first-of-type { border-top: 0; padding-top: 0; }
  .project-page .phase--reverse .phase__media { order: 2; }
  .project-page .phase__media { border-radius: var(--radius); overflow: hidden; margin: 0; }
  .project-page .phase__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; }
  .project-page .phase__num { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--honing-diep); }
  .project-page .phase h3 { font-size: clamp(19px, 2vw, 22px); font-weight: 500; letter-spacing: -0.02em; margin: 8px 0 10px; color: var(--ink); }
  .project-page .phase p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin: 0; max-width: 46ch; }
  @media (max-width: 820px) {
  .project-page .phase { grid-template-columns: 1fr; gap: 16px; }
  .project-page .phase--reverse .phase__media { order: -1; }
  }
  .project-page .notes2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 38px) clamp(28px, 5vw, 56px); margin: clamp(32px, 4vw, 44px) 0 0; }
  .project-page .note2 { border-top: 2px solid var(--line-strong); padding-top: 18px; }
  .project-page .note2 h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin: 0 0 10px; color: var(--ink); }
  .project-page .note2 p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin: 0; }
  @media (max-width: 760px) {
  .project-page .notes2 { grid-template-columns: 1fr; gap: 0; }
  .project-page .note2 { border-top: 1px solid var(--line); padding: 20px 0; }
  .project-page .note2:first-child { border-top: 2px solid var(--line-strong); }
  }
  .project-page .statusrow .lesson span.eyebrow { margin-bottom: 12px; }

/* ── Page-specifiek: .landscape-page (geconsolideerd uit inline) ── */
  .landscape-page .seasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 28px); margin-top: clamp(36px, 5vw, 52px); }
  .landscape-page .season__media { aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden; margin: 0 0 14px; background: var(--bg-warm); }
  .landscape-page .season__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .landscape-page .season__label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--honing-diep); }
  .landscape-page .season__lead { font-size: 15.5px; font-weight: 500; color: var(--ink); margin: 8px 0 6px; letter-spacing: -0.01em; }
  .landscape-page .season__txt { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 0; }
  @media (max-width: 900px) {
  .landscape-page .seasons { grid-template-columns: 1fr 1fr; gap: 26px; }
  }
  @media (max-width: 560px) {
  .landscape-page .seasons { grid-template-columns: 1fr; }
  }
  .landscape-page .principles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 38px) clamp(28px, 5vw, 56px); margin: clamp(32px, 4vw, 44px) 0; }
  .landscape-page .principle { border-top: 2px solid var(--line-strong); padding-top: 18px; }
  .landscape-page .principle__n { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--honing-diep); }
  .landscape-page .principle h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin: 8px 0 10px; color: var(--ink); }
  .landscape-page .principle p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin: 0; }
  @media (max-width: 760px) {
  .landscape-page .principles { grid-template-columns: 1fr; gap: 0; }
  .landscape-page .principle { border-top: 1px solid var(--line); padding: 20px 0; }
  .landscape-page .principle:first-child { border-top: 2px solid var(--line-strong); }
  }
  .landscape-page .giverequire { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); margin-top: clamp(34px, 4vw, 48px); }
  .landscape-page .giverequire__col .eyebrow { margin-bottom: 12px; }
  .landscape-page .giverequire__col h3 { font-size: 19px; font-weight: 500; letter-spacing: -0.015em; margin: 0 0 16px; color: var(--ink); }
  .landscape-page .giverequire__list { display: flex; flex-direction: column; gap: 0; }
  .landscape-page .giverequire__list p { font-size: 15px; line-height: 1.55; color: var(--ink-3); margin: 0; padding: 13px 0; border-top: 1px solid var(--line); }
  .landscape-page .giverequire__list p:first-child { border-top: 0; padding-top: 0; }
  @media (max-width: 760px) {
  .landscape-page .giverequire { grid-template-columns: 1fr; gap: 36px; }
  }

/* ── Page-specifiek: .story-page (geconsolideerd uit inline) ── */
  .story-page .devgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 30px); margin-top: clamp(36px, 5vw, 52px); }
  .story-page .devstep__media { aspect-ratio: 4 / 3; border-radius: var(--radius-card); overflow: hidden; margin: 0 0 14px; background: var(--bg-warm); }
  .story-page .devstep__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .story-page .devstep__n { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--honing-diep); }
  .story-page .devstep h3 { font-size: 17px; font-weight: 500; letter-spacing: -0.015em; margin: 6px 0 8px; color: var(--ink); }
  .story-page .devstep p { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 0; }
  .story-page .ask { font-size: clamp(18px, 2vw, 21px); font-weight: 500; color: var(--ink); letter-spacing: -0.01em; margin: 0 0 14px; }
  @media (max-width: 900px) {
  .story-page .devgrid { grid-template-columns: 1fr 1fr; gap: 26px; }
  }
  @media (max-width: 560px) {
  .story-page .devgrid { grid-template-columns: 1fr; }
  }

/* ── Page-specifiek: .contact-page (geconsolideerd uit inline) ── */
  .contact-page .c-hero__media { margin-top: clamp(28px, 4vw, 40px); border-radius: var(--radius); overflow: hidden; aspect-ratio: 21 / 9; }
  .contact-page .c-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .contact-page .topics { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 32px) clamp(28px, 5vw, 56px); margin-top: clamp(32px, 4vw, 44px); }
  .contact-page .topic { border-top: 1px solid var(--line); padding-top: 18px; }
  .contact-page .topic__n { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--honing-diep); }
  .contact-page .topic h3 { font-size: 17px; font-weight: 500; letter-spacing: -0.015em; margin: 7px 0 8px; color: var(--ink); }
  .contact-page .topic p { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 0; }
  @media (max-width: 760px) {
  .contact-page .topics { grid-template-columns: 1fr; gap: 0; }
  .contact-page .topic { padding: 20px 0; }
  }
  .contact-page .contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
  @media (max-width: 860px) {
  .contact-page .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  }
  .contact-page .field { display: flex; flex-direction: column; gap: 8px; }
  .contact-page .field > label { font-size: 14.5px; font-weight: 500; color: var(--ink); }
  .contact-page .field__help { font-size: 13px; color: var(--muted); margin: 0; }
  .contact-page .field__error { font-size: 13.5px; color: #a3322a; margin: 2px 0 0; font-weight: 500; }
  .contact-page .field input[aria-invalid="true"],
  .contact-page .field textarea[aria-invalid="true"],
  .contact-page .field select[aria-invalid="true"] { border-color: #c0533f; }
  .contact-page .form select { width: 100%; padding: 14px 18px; border: 1px solid var(--line-strong); border-radius: 14px; background: var(--bg); font: inherit; font-size: 16px; color: var(--ink); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none' stroke='%234F5937' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
  .contact-page .form select:focus { outline: none; border-color: var(--olijf); }
  .contact-page .field input:focus-visible,
  .contact-page .field textarea:focus-visible,
  .contact-page .form select:focus-visible,
  .contact-page .checkrow input:focus-visible,
  .contact-page .form .btn:focus-visible { outline: 2px solid var(--olijf); outline-offset: 2px; }
  .contact-page .checkrow { display: flex; gap: 12px; align-items: flex-start; }
  .contact-page .checkrow input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--olijf); }
  .contact-page .checkrow label { font-size: 14px; line-height: 1.5; color: var(--ink-3); }
  .contact-page .checkrow a { color: var(--olijf-diep); text-decoration: underline; text-underline-offset: 2px; }
  .contact-page .formstatus { font-size: 14.5px; color: var(--olijf-diep); font-weight: 500; margin: 0; }
  .contact-page .formstatus:empty { display: none; }
  .contact-page .formstatus.is-error { color: #a3322a; }
  .contact-page .formnote { font-size: 13px; color: var(--muted); margin: 0; }
  .contact-page .direct { display: flex; flex-wrap: wrap; gap: 8px 40px; align-items: baseline; margin-top: clamp(24px, 3vw, 32px); padding-top: 24px; border-top: 1px solid var(--line); }
  .contact-page .direct a { font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
  .contact-page .direct a:hover { color: var(--olijf-diep); }
  .contact-page .direct .loc { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .contact-page .readlinks { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); margin-top: clamp(32px, 4vw, 44px); }
  .contact-page .readlink { border-top: 2px solid var(--line-strong); padding-top: 18px; }
  .contact-page .readlink h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.015em; margin: 0 0 8px; color: var(--ink); }
  .contact-page .readlink p { font-size: 15px; line-height: 1.6; color: var(--ink-3); margin: 0 0 14px; }
  .contact-page .readlink .tlink { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 500; color: var(--olijf-diep); }
  .contact-page .readlink .tlink svg { width: 15px; height: 15px; transition: transform .25s ease; }
  .contact-page .readlink .tlink:hover svg { transform: translateX(3px); }
  @media (max-width: 700px) {
  .contact-page .readlinks { grid-template-columns: 1fr; gap: 0; }
  .contact-page .readlink { border-top: 1px solid var(--line); padding: 22px 0; }
  .contact-page .readlink:first-child { border-top: 2px solid var(--line-strong); }
  }
