/* Ulrike Westfa — gedeeld stijlsysteem
   Tokens, componenten en animatie-basistoestanden.
   Kleur: goud = zakelijk, groen = prive/groei. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&display=swap');

:root {
  --ink-black: #0B0D0B;
  --ink: #0D0F0D;
  --ink-panel: #0F110F;
  --ink-deep: #090B09;
  --ivory: #F2F1EA;
  --ivory-alt: #F1F0EA;
  --white: #FFFFFF;

  --text-on-dark: #F1F3EE;
  --muted-on-dark: #9DA499;
  --faint-on-dark: #6E7268;
  --text-on-light: #16180F;
  --muted-on-light: #56594F;
  --faint-on-light: #9A9486;

  --gold: #C9A24B;
  --gold-light: #DCC07A;
  --gold-deep: #9A7B2E;
  --green: #62C674;
  --green-light: #8FD99C;
  --green-deep: #3E9A50;

  --hair-dark: #1C211B;
  --hair-light: #DBDACF;
  --border-light: #E2E1D6;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-label: 'Jost', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.16, .8, .24, 1);
  --ease-wipe: cubic-bezier(.76, 0, .24, 1);
  --gold-foil: linear-gradient(160deg, #F4E2A6 0%, #D7B463 42%, #B5923F 62%, #8A6E2E 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--ink-black);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Typografie helpers ---------- */
.display { font-family: var(--font-display); font-weight: 600; line-height: 0.98; letter-spacing: -0.01em; }
.serif { font-family: var(--font-display); }
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 400;
}
.label {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.gold-foil {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Textuur: filmische korrel ---------- */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  z-index: 1;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Eigen cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border: 1px solid rgba(215,180,99,0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.cursor-dot.is-active {
  width: 46px; height: 46px;
  background: rgba(215,180,99,0.12);
}

/* ---------- Layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section { position: relative; }
.on-dark { background: var(--ink); color: var(--text-on-dark); }
.on-light { background: var(--ivory); color: var(--text-on-light); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .45s var(--ease), backdrop-filter .45s var(--ease);
}
.site-header.scrolled {
  background: rgba(11,13,11,0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.utility {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 44px 14px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  overflow: hidden; max-height: 60px;
  transition: opacity .35s var(--ease), max-height .45s var(--ease), padding .45s var(--ease);
}
.utility .label { color: var(--faint-on-dark); }
.site-header.scrolled .utility {
  opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; pointer-events: none;
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 44px;
  transition: padding .45s var(--ease);
}
.site-header.scrolled .nav { padding: 15px 44px; }
.brand { display: flex; align-items: center; gap: 18px; }
.monogram {
  position: relative; flex: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(214,180,99,0.5); border-radius: 50%;
  font-family: var(--font-display); font-weight: 500;
}
.monogram .mono-u, .monogram .mono-w { position: absolute; font-size: 17px; line-height: 1; }
.monogram .mono-u { top: 6px; left: 9px; z-index: 1; }
.monogram .mono-w { bottom: 6px; right: 7px; }
.monogram.gold-foil .mono-u, .monogram.gold-foil .mono-w {
  background: var(--gold-foil); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.wordmark {
  font-family: var(--font-label); font-weight: 400;
  font-size: 15px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-on-dark);
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: #BFC5BC; transition: color .3s var(--ease); }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.is-prive.active { color: var(--green-light); }
.nav-contact {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #E4D2A0; border: 1px solid rgba(214,180,99,0.45); padding: 12px 24px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-contact:hover { background: rgba(214,180,99,0.12); }
.nav-toggle { display: none; background: none; border: none; color: var(--text-on-dark); font-size: 22px; cursor: none; }

/* Header op lichte achtergrond (bv. prive hero) — alleen bovenaan, niet gescrold */
.site-header.on-light-head:not(.scrolled) .utility { border-color: rgba(0,0,0,0.08); }
.site-header.on-light-head:not(.scrolled) .utility .label,
.site-header.on-light-head:not(.scrolled) .nav-links a { color: var(--muted-on-light); }
.site-header.on-light-head:not(.scrolled) .nav-links a:hover { color: var(--gold-deep); }
/* Prive: logo staat over de foto (links) — dus licht + zachte schaduw voor leesbaarheid */
.site-header.on-light-head:not(.scrolled) .wordmark { color: #F5F4EF; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.site-header.on-light-head:not(.scrolled) .monogram { border-color: rgba(255,255,255,0.6); }
.site-header.on-light-head:not(.scrolled) .monogram .mono-u,
.site-header.on-light-head:not(.scrolled) .monogram .mono-w { color: #F5F4EF; text-shadow: 0 1px 8px rgba(0,0,0,0.55); }
.site-header.on-light-head:not(.scrolled) .utility .label:first-child { color: #F5F4EF; text-shadow: 0 1px 8px rgba(0,0,0,0.7); }

/* Gescrolde balk: altijd lichte tekst op donker, ongeacht paginatype */
.site-header.scrolled .wordmark { color: var(--text-on-dark); }
.site-header.scrolled .nav-links a { color: #C5CCC2; }
.site-header.scrolled .nav-toggle { color: var(--text-on-dark); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-block; font-family: var(--font-label); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 14px 28px; border-radius: 1px;
  cursor: none; transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn-gold { background: var(--gold-foil); color: #15170E; }
.btn-green { background: var(--green); color: #0F110F; }
.btn-dark { background: var(--ink-panel); color: var(--text-on-dark); }
.btn-outline { background: transparent; color: var(--text-on-dark); border: 1px solid rgba(241,243,238,0.32); }
.btn-outline-dark { background: transparent; color: var(--text-on-light); border: 1px solid var(--hair-light); }
.btn-outline-gold { background: transparent; color: var(--gold-light); border: 1px solid #463C24; }
.btn-outline-green { background: transparent; color: var(--green); border: 1px solid #CBD6CB; }

.arrow-link {
  font-family: var(--font-label); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; cursor: none; color: var(--text-on-dark);
}
.arrow-link i { transition: transform .35s var(--ease); }
.arrow-link:hover i { transform: translateX(7px); }
.arrow-link.rev:hover i { transform: translateX(-7px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
  padding-top: 160px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-photo {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 95% at 74% 28%, #3E4138 0%, #1C1F19 48%, #090B09 84%);
  background-size: cover; background-position: center;
  transform: scale(1.06); will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, rgba(8,10,8,0.95) 0%, rgba(8,10,8,0.58) 46%, rgba(8,10,8,0.05) 76%, rgba(8,10,8,0.34) 100%);
}
.corner { position: absolute; width: 16px; height: 16px; z-index: 6; border-color: rgba(214,180,99,0.5); }
.corner.tl { top: 28px; left: 28px; border-top: 1px solid; border-left: 1px solid; }
.corner.tr { top: 28px; right: 28px; border-top: 1px solid; border-right: 1px solid; }
.corner.bl { bottom: 28px; left: 28px; border-bottom: 1px solid; border-left: 1px solid; }
.corner.br { bottom: 28px; right: 28px; border-bottom: 1px solid; border-right: 1px solid; }

.hero-content { position: relative; z-index: 5; margin-top: auto; padding: 0 40px 90px; max-width: 720px; }
.hero-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.hero-kicker .num { font-family: var(--font-display); font-weight: 500; font-size: 15px; }
.hero-kicker .rule { width: 54px; height: 1px; background: linear-gradient(90deg, var(--gold-light), transparent); }
.hero-kicker .eyebrow { color: #A9ADA3; }
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 7vw, 72px); line-height: 0.94; color: #F6F7F2; }

/* Accent-woord: Cormorant-cursief in lichtgoud */
.hl-word { position: relative; display: inline-block; }
.hl-txt { position: relative; z-index: 1; font-family: var(--font-display); font-style: italic; font-weight: 600; color: #E4CE8E; }
.hero-intro { font-size: 14px; line-height: 1.75; color: #AEB4AA; margin: 28px 0 32px; max-width: 400px; }
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.scroll-cue { position: absolute; left: 40px; bottom: 36px; z-index: 5; display: flex; align-items: center; gap: 10px; }
.scroll-cue .bar { width: 1px; height: 22px; background: linear-gradient(var(--gold-light), transparent); }
.scroll-cue .label { color: var(--faint-on-dark); }

/* Sub-hero (binnenpagina's, niet full-screen) */
.subhero { position: relative; min-height: 72vh; display: grid; grid-template-columns: 1.05fr 0.95fr; overflow: hidden; }
.subhero.flip { grid-template-columns: 0.95fr 1.05fr; }
.subhero-text { display: flex; flex-direction: column; justify-content: center; padding: 130px 40px 60px; position: relative; z-index: 3; }
.subhero-photo { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.subhero-photo .ph-cap { position: absolute; bottom: 24px; z-index: 2; }

/* ---------- Tekstblok / manifest ---------- */
.manifest { text-align: center; padding: 80px 40px; }
.manifest .eyebrow { color: var(--gold-deep); }
.manifest .center-rule { width: 30px; height: 1px; background: var(--gold); margin: 18px auto 24px; }
.manifest .statement { font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 4vw, 46px); line-height: 1.16; max-width: 640px; margin: 0 auto; }

/* ---------- Twee sporen ---------- */
.tracks { display: grid; grid-template-columns: 1fr 1fr; }
.track { position: relative; padding: 56px 48px; overflow: hidden; }
.track-zakelijk { background: var(--ink); border-top: 1px solid var(--gold); }
.track-prive { background: var(--ivory); color: var(--text-on-light); border-top: 1px solid var(--green); text-align: right; }
.track-head { position: relative; display: flex; justify-content: space-between; align-items: baseline; }
.track-prive .track-head { flex-direction: row-reverse; }
.track .num { font-family: var(--font-display); font-weight: 500; font-size: 34px; }
.track-zakelijk .num { background: var(--gold-foil); -webkit-background-clip: text; background-clip: text; color: transparent; }
.track-prive .num { color: #BCC3B6; }
.track h3 { position: relative; font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4vw, 38px); line-height: 1.02; margin: 22px 0 28px; }
.track-list { position: relative; font-size: 13px; line-height: 2.3; padding-top: 20px; }
.track-zakelijk .track-list { color: var(--muted-on-dark); border-top: 0.5px solid #2A2C24; }
.track-prive .track-list { color: var(--muted-on-light); border-top: 0.5px solid var(--hair-light); }
.track .arrow-link { margin-top: 30px; }
.track-zakelijk .arrow-link { color: #E4DCC8; }
.track-prive .arrow-link { color: var(--gold-deep); }

/* ---------- Cijferband ---------- */
.stats { background: var(--ink-deep); padding: 64px 36px; }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat-mid { border-left: 0.5px solid var(--hair-dark); border-right: 0.5px solid var(--hair-dark); }
.stat .value { font-family: var(--font-display); font-weight: 500; font-size: clamp(46px, 7vw, 64px); line-height: 1; }
.stat .value.gold-foil { background: var(--gold-foil); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .center-rule { width: 22px; height: 1px; background: #3A3E33; margin: 14px auto; }
.stat .label { color: #777C73; }

/* ---------- Over-teaser ---------- */
.feature { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 40px; padding: 64px 40px; align-items: center; }
.feature.flip { grid-template-columns: 1.18fr 0.82fr; }
.feature-text .eyebrow { color: var(--gold-deep); }
.feature-text h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 4vw, 38px); line-height: 1.12; margin: 18px 0; }
.feature-text p { font-size: 13px; line-height: 1.85; color: var(--muted-on-light); }
.kicker-line { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.kicker-line .rule { width: 34px; height: 1px; background: var(--gold); }

/* ---------- Foto placeholders ---------- */
.photo {
  position: relative; overflow: hidden; border-radius: 2px;
  display: flex; align-items: flex-end; justify-content: center;
  background: radial-gradient(ellipse 80% 80% at 50% 28%, #A3A68C, #65624C);
  background-size: cover; background-position: center;
}
.photo.dark { background: radial-gradient(ellipse 90% 80% at 60% 30%, #45483B, #23261D 60%, var(--ink)); }
.photo.green { background: radial-gradient(ellipse 90% 80% at 50% 35%, #A6BAA8, #6E8270); }
.photo .ph-icon { position: absolute; top: 34px; color: rgba(255,255,255,0.16); }
.photo .ph-cap { font-family: var(--font-label); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.32); padding: 6px 12px; border-radius: 30px; margin-bottom: 16px; position: relative; z-index: 2; }

/* ---------- Quote ---------- */
.quote { position: relative; padding: 66px 40px; text-align: center; }
.quote .mark { font-family: var(--font-display); font-weight: 500; font-size: 56px; line-height: 0; }
.quote blockquote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(24px, 3.4vw, 34px); line-height: 1.4; max-width: 600px; margin: 8px auto 0; }
.quote .cite { margin-top: 28px; }
.quote.on-dark blockquote { color: var(--text-on-dark); }
.quote.on-dark .cite { color: var(--green-light); }

/* ---------- CTA-band ---------- */
.cta-band { text-align: center; padding: 62px 40px; }
.cta-band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 5vw, 46px); margin: 20px 0 28px; }

/* ---------- Footer ---------- */
.site-footer { display: flex; justify-content: space-between; align-items: center; padding: 30px 40px; border-top: 0.5px solid var(--hair-dark); }
.site-footer.on-light { border-color: var(--hair-light); }
.site-footer .wordmark { font-size: 18px; }
.site-footer .label { color: var(--faint-on-dark); }
.site-footer.on-light .wordmark { color: var(--text-on-light); }
.site-footer.on-light .label { color: #8A9085; }

/* ---------- Generieke secties ---------- */
.band-head { text-align: center; margin-bottom: 44px; }
.band-head .eyebrow.gold { color: var(--gold-deep); }
.band-head .eyebrow.green { color: var(--gold-deep); }
.on-dark .band-head .eyebrow.gold { color: var(--gold-light); }
.on-dark .band-head .eyebrow.green { color: var(--green-light); }
.band-head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4vw, 36px); margin-top: 14px; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
.card { background: var(--white); border: 0.5px solid var(--border-light); padding: 26px 22px; text-align: center; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-4px); }
.card i { font-size: 30px; }
.card .gold { color: var(--gold); }
.card .green { color: var(--gold-deep); }
.card h4 { font-family: var(--font-display); font-weight: 500; font-size: 19px; margin: 14px 0 8px; color: var(--text-on-light); }
.card p { font-size: 12px; line-height: 1.7; color: var(--muted-on-light); }

/* ---------- Aanpak (stappen) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 700px; margin: 0 auto; text-align: center; }
.step .n { font-family: var(--font-display); font-size: 30px; }
.step h4 { font-family: var(--font-display); font-weight: 500; font-size: 17px; margin: 8px 0 6px; color: var(--text-on-dark); }
.step p { font-size: 11px; color: var(--muted-on-dark); }

/* ---------- Tijdlijn ---------- */
.timeline { max-width: 580px; margin: 0 auto; border-left: 1px solid #2C3128; padding-left: 30px; display: flex; flex-direction: column; gap: 30px; }
.tl-item { position: relative; }
.tl-item .dot { position: absolute; left: -37px; top: 5px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.tl-item .dot.faint { background: #5C5230; }
.tl-item h4 { font-family: var(--font-display); font-size: 22px; margin: 6px 0 4px; color: var(--text-on-dark); }
.tl-item p { font-size: 12px; color: var(--muted-on-dark); }

/* ---------- Nieuws ---------- */
.filterbar { display: flex; justify-content: center; gap: 10px; padding: 26px 40px; border-bottom: 0.5px solid var(--border-light); }
.pill { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 8px 16px; border-radius: 30px; cursor: none; transition: background .3s var(--ease), color .3s var(--ease); }
.pill[aria-pressed="true"] { background: var(--text-on-light); color: var(--ivory); }
.pill[aria-pressed="false"] { background: transparent; color: var(--muted-on-light); border: 0.5px solid var(--hair-light); }
.tag { font-family: var(--font-label); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; border-radius: 1px; }
.tag.zakelijk { background: #F2E8CE; color: #7A6014; }
.tag.prive { background: #DCE9E0; color: #1F5A40; }
.tag.persoonlijk { background: #DCE9E0; color: #1F5A40; }
.featured { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; background: var(--white); border: 0.5px solid var(--border-light); overflow: hidden; }
.featured .photo { aspect-ratio: 4/3; height: 100%; }
.featured-body { padding: 38px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article { background: var(--white); border: 0.5px solid var(--border-light); overflow: hidden; transition: transform .4s var(--ease); }
.article:hover { transform: translateY(-5px); }
.article .photo { aspect-ratio: 3/2; }
.article .photo .ph-img { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.article:hover .photo .ph-img { transform: scale(1.06); }
.article-body { padding: 22px; }
.article .meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.article .meta .label { color: var(--faint-on-light); }
.article h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.12; margin-bottom: 10px; color: var(--text-on-light); }
.article p { font-size: 12px; line-height: 1.6; color: var(--muted-on-light); }
.newsletter { text-align: center; padding: 56px 40px; }
.newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 26px auto 0; }
.newsletter-form input { flex: 1; background: #1A1C18; border: 0.5px solid #2C3128; border-radius: 1px; padding: 13px 16px; color: var(--text-on-dark); font-family: var(--font-body); font-size: 13px; }
.newsletter-form input::placeholder { color: #6E7268; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; }
.contact-form-col { padding: 50px 44px; border-right: 0.5px solid var(--border-light); }
.contact-form-col h3 { font-family: var(--font-display); font-weight: 500; font-size: 26px; margin-bottom: 26px; color: var(--text-on-light); }
.field { margin-bottom: 16px; }
.field label { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint-on-light); margin-bottom: 7px; display: block; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 13px; color: var(--text-on-light);
  background: var(--white); border: 0.5px solid #D7D6CB; border-radius: 1px; padding: 12px 14px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { padding: 50px 40px; background: var(--white); }
.contact-info h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin-bottom: 24px; color: var(--text-on-light); }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.info-row i { font-size: 19px; margin-top: 2px; }
.info-row i.gold { color: var(--gold); }
.info-row i.green { color: var(--gold-deep); }
.info-row .label { color: var(--faint-on-light); font-size: 9px; }
.info-row .val { font-size: 13px; color: var(--text-on-light); }
.after-note { margin-top: 30px; padding-top: 22px; border-top: 0.5px solid var(--border-light); }
.after-note .label { color: var(--green); margin-bottom: 10px; }
.after-note p { font-size: 12px; color: var(--muted-on-light); }

/* ---------- Animatie-basistoestanden ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); filter: blur(6px); transition: opacity .7s ease, transform .75s var(--ease), filter .7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; filter: blur(0); }
[data-reveal-line] { overflow: hidden; }
[data-reveal-line] > span { display: block; transform: translateY(110%); transition: transform .8s var(--ease); }
[data-reveal-line].revealed > span { transform: none; }
[data-rule] { transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease); }
[data-rule].revealed { transform: scaleX(1); }

/* ---------- Responsief ---------- */
@media (max-width: 820px) {
  .wrap { padding: 0 22px; }
  .utility { padding: 12px 22px; }
  .nav { padding: 16px 22px; }

  /* Mobiel menu: volledig-scherm paneel */
  .nav-links {
    display: flex; position: fixed; inset: 0;
    flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    background: rgba(10,12,10,0.97);
    transform: translateY(-100%); transition: transform .55s var(--ease);
    z-index: 60;
  }
  .site-header.menu-open .nav-links { transform: translateY(0); }
  /* Geen backdrop-filter op mobiel: die maakt een containing block waardoor
     het fixed menu-paneel niet het hele scherm vult. */
  .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(11,13,11,0.95); }
  .nav-links a,
  .site-header.on-light-head:not(.scrolled) .nav-links a { color: #E8EAE5; font-size: 14px; letter-spacing: 0.3em; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links .nav-contact { border: 1px solid rgba(214,180,99,0.55); color: #E4D2A0; padding: 14px 32px; }
  .nav-toggle { display: block; position: relative; z-index: 70; }
  .site-header.menu-open .nav-toggle { color: #F1F3EE !important; }

  .hero { padding-top: 120px; }
  .hero-content { padding: 0 22px 70px; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-photo { background-size: cover !important; background-position: 72% top !important; }

  .subhero, .subhero.flip { grid-template-columns: 1fr; min-height: 0; }
  .subhero-photo { min-height: 320px; order: -1; }
  .subhero-text { padding: 46px 22px 54px; }

  .tracks { grid-template-columns: 1fr; }
  .track { padding: 40px 26px; }
  .track-prive { text-align: left; }
  .track-prive .track-head { flex-direction: row; }
  .track-prive .arrow-link.rev { flex-direction: row; }

  .stats-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-mid { border: none; border-top: 0.5px solid var(--hair-dark); border-bottom: 0.5px solid var(--hair-dark); padding: 28px 0; }

  .manifest { padding: 54px 22px; }
  .feature, .feature.flip { grid-template-columns: 1fr; gap: 26px; padding: 48px 22px; }
  .feature-photo { aspect-ratio: 4/5; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .quote { padding: 52px 24px; }
  .cta-band { padding: 52px 24px; }

  .article-grid { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured .photo { height: auto; aspect-ratio: 16/10; }
  .featured-body { padding: 28px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-col, .contact-info { padding: 40px 24px; }
  .contact-form-col { border-right: none; border-bottom: 0.5px solid var(--border-light); }
  .field-row { grid-template-columns: 1fr; }

  /* Inline grids (use-cases, aanbod) stapelen op mobiel */
  .section [style*="grid-template-columns:repeat(3"],
  .section [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  .section [style*="border-right"] { border-right: none !important; }

  body, a, .btn, .pill { cursor: auto; }
  .cursor-dot { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::after, *::before { animation: none !important; }
  .grain::after { animation: none; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: opacity .4s ease !important; }
  [data-reveal-line] > span { transform: none !important; }
  [data-rule] { transform: scaleX(1) !important; }
  .hero-photo { transform: scale(1) !important; }
}
