/* ==========================================================================
   Family Church — one-page redesign
   ========================================================================== */

:root {
  /* Gold palette — antique / warm default */
  --gold-primary: #AD8326;
  --gold-deep:    #7A5C18;
  --gold-soft:    #E8D4A0;

  --cream:       #FAF5EC;
  --cream-2:     #F3EADA;
  --ink:         #1F1A14;
  --ink-2:       #2B241B;
  --muted:       #766A58;
  --line:        rgba(31, 26, 20, 0.12);
  --line-light:  rgba(250, 245, 236, 0.14);

  --wel:  #4A7A3F;   /* muted green */
  --niet: #8A4A3C;   /* muted terracotta */

  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', 'Manrope', serif;

  --max: 1280px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: var(--font-display); font-weight: 400; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(250, 245, 236, 0.88);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
}
.nav__brand img { height: 42px; width: auto; transition: filter .3s; }
.nav:not(.is-scrolled) .nav__brand img { filter: drop-shadow(0 2px 14px rgba(0,0,0,.35)); }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink); opacity: .75; transition: opacity .2s;
  letter-spacing: .01em;
}
.nav:not(.is-scrolled) .nav__links a { color: #fff; opacity: .85; text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.nav__links a:hover { opacity: 1; }
.nav__ctas { display: flex; align-items: center; gap: 14px; }
.nav__give {
  font-size: 14px; font-weight: 600; color: var(--gold-deep);
  padding-right: 14px; border-right: 1px solid var(--line);
}
.nav:not(.is-scrolled) .nav__give { color: var(--gold-soft); border-right-color: rgba(255,255,255,.3); }
.nav__menu { display: none; background: none; border: 0; cursor: pointer; color: var(--ink); }
.nav__mobile { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px; font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  font-family: inherit;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--primary { background: var(--gold-primary); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 6px 20px -8px rgba(142, 103, 48, .6); }
.btn--primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn--on-ink { background: var(--gold-primary); color: #1a140c; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold-primary); color: var(--gold-deep); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep);
  padding-bottom: 14px;
  position: relative;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; bottom: 6px;
  width: 28px; height: 1px; background: var(--gold-primary);
}
.eyebrow--gold { color: var(--gold-soft); }
.eyebrow--gold::before { background: var(--gold-primary); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  text-wrap: balance;
}
.section-title em { color: var(--gold-deep); font-style: italic; }
.section-title--light { color: #fff; }
.section-title--light em { color: var(--gold-primary); }

.section-sub {
  font-size: 18px; max-width: 56ch;
  color: inherit; opacity: .82;
  margin-top: 20px;
  text-wrap: pretty;
}

.section {
  padding: 120px 0;
  position: relative;
  scroll-margin-top: 72px;
}
.section--cream { background: var(--cream); }
.section--cream-deep { background: var(--cream-2); }
.section--ink { background: var(--ink); color: #EDE4D2; }
.section--ink .section-sub { color: rgba(255,255,255,.72); }
.section--gold-soft {
  background: linear-gradient(180deg, var(--cream) 0%, var(--gold-soft) 100%);
}
.section--no-pad-bottom { padding-bottom: 0; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--split {
  max-width: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
  margin-bottom: 64px;
}
.section-head__aside {
  font-size: 17px; opacity: .72; max-width: 48ch;
  text-wrap: pretty; justify-self: end;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
}

/* Fullbleed variant */
.hero-fullbleed { position: absolute; inset: 0; transition: transform .15s ease; }
.hero-fullbleed__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: hero-zoom 9s ease-out both;
}
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-fullbleed__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(10,8,4,.82) 0%, rgba(10,8,4,.45) 50%, rgba(10,8,4,.2) 100%),
    linear-gradient(0deg, rgba(10,8,4,.6) 0%, transparent 40%);
}
.hero-fullbleed__content {
  position: absolute; inset: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  animation: hero-in .9s ease-out both;
}
@keyframes hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-fullbleed__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 8vw, 120px);
  line-height: .98;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-fullbleed__body {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  max-width: 42ch;
  margin: 0;
  opacity: .88;
  text-wrap: pretty;
}
.hero-fullbleed__watermark {
  position: absolute;
  right: -4vw; bottom: -6vw;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(180px, 30vw, 460px);
  line-height: 1;
  color: rgba(200, 155, 74, 0.12);
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* Split variant */
.hero-split { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.hero-split__side { position: relative; overflow: hidden; }
.hero-split__side--text {
  background: var(--cream);
  padding: 0 8vw;
  display: flex; flex-direction: column; justify-content: center;
  animation: hero-in .9s ease-out both;
  color: var(--ink);
}
.hero-split__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(48px, 5vw, 88px); line-height: 1;
  letter-spacing: -0.02em; margin: 22px 0 18px;
  text-wrap: balance;
}
.hero-split__body { font-size: 19px; opacity: .82; max-width: 36ch; line-height: 1.5; }
.hero-split__imgfill {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: hero-zoom 9s ease-out both;
}

/* Typographic variant */
.hero-typo { position: absolute; inset: 0; display: flex; align-items: center; background: var(--cream); color: var(--ink); }
.hero-typo__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  animation: hero-in .9s ease-out both;
  z-index: 2;
}
.hero-typo__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(72px, 12vw, 200px);
  line-height: .92;
  letter-spacing: -0.04em;
  margin: 22px 0 28px;
  max-width: 14ch;
}
.hero-typo__flourish { color: var(--gold-primary); }
.hero-typo__body { font-size: clamp(18px, 1.5vw, 22px); max-width: 44ch; opacity: .78; }
.hero-typo__pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, var(--gold-soft) 0%, transparent 45%),
    radial-gradient(circle at 90% 90%, var(--gold-primary) 0%, transparent 35%);
  opacity: .25;
  pointer-events: none;
}

/* Tag */
/* Hero Kicker — stylish label replacing the old tag */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.15vw, 17px);
  letter-spacing: .01em;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.hero-kicker__line {
  width: 36px; height: 1px;
  background: var(--gold-primary);
  display: inline-block;
}
.hero-kicker__text { opacity: .95; }
.hero-split__side--text .hero-kicker,
.hero-typo .hero-kicker { color: var(--gold-deep); }

.hero-fullbleed__dot, .hero-split__dot, .hero-typo__flourish { color: var(--gold-primary); }

/* Tag (legacy, still used nowhere on hero — keep for safety) */
.tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.tag--wel {
  background: rgba(255, 255, 255, 0.16);
  color: var(--gold-soft);
  border: 1px solid rgba(232, 213, 168, 0.4);
}
.tag--niet {
  background: rgba(0, 0, 0, 0.32);
  color: #EDE4D2;
  border: 1px solid rgba(255,255,255,.2);
}
.hero-typo--wel .tag--wel { background: rgba(200, 155, 74, .14); color: var(--gold-deep); border-color: rgba(142, 103, 48, .3); }
.hero-split__side--wel .tag--wel { background: rgba(200, 155, 74, .14); color: var(--gold-deep); border-color: rgba(142, 103, 48, .3); }
.tag__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--gold-primary); color: #fff;
}
.tag--niet .tag__icon { background: var(--niet); }

/* Hero controls */
.hero-arrow {
  position: absolute; bottom: 32px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3;
  transition: background .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.22); }
.hero-arrow--prev { right: 92px; }
.hero-arrow--next { right: 32px; }

.hero-dots {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
  max-width: calc(100vw - 40px);
  flex-wrap: nowrap;
}
.hero-dot {
  position: relative;
  width: clamp(20px, 4vw, 40px); height: 3px;
  background: rgba(255,255,255,.25);
  border: 0; padding: 0; cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 1;
}
.hero-dot__fill {
  position: absolute; inset: 0;
  background: var(--gold-primary);
  transform-origin: left;
  transform: scaleX(0);
}
.hero-dot.is-active .hero-dot__fill {
  animation: dot-fill 7s linear both;
}
@keyframes dot-fill { to { transform: scaleX(1); } }

.hero-counter {
  position: absolute; top: 50%; right: 32px; transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  color: rgba(255,255,255,.6);
  font-size: 11px; letter-spacing: .2em; font-weight: 600;
  display: none; /* de-emphasise — show on wide screens */
}
@media (min-width: 1400px) { .hero-counter { display: flex; gap: 6px; } }
.hero-counter__n { color: var(--gold-soft); }

/* ==========================================================================
   Welcome
   ========================================================================== */
.welkom-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.welkom-grid__right { padding-top: 12px; }
.lede { font-size: 22px; line-height: 1.45; margin: 0 0 16px; text-wrap: pretty; }
.lede--muted { color: var(--muted); font-size: 18px; }
.welkom-grid__ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* ==========================================================================
   Mission / values
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-card {
  padding: 32px 26px;
  border: 1px solid var(--line-light);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(200, 155, 74, .04));
  transition: transform .3s, border-color .3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold-primary); }
.value-card__n {
  font-family: var(--font-display); font-style: italic;
  font-size: 28px; color: var(--gold-primary); display: block; margin-bottom: 32px;
}
.value-card__t { font-size: 22px; margin: 0 0 10px; font-weight: 600; color: #fff; }
.value-card__b { margin: 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.55; }

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(31,26,20,.25); }
.service-card__img { height: 260px; background-size: cover; background-position: center; }
.service-card__body { padding: 32px 32px 36px; }
.service-card__time {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 16px;
}
.service-card__t {
  font-family: var(--font-display); font-weight: 400;
  font-size: 36px; margin: 0 0 14px; letter-spacing: -0.01em;
}
.service-card__b { margin: 0 0 22px; opacity: .8; }
.service-card__list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.service-card__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: flex; align-items: center;
}
.service-card__list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-primary); margin-right: 12px;
}

.services-location {
  margin-top: 56px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.services-location .eyebrow { margin: 0; padding: 0; }
.services-location .eyebrow::before { display: none; }
.services-location p { margin: 0; font-weight: 500; }

/* ==========================================================================
   Connect
   ========================================================================== */
.connect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.connect-card {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  display: flex; flex-direction: column;
  transition: background .3s, border-color .3s, transform .3s;
  cursor: pointer;
}
.connect-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-4px);
}
.connect-card:hover .connect-card__t,
.connect-card:hover .connect-card__d { color: #fff; }
.connect-card:hover .connect-card__when { color: var(--gold-soft); }
.connect-card:hover .connect-card__arrow { color: var(--gold-primary); }
.connect-card__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; flex-wrap: wrap; gap: 4px; }
.connect-card__t {
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; margin: 0; letter-spacing: -0.01em;
  transition: color .3s;
}
.connect-card__when {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-deep);
  transition: color .3s;
}
.connect-card__d { margin: 0; font-size: 14px; opacity: .8; transition: color .3s; line-height: 1.55; }
.connect-card__arrow {
  margin-top: auto; align-self: flex-end;
  color: var(--line); transition: color .3s, transform .3s;
}
.connect-card:hover .connect-card__arrow { transform: translate(3px, -3px); }

/* ==========================================================================
   Agenda
   ========================================================================== */
.agenda-list { list-style: none; padding: 0; margin: 0; }
.agenda-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s;
  cursor: pointer;
}
.agenda-row:hover { padding-left: 16px; }
.agenda-row:first-child { border-top: 1px solid var(--line); }
.agenda-row__date {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  min-width: 64px;
  background: #fff;
}
.agenda-row__day {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1; font-weight: 400;
  color: var(--gold-deep);
}
.agenda-row__month {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; margin-top: 4px; color: var(--muted);
}
.agenda-row__t {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; margin: 0 0 4px; letter-spacing: -0.01em;
}
.agenda-row__time { margin: 0; font-size: 14px; color: var(--muted); }
.agenda-row__tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-deep);
  padding: 6px 12px; border: 1px solid var(--gold-primary); border-radius: 999px;
}
.agenda-row__arrow {
  color: var(--gold-deep); font-size: 22px;
  transition: transform .3s;
}
.agenda-row:hover .agenda-row__arrow { transform: translateX(6px); }
.agenda-row--has-desc { cursor: pointer; }
.agenda-row--has-desc:hover .agenda-row__arrow { transform: translateY(3px); }
.agenda-row__chevron {
  display: block;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  color: var(--gold-deep);
}
.agenda-row.is-open .agenda-row__chevron { transform: rotate(180deg); }
.agenda-row.is-open { padding-left: 0; }
.agenda-row__desc {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  animation: desc-reveal .25s ease both;
}
.agenda-row__desc p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.agenda-row__preview {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
}
.agenda-row__preview-ellipsis {
  color: var(--gold-primary);
  font-weight: 600;
  margin-left: 1px;
}
.agenda-row.is-open .agenda-row__preview {
  display: none;
}

/* ==========================================================================
   Bedankt modal
   ========================================================================== */
.bedankt-modal__panel {
  max-width: 560px;
  text-align: center;
}
.bedankt-modal__scroll {
  padding: 56px 56px 48px;
}
.bedankt-modal__heart {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 24px;
  animation: bedankt-bounce .6s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes bedankt-bounce {
  0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.bedankt-modal__head .ozg-modal__title { font-size: clamp(32px, 5vw, 48px); }
.bedankt-modal__head .ozg-modal__lede  { margin: 0 auto; }
.bedankt-modal__body { text-align: left; margin-top: 8px; }
.bedankt-modal__quote {
  margin: 28px 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(173,131,38,.08), rgba(173,131,38,.04));
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.bedankt-modal__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
@media (max-width: 640px) {
  .bedankt-modal__scroll { padding: 48px 24px 32px; }
  .bedankt-modal__heart  { font-size: 44px; }
}

.agenda-more-wrap {
  padding: 32px 0 0;
  display: flex;
  justify-content: center;
}
.agenda-more {
  appearance: none;
  background: transparent;
  border: 1px solid var(--gold-primary);
  border-radius: 999px;
  padding: 12px 28px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  cursor: pointer;
  letter-spacing: .03em;
  transition: background .2s, color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.agenda-more::after {
  content: '↓';
  font-size: 16px;
  transition: transform .2s;
}
.agenda-more:hover {
  background: var(--gold-primary);
  color: #fff;
  transform: translateY(-1px);
}
.agenda-more:hover::after {
  transform: translateY(2px);
}

@keyframes desc-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Membership
   ========================================================================== */
.membership { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.membership__left .btn { margin-top: 32px; }
.serve-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line-light);
}
.serve-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 15px; color: rgba(255,255,255,.82);
  display: flex; align-items: center;
  transition: color .2s, padding-left .2s;
  cursor: pointer;
}
.serve-list li:nth-child(odd) { padding-right: 16px; }
.serve-list li:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line-light); }
.serve-list li::before {
  content: '+'; margin-right: 12px; color: var(--gold-primary); font-weight: 600;
}
.serve-list li:hover { color: #fff; padding-left: 6px; }
.serve-list li:nth-child(even):hover { padding-left: 22px; }

/* ==========================================================================
   Leaders — horizontal team slider
   ========================================================================== */
.team-section { padding-bottom: 140px; overflow: hidden; }

.team-slider { position: relative; margin-top: 8px; }

.team-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 0 32px;
  -webkit-overflow-scrolling: touch;
}
.team-slider__track::-webkit-scrollbar { display: none; }
.team-slider__spacer {
  flex: 0 0 max(32px, calc((100vw - var(--max)) / 2 + 32px));
}

.team-slide {
  flex: 0 0 clamp(260px, 80vw, 420px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.team-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(142, 103, 48, .35);
}

.team-slide__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #2B241B, var(--ink));
}
.team-slide__photo-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(200, 155, 74, .35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(232, 213, 168, .22), transparent 50%),
    linear-gradient(135deg, #2B241B 0%, #1F1A14 100%);
}
.team-slide__photo-grain {
  position: absolute; inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 3px 3px;
}
.team-slide__count {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--font-display); font-style: italic;
  color: var(--gold-soft);
  font-size: 18px; letter-spacing: .02em;
}
.team-slide__count span { opacity: .55; font-size: 13px; }
.team-slide__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--gold-soft);
  opacity: .75;
}
.team-slide__placeholder span:not(:first-child) {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
}

.team-slide__body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.team-slide__tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep);
}
.team-slide__tag::before {
  content: ''; width: 20px; height: 1px; background: var(--gold-primary);
}
.team-slide__label {
  font-family: var(--font-display); font-weight: 400;
  font-size: 30px; line-height: 1.05; letter-spacing: -0.01em;
  margin: 0;
}
.team-slide__people {
  list-style: none; padding: 0; margin: 6px 0 0;
  border-top: 1px solid var(--line);
}
.team-slide__people li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center;
}
.team-slide__people li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-primary); margin-right: 12px; flex: 0 0 auto;
}

.team-slider__controls {
  display: flex; align-items: center; gap: 32px; margin-top: 28px;
}
.team-slider__progress {
  flex: 1; height: 2px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.team-slider__progress-bar {
  position: absolute; inset: 0;
  background: var(--gold-primary);
  transform-origin: left;
  transition: transform .4s ease;
}
.team-slider__nav { display: flex; align-items: center; gap: 14px; }
.team-slider__nav button {
  width: 44px; height: 44px; border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.team-slider__nav button:hover:not(:disabled) {
  background: var(--gold-primary); border-color: var(--gold-primary); color: #fff;
}
.team-slider__nav button:disabled { opacity: .3; cursor: not-allowed; }
.team-slider__count {
  font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.team-slider__count strong { color: var(--ink); font-weight: 700; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  margin: 0;
  padding: 36px 30px 30px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(142, 103, 48, .18);
  border-radius: var(--r-lg);
  position: relative;
}
.quote-card__mark {
  position: absolute; top: 10px; left: 20px;
  font-family: var(--font-display); font-style: italic;
  font-size: 88px; line-height: 1; color: var(--gold-primary);
  opacity: .3;
}
.quote-card blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 400; font-size: 19px; line-height: 1.4;
  color: var(--ink); position: relative; z-index: 1;
  text-wrap: pretty;
}
.quote-card figcaption {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep);
}

/* ==========================================================================
   Give
   ========================================================================== */
.give { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.give__ibannr {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px;
}
.give__label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.give__val { font-weight: 600; font-family: var(--font-sans); font-variant-numeric: tabular-nums; }
.give__cta { display: grid; gap: 16px; }
.give-tile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
  padding: 28px 28px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-lg);
  transition: background .2s, transform .2s;
}
.give-tile:hover { background: var(--ink-2); transform: translateX(4px); }
.give-tile--alt { background: var(--gold-primary); color: #1a140c; }
.give-tile--alt:hover { background: var(--gold-deep); color: #fff; }
.give-tile__eur {
  font-family: var(--font-display); font-size: 42px; line-height: 1;
  color: var(--gold-primary);
}
.give-tile--alt .give-tile__eur { color: #1a140c; }
.give-tile__t { font-size: 18px; font-weight: 600; }
.give-tile__arrow { font-size: 22px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 120px; align-items: center; }
.contact-address {
  margin: 32px 0 0;
  font-style: normal;
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.78);
}
.contact-address strong { display: block; color: #fff; margin-bottom: 4px; }
.contact-address a { color: var(--gold-primary); border-bottom: 1px solid rgba(200, 155, 74, .4); }
.contact-socials { display: flex; gap: 10px; margin-top: 28px; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-light);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, border-color .2s, color .2s;
}
.contact-socials a:hover { background: var(--gold-primary); border-color: var(--gold-primary); color: #fff; }

/* Fake map */
.map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #2B241B, #1F1A14);
  border: 1px solid var(--line-light);
  overflow: hidden;
}
.map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250,245,236,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,245,236,.05) 1px, transparent 1px),
    linear-gradient(58deg, transparent 49.6%, rgba(200, 155, 74, .14) 49.6%, rgba(200, 155, 74, .14) 50.2%, transparent 50.2%),
    linear-gradient(-28deg, transparent 67%, rgba(200, 155, 74, .10) 67%, rgba(200, 155, 74, .10) 67.5%, transparent 67.5%);
  background-size: 8px 8px, 8px 8px, 100% 100%, 100% 100%;
}
.map__pin {
  position: absolute; top: 52%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
}
.map__pin-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(200, 155, 74, .3), 0 0 0 6px rgba(200, 155, 74, .14);
  animation: pin-pulse 2s ease-in-out infinite;
}
@keyframes pin-pulse {
  50% { box-shadow: 0 0 0 4px rgba(200, 155, 74, .3), 0 0 0 10px rgba(200, 155, 74, .08); }
}
.map__pin-label {
  margin-top: 5px;
  font-size: 7px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(10,8,4,.75); padding: 3px 6px; border-radius: var(--r-sm);
}
.map__street {
  position: absolute;
  font-size: 7px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  white-space: nowrap;
}
/* Zoomed-out regional view — labels float on a near-empty canvas */
.map__street--1, .map__street--2, .map__street--3, .map__street--4, .map__street--6 {
  display: none;
}
/* Nijkerk — our city, centered near the pin */
.map__street--5 { top: 54%; left: 50%; transform: translateX(-50%) translateY(4px); font-size: 11px; color: rgba(232, 213, 168, .82); letter-spacing: .34em; font-weight: 700; }
/* A28 — diagonal motorway indicator */
.map__street--7 { top: 28%; left: 66%; transform: rotate(58deg); font-weight: 700; color: rgba(200, 155, 74, .55); font-size: 7px; letter-spacing: .26em; }
/* Surrounding towns, spread across the canvas */
.map__street--8 { top: 34%; left: 18%; font-size: 8px; color: rgba(232, 213, 168, .42); letter-spacing: .28em; font-weight: 700; }
.map__street--9 { top: 18%; right: 18%; font-size: 8px; color: rgba(232, 213, 168, .42); letter-spacing: .28em; font-weight: 700; }
.map__street--10 { bottom: 16%; left: 22%; font-size: 8px; color: rgba(232, 213, 168, .42); letter-spacing: .28em; font-weight: 700; }
.map__compass {
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(200, 155, 74, .4);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; letter-spacing: .05em;
  color: var(--gold-soft);
  background: rgba(10, 8, 4, .4);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #14110C;
  color: rgba(255,255,255,.6);
  padding: 72px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-light);
}
.footer__brand img { height: 48px; margin-bottom: 18px; }
.footer__brand p { margin: 0; font-family: var(--font-display); font-style: italic; color: var(--gold-soft); font-size: 18px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav h4, .footer__contact h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-primary); margin: 0 0 18px;
}
.footer__nav a { font-size: 15px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__nav a:hover { color: var(--gold-soft); }
.footer__contact p { margin: 0 0 10px; font-size: 15px; }
.footer__contact a { color: var(--gold-primary); font-size: 15px; }
.footer__base {
  display: flex; justify-content: space-between; padding-top: 28px;
  font-size: 12px; color: rgba(255,255,255,.4);
}

/* ==========================================================================
   Tweaks panel
   ========================================================================== */
.tweaks {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 100;
  width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: 0 30px 60px -20px rgba(31, 26, 20, .3);
  font-size: 13px;
}
.tweaks__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.tweaks__badge {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(200, 155, 74, .2);
}
.tweaks__head h3 { margin: 0; font-size: 14px; font-weight: 700; letter-spacing: .02em; }
.tweaks__group + .tweaks__group { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.tweaks__label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.tweaks__swatches { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.tweaks__swatch {
  display: flex; flex-direction: column; gap: 6px;
  padding: 6px; background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer;
  transition: border-color .2s;
}
.tweaks__swatch.is-on { border-color: var(--ink); }
.tweaks__swatch-bar { height: 24px; border-radius: 3px; }
.tweaks__swatch-name { font-size: 11px; font-weight: 600; text-align: center; }

.tweaks__stack { display: flex; flex-direction: column; gap: 6px; }
.tweaks__row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer;
  text-align: left;
}
.tweaks__row.is-on { border-color: var(--ink); background: var(--cream); }
.tweaks__row-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--line);
  flex: 0 0 auto;
}
.tweaks__row.is-on .tweaks__row-dot { border-color: var(--gold-primary); background: var(--gold-primary); }
.tweaks__row-name { display: block; font-size: 13px; font-weight: 600; }
.tweaks__row-desc { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .welkom-grid, .membership, .contact, .give { grid-template-columns: 1fr; gap: 40px; }
  .section-head--split { grid-template-columns: 1fr; }
  .section-head__aside { justify-self: start; }
  .values-grid, .connect-grid, .quotes-grid { grid-template-columns: 1fr 1fr; }
  .team-groups { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__side--img { display: none; }
}
@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .nav__links { display: none; }
  .nav__menu { display: flex; flex-direction: column; gap: 4px; padding: 8px; }
  .nav__menu span { width: 20px; height: 2px; background: currentColor; display: block; }
  .nav:not(.is-scrolled) .nav__menu { color: #fff; }
  .nav__mobile.is-open {
    display: flex;
    flex-direction: column;
    background: #fff; padding: 16px 32px 24px; border-top: 1px solid var(--line);
    gap: 14px;
  }
  .nav__give { display: none; }
  .values-grid, .connect-grid, .quotes-grid, .give__ibannr { grid-template-columns: 1fr; }
  .agenda-row { grid-template-columns: 64px 1fr; gap: 16px; }
  .agenda-row__tag, .agenda-row__arrow { display: none; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__base { flex-direction: column; gap: 8px; }
  .hero-arrow { display: none; }
  .tweaks { right: 12px; bottom: 12px; width: calc(100vw - 24px); max-width: 280px; }
  .serve-list { grid-template-columns: 1fr; }
  .serve-list li:nth-child(even) { padding-left: 0; border-left: 0; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .welkom-grid { gap: 32px; }
  .membership { gap: 40px; }
  .give { gap: 40px; }
  .contact { padding-bottom: 80px; }
  .section-head--split { gap: 20px; }
  .hero { min-height: 100svh; }
  .hero-dots { bottom: 24px; }
  .lede { font-size: 18px; }
  .service-card__img { height: 200px; }
  .service-card__body { padding: 24px 24px 28px; }
  .team-slider__controls { gap: 16px; }
  .nav__ctas .btn--sm {
    text-align: center;
    font-weight: 800;
  }
}

/* ==========================================================================
   Nav — "Op zoek naar God?" trigger
   ========================================================================== */
.nav__seeking {
  appearance: none; background: transparent; border: 0;
  font: inherit; cursor: pointer;
  font-size: 13px; font-weight: 600;
  color: var(--gold-primary);
  padding: 6px 2px;
  position: relative;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s;
}
.nav__seeking::after {
  content: ""; position: absolute;
  left: 2px; right: 2px; bottom: 2px;
  height: 1px; background: currentColor;
  transform: scaleX(.6); transform-origin: left;
  transition: transform .3s ease;
}
.nav__seeking:hover { color: var(--gold-deep); }
.nav__seeking:hover::after { transform: scaleX(1); }
.nav:not(.is-scrolled) .nav__seeking { color: var(--gold-soft); }
.nav:not(.is-scrolled) .nav__seeking:hover { color: #fff; }

.nav__mobile-seeking {
  appearance: none; background: transparent; border: 0;
  font: inherit; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600;
  color: var(--gold-primary);
  padding: 4px 0;
}

@media (max-width: 920px) {
  .nav__seeking { display: none; }
}

/* ==========================================================================
   Footer — Op zoek naar God button (inline link style)
   ========================================================================== */
.footer__link-btn {
  appearance: none; background: transparent; border: 0;
  padding: 0; margin: 0;
  font: inherit; text-align: left; cursor: pointer;
  color: var(--gold-primary);
  font-weight: 600;
  transition: color .2s;
}
.footer__link-btn:hover { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================================
   Contact form
   ========================================================================== */
.cform {
  position: relative;
  background: linear-gradient(160deg, #FBF5E8 0%, #F5E8D0 100%);
  border-radius: var(--r-lg);
  padding: 40px 40px 36px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.6);
  overflow: hidden;
}
.cform::before {
  content: ""; position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(200,155,74,.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cform::after {
  content: ""; position: absolute;
  bottom: -60px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(232, 213, 168, .4), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cform > * { position: relative; }

.cform__head { margin-bottom: 28px; }
.cform__wave {
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  transform-origin: 70% 70%;
  animation: cform-wave 2.4s ease-in-out infinite;
}
@keyframes cform-wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(14deg); }
  20%, 40% { transform: rotate(-8deg); }
}
.cform__title {
  font-family: var(--font-display);
  font-size: 38px; line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
  margin: 8px 0 8px;
}
.cform__lede {
  font-size: 15px; line-height: 1.55;
  color: rgba(26, 20, 12, .7);
  margin: 0;
  max-width: 40ch;
}

.cform__row { margin-bottom: 16px; }
.cform__field { display: block; }
.cform__field > span {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(26, 20, 12, .6);
  margin-bottom: 8px;
}
.cform__field input,
.cform__field textarea {
  display: block; width: 100%;
  padding: 14px 16px;
  font: inherit; font-size: 15px;
  background: rgba(255, 255, 255, .85);
  border: 1.5px solid rgba(200, 155, 74, .25);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: rgba(26, 20, 12, .35); }
.cform__field input:focus,
.cform__field textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 155, 74, .12);
}
.cform__field textarea { resize: vertical; min-height: 96px; }

.cform__greet { border: 0; padding: 0; margin: 6px 0 22px; }
.cform__greet legend {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(26, 20, 12, .6);
  margin-bottom: 10px;
  padding: 0;
}
.cform__greet-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cform__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .7);
  border: 1.5px solid rgba(200, 155, 74, .25);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px; font-weight: 600;
  color: rgba(26, 20, 12, .75);
  transition: all .18s;
}
.cform__chip:hover { background: #fff; transform: translateY(-1px); }
.cform__chip input { position: absolute; opacity: 0; pointer-events: none; }
.cform__chip-emoji { font-size: 16px; line-height: 1; }
.cform__chip.is-on {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #1a140c;
  box-shadow: 0 6px 14px -4px rgba(200, 155, 74, .6);
}

.cform__submit {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px;
}
.cform__submit span { transition: transform .25s; display: inline-block; }
.cform__submit:hover span { transform: translateX(4px); }

.cform__sent {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(126, 180, 126, .18);
  border: 1.5px solid rgba(106, 160, 106, .4);
  border-radius: var(--r-md);
  color: #2d5c2d;
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.cform.is-sent .cform__sent { opacity: 1; transform: translateY(0); }
.cform__sent-emoji { font-size: 20px; }

@media (max-width: 640px) {
  .cform { padding: 32px 24px 28px; }
  .cform__title { font-size: 30px; }
  .cform__wave { font-size: 32px; }
}

/* ==========================================================================
   "Op zoek naar God" modal
   ========================================================================== */
.ozg-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14, 11, 6, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 16px;
  animation: ozg-fade .25s ease;
}
@keyframes ozg-fade { from { opacity: 0; } to { opacity: 1; } }

.ozg-modal__panel {
  position: relative;
  width: 100%; max-width: 760px;
  max-height: min(900px, calc(100vh - 64px));
  background: var(--cream, #F7F1E6);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .45);
  overflow: hidden;
  display: flex; flex-direction: column;
  animation: ozg-slide .35s cubic-bezier(.2, .8, .2, 1);
}
@keyframes ozg-slide {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.ozg-modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.ozg-modal__close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }

.ozg-modal__scroll {
  overflow-y: auto;
  padding: 64px 72px 48px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) transparent;
}
.ozg-modal__scroll::-webkit-scrollbar { width: 6px; }
.ozg-modal__scroll::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 3px;
}

.ozg-modal__head {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(200, 155, 74, .25);
}
.ozg-modal__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 16px 0 16px;
}
.ozg-modal__lede {
  font-size: 18px; line-height: 1.55;
  color: rgba(26, 20, 12, .7);
  max-width: 52ch;
  margin: 0;
}

.ozg-modal__body p {
  font-size: 16px; line-height: 1.75;
  color: rgba(26, 20, 12, .84);
  margin: 0 0 20px;
  max-width: 60ch;
  text-wrap: pretty;
}
.ozg-modal__h {
  font-family: var(--font-display);
  font-size: 26px; line-height: 1.15;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-deep);
  margin: 40px 0 16px;
}
.ozg-modal__h:first-child { margin-top: 0; }

.ozg-modal__foot {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 155, 74, .25);
  display: flex; flex-wrap: wrap; gap: 12px;
}

@media (max-width: 640px) {
  .ozg-modal { padding: 0; }
  .ozg-modal__panel { border-radius: 0; max-height: 100vh; height: 100vh; }
  .ozg-modal__scroll { padding: 56px 24px 32px; }
  .ozg-modal__title { font-size: 36px; }
  .ozg-modal__h { font-size: 22px; margin-top: 32px; }
  .ozg-modal__body p { font-size: 15px; }
}

/* ==========================================================================
   DNA-document modal (extends .ozg-modal)
   ========================================================================== */
.dna-modal__quote {
  position: relative;
  margin: 32px 0 40px;
  padding: 28px 32px 28px 56px;
  background: linear-gradient(180deg, rgba(200, 155, 74, .10), rgba(200, 155, 74, .04));
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.dna-modal__quote-mark {
  position: absolute; top: 6px; left: 18px;
  font-family: var(--font-display);
  font-size: 64px; line-height: 1;
  color: var(--gold-primary);
  opacity: .5;
}
.dna-modal__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px; line-height: 1.5;
  color: var(--ink);
  margin: 0 0 10px !important;
  max-width: none !important;
}
.dna-modal__quote-cite {
  font-style: normal;
  font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
}

.dna-modal__list {
  list-style: none;
  padding: 0; margin: 8px 0 0;
  counter-reset: dna;
}
.dna-modal__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(200, 155, 74, .22);
}
.dna-modal__item:last-child { padding-bottom: 0; }
.dna-modal__num {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1;
  font-weight: 400;
  color: var(--gold-primary);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.dna-modal__item-body p {
  margin-bottom: 14px;
}
.dna-modal__item-body p:last-child { margin-bottom: 0; }
.dna-modal__item .dna-modal__h {
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.2;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  margin: 0 0 12px;
}

@media (max-width: 640px) {
  .dna-modal__quote { padding: 22px 20px 22px 40px; margin: 24px 0 28px; }
  .dna-modal__quote-mark { font-size: 48px; left: 10px; }
  .dna-modal__quote-text { font-size: 16px; }
  .dna-modal__item { grid-template-columns: 44px 1fr; gap: 14px; padding: 22px 0; }
  .dna-modal__num { font-size: 24px; }
  .dna-modal__item .dna-modal__h { font-size: 20px; }
}
