/*!
Theme Name: Zielsverbond
Theme URI: https://zielsverbond.nl
Author: Jurgen & DjaleeZ
Description: Officieel WordPress-thema voor Zielsverbond groepscirkels — verbinding van hart tot hart.
Version: 3.0
Text Domain: zielsverbond
*/

/* ── VARIABELEN — Zielsverbond kleurstandaarden ─────────────────────────── */
:root {
  --black:    #020100;   /* donkere posts — puur zwart */
  --ink:      #1C1917;   /* tekst/inkt op licht */
  --muted:    #6B6560;   /* gedempt (footer) */
  --faint:    #A09B96;
  --cream:    #F9F6F1;   /* lichte posts — crème */
  --bone:     #EDE8E1;
  --gold:     #C4A882;   /* goud */
  --gold-d:   #8F7355;   /* donker goud */
  --rose:     #8B4A6B;  --rose-bg:  #F5EBF1;
  --steel:    #2C3E50;  --steel-bg: #E8ECF1;
  --sage:     #4A6741;  --sage-bg:  #EBF0E9;
  --plum:     #6B4A7A;  --plum-bg:  #F0EBF5;
  --white:    #FFFFFF;
  --border:   rgba(28,25,23,0.09);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --r-btn:  2px;
  --r-card: 10px;
  --ease:   0.24s ease;
  --max:    1160px;
  --pad:    7rem 0;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; border: none; background: none; outline: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAFIE ─────────────────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 2rem); }
p  { color: var(--muted); line-height: 1.85; }
p + p { margin-top: 1rem; }
strong { font-weight: 500; color: var(--ink); }

blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--ink);
  line-height: 1.45;
  position: relative;
  padding-left: 2rem;
}
blockquote::before {
  content: '';
  position: absolute;
  left: 0; top: .3rem; bottom: .3rem;
  width: 2px; background: var(--gold);
}

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section    { padding: var(--pad); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--bone  { background: var(--bone); }
.section--dark  { background: var(--black); }
.inner      { max-width: 720px; }
.inner--mid { max-width: 860px; margin: 0 auto; }
.inner--c   { max-width: 720px; margin: 0 auto; text-align: center; }

/* ── EYEBROW ────────────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 1.1rem;
}
.section--dark .eyebrow,
.hero          .eyebrow,
.page-hero     .eyebrow,
.cta-dark      .eyebrow,
.mission-dark  .eyebrow { color: var(--gold); }

/* ── DIVIDER ────────────────────────────────────────────────────────────── */
.divider { width: 48px; height: 1px; background: var(--gold); margin: 1.6rem 0; }
.divider--c { margin: 1.6rem auto; }

/* ── KNOPPEN ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 15px 34px; border-radius: var(--r-btn);
  cursor: pointer; white-space: nowrap;
  transition: opacity var(--ease), transform var(--ease);
}
.btn:hover  { opacity: .82; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--gold      { background: var(--gold);   color: var(--ink); }
.btn--dark      { background: var(--black);  color: var(--white); }
.btn--outline   { background: transparent;   color: var(--ink);   border: 1px solid var(--ink); }
.btn--outline-w { background: transparent;   color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.btn--outline-w:hover { border-color: rgba(255,255,255,.8); opacity: 1; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.btn-row--c { justify-content: center; }

/* ── NAVIGATIE ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(249,246,241,.95);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: .5px solid var(--border);
  transition: background var(--ease), box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(28,25,23,.07); }
.site-header.on-dark  {
  background: rgba(2,1,0,.94);
  border-bottom-color: rgba(255,255,255,.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 2.5rem;
}

/* ── SVG LOGO ───────────────────────────────────────────────────────────── */
.site-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  height: 40px;
}
.site-logo svg {
  height: 40px;
  width: auto;
  max-width: 180px;   /* prevents overflow on narrow screens */
  overflow: visible;
}
.logo-light { display: block; }
.logo-dark  { display: none;  }
.on-dark .logo-light { display: none;  }
.on-dark .logo-dark  { display: block; }

/* ── NAV LINKS ──────────────────────────────────────────────────────────── */
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-size: 13px; font-weight: 400; letter-spacing: .06em;
  color: var(--muted);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover       { color: var(--ink); }
.nav-links a:hover::after{ transform: scaleX(1); }
.on-dark .nav-links a   { color: rgba(255,255,255,.55); }
.on-dark .nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 11.5px !important; font-weight: 500 !important;
  letter-spacing: .14em !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 9px 20px !important;
  border-radius: var(--r-btn) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { opacity: .84 !important; color: var(--ink) !important; }

/* ── HAMBURGER ──────────────────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--ink);
  transition: transform var(--ease), opacity var(--ease);
}
.on-dark .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white); border-top: .5px solid var(--border);
  padding: 1.5rem 2rem 2rem; gap: .8rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; color: var(--muted); padding: .5rem 0; border-bottom: .5px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .nav-cta { display: inline-flex !important; margin-top: .5rem; width: fit-content; }

/* ── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden; padding-top: 68px;
}
.hero__grain, .grain-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px; opacity: .035; pointer-events: none;
}
.hero__glow {
  position: absolute; top: -20%; right: -10%;
  width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle,rgba(196,168,130,.06) 0%,transparent 65%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; padding: 4rem 0 5rem; }
.hero__pre {
  font-size: 11px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1.8rem;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.08; max-width: 780px;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,.62); }
.hero__bar { width: 52px; height: 1px; background: var(--gold); margin: 1.8rem 0; }
.hero__sub {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  font-weight: 300; color: rgba(255,255,255,.52);
  max-width: 500px; line-height: 1.88;
}
.hero__scroll {
  position: absolute; bottom: 2.8rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: .32; animation: bob 2.6s ease-in-out infinite;
}
.hero__scroll span { font-size: 9.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--white); }
.hero__scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero { background: var(--black); padding: 9rem 0 5.5rem; position: relative; overflow: hidden; }
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.52); max-width: 560px; font-size: 1.05rem; }
.page-hero__bar { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

/* ── TRUST STRIP ────────────────────────────────────────────────────────── */
.trust-strip { background: var(--bone); padding: 2.2rem 0; border-bottom: .5px solid var(--border); }
.trust-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .7rem;
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.trust-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.trust-dot--plum  { background: var(--plum); }
.trust-dot--sage  { background: var(--sage); }
.trust-dot--steel { background: var(--steel); }
.trust-dot--rose  { background: var(--rose); }
.trust-sep { width: 1px; height: 22px; background: var(--border); }

/* ── PILLARS ────────────────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 4.5rem; }
.pillar  { padding: 2.8rem 2.5rem; border-right: .5px solid var(--border); }
.pillar:last-child { border-right: none; }
.pillar__bar { width: 36px; height: 1.5px; background: var(--gold); margin-bottom: 1.5rem; }
.pillar h3   { font-size: 1.4rem; margin-bottom: .7rem; }
.pillar p    { font-size: .93rem; }

/* ── CIRCLE CARDS ───────────────────────────────────────────────────────── */
.circles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.circle-card {
  background: var(--white); border: .5px solid var(--border);
  border-radius: var(--r-card); padding: 2.4rem;
  position: relative; overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.circle-card:hover { transform: translateY(-4px); box-shadow: 0 18px 52px rgba(28,25,23,.09); }
.circle-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.circle-card--plum::before  { background: var(--plum); }
.circle-card--sage::before  { background: var(--sage); }
.circle-card--steel::before { background: var(--steel); }
.circle-card--rose::before  { background: var(--rose); }

.circle-card__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.circle-card--plum  .circle-card__tag { color: var(--plum); }
.circle-card--sage  .circle-card__tag { color: var(--sage); }
.circle-card--steel .circle-card__tag { color: var(--steel); }
.circle-card--rose  .circle-card__tag { color: var(--rose); }

.cc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.circle-card--plum  .cc-dot { background: var(--plum); }
.circle-card--sage  .cc-dot { background: var(--sage); }
.circle-card--steel .cc-dot { background: var(--steel); }
.circle-card--rose  .cc-dot { background: var(--rose); }

.circle-card h3 { font-size: 1.45rem; margin-bottom: .85rem; line-height: 1.22; }
.circle-card p  { font-size: .92rem; line-height: 1.78; }

.circle-price {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 13px; font-weight: 500;
  color: var(--ink); margin-top: 1rem;
}
.circle-price strong { font-size: 1.1rem; }
.circle-price span   { font-size: 11px; color: var(--faint); font-weight: 300; }

.circle-card__more {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: 11.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  margin-top: 1.2rem; color: var(--gold-d);
  transition: gap var(--ease);
}
.circle-card__more:hover { gap: .75rem; }

.spots-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: 10.5px; font-weight: 500;
  background: var(--bone); color: var(--muted);
  padding: 4px 10px; border-radius: 20px; margin-top: .8rem;
}
.spots-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── CIRCLE DETAIL PAGE ─────────────────────────────────────────────────── */
.circle-section { padding: 5rem 0; border-bottom: .5px solid var(--border); }
.circle-section:last-child { border-bottom: none; }
.circle-section__layout { display: grid; grid-template-columns: 260px 1fr; gap: 5rem; align-items: start; }
.circle-aside { position: sticky; top: 88px; }
.circle-num { font-family: var(--serif); font-size: 5.5rem; font-weight: 300; line-height: 1; margin-bottom: 1rem; }
.circle-section--plum  .circle-num { color: var(--plum); }
.circle-section--sage  .circle-num { color: var(--sage); }
.circle-section--steel .circle-num { color: var(--steel); }
.circle-section--rose  .circle-num { color: var(--rose); }

.circle-badge {
  display: inline-block; padding: 6px 13px; border-radius: 2px;
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.circle-section--plum  .circle-badge { background: var(--plum-bg);  color: var(--plum); }
.circle-section--sage  .circle-badge { background: var(--sage-bg);  color: var(--sage); }
.circle-section--steel .circle-badge { background: var(--steel-bg); color: var(--steel); }
.circle-section--rose  .circle-badge { background: var(--rose-bg);  color: var(--rose); }

.circle-meta { background: var(--bone); border-radius: var(--r-card); padding: 1.6rem 1.8rem; margin-top: 1.8rem; }
.circle-meta dt {
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--faint); margin-top: .9rem;
}
.circle-meta dt:first-child { margin-top: 0; }
.circle-meta dd { font-size: .93rem; color: var(--ink); }
.circle-meta dd strong { color: var(--ink); }

.circle-main h2 { margin-bottom: 1.2rem; }
.circle-main p  { margin-bottom: .9rem; }

.dot-list { display: flex; flex-direction: column; gap: .55rem; margin: 1.4rem 0; }
.dot-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .93rem; color: var(--muted); line-height: 1.65;
}
.dot-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  margin-top: .45rem; flex-shrink: 0;
}
.circle-section--plum  .dot-list li::before { background: var(--plum); }
.circle-section--sage  .dot-list li::before { background: var(--sage); }
.circle-section--steel .dot-list li::before { background: var(--steel); }
.circle-section--rose  .dot-list li::before { background: var(--rose); }
.circle-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--ink); line-height: 1.55;
  margin: 1.8rem 0 1.4rem; padding-left: 1.4rem;
  border-left: 2px solid var(--gold);
}

/* ── QUOTE SECTIE ───────────────────────────────────────────────────────── */
.quote-section { background: var(--bone); padding: 7rem 0; }
.quote-section blockquote { max-width: 700px; margin: 0 auto; padding-left: 2.5rem; }
.quote-attr {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--faint); margin-top: 1.8rem; padding-left: 2.5rem; display: block;
}

/* ── FOUNDERS ───────────────────────────────────────────────────────────── */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; }
.founder-card__avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--bone); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; color: var(--gold-d); margin-bottom: 1rem;
}
.founder-card .role { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-d); margin-bottom: .2rem; }
.founder-card h3 { font-size: 1.6rem; margin-bottom: .7rem; }

/* ── OVER ONS ───────────────────────────────────────────────────────────── */
.guide-layout { display: grid; grid-template-columns: 1fr 1.65fr; gap: 5rem; align-items: start; padding: 5rem 0; border-bottom: .5px solid var(--border); }
.guide-layout.flip { grid-template-columns: 1.65fr 1fr; }
.guide-layout.flip .guide-image { order: 2; }
.guide-layout.flip .guide-text  { order: 1; }
.guide-layout:last-of-type { border-bottom: none; }
.guide-placeholder {
  aspect-ratio: 3/4; background: var(--bone); border-radius: var(--r-card);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; color: var(--faint);
}
.guide-placeholder p { font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.guide-role  { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-d); display: block; margin-bottom: .3rem; }
.guide-name  { font-size: clamp(2rem,3vw,2.8rem); font-weight: 300; margin-bottom: .35rem; }
.guide-tagline { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--muted); margin-bottom: 1.3rem; }
.guide-text p { margin-bottom: .9rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.tag { font-size: 11px; font-weight: 500; letter-spacing: .08em; background: var(--bone); color: var(--muted); padding: 5px 12px; border-radius: 20px; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq { margin-top: 3rem; }
.faq__item { border-bottom: .5px solid var(--border); }
.faq__item:first-child { border-top: .5px solid var(--border); }
.faq__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: 1.12rem; font-weight: 400; color: var(--ink);
  transition: color var(--ease);
}
.faq__btn:hover { color: var(--gold-d); }
.faq__icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq__icon::before,
.faq__icon::after {
  content: ''; position: absolute; background: var(--gold); border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}
.faq__icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__item.open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__item.open .faq__btn { color: var(--gold-d); }
.faq__body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__inner { padding: 0 0 1.6rem; font-size: .96rem; color: var(--muted); line-height: 1.85; max-width: 680px; }

/* ── DARK SECTIE ────────────────────────────────────────────────────────── */
.mission-dark { background: var(--black); padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
.mission-dark h2 { color: var(--white); max-width: 660px; margin: 0 auto 1.2rem; }
.mission-dark p  { color: rgba(255,255,255,.48); max-width: 520px; margin: 0 auto; }

.cta-dark { background: var(--black); padding: 8rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-dark h2 { color: var(--white); font-size: clamp(1.9rem,4vw,3.3rem); max-width: 600px; margin: 0 auto 1rem; }
.cta-dark p  { color: rgba(255,255,255,.45); max-width: 470px; margin: 0 auto; }

/* ── FORMULIER ──────────────────────────────────────────────────────────── */
.form-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: start; }
.form-sticky { position: sticky; top: 88px; }
.form-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-card); padding: 2.8rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: .55rem; }
.form-group--full { grid-column: 1/-1; }
.form-label { font-size: 10.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-d); }
.form-opt   { color: var(--faint); font-weight: 300; text-transform: none; letter-spacing: 0; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; background: var(--cream);
  border: .5px solid var(--border); border-radius: 4px;
  font-size: .94rem; font-family: var(--sans); font-weight: 300; color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,168,130,.14); background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--faint); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09B96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-note { font-size: 11.5px; color: var(--faint); line-height: 1.65; grid-column: 1/-1; }
.form-note a { color: var(--gold-d); text-decoration: underline; text-underline-offset: 2px; }
.form-success { background: var(--sage-bg); border: .5px solid var(--sage); border-radius: var(--r-card); padding: 1.8rem 2rem; color: var(--sage); }
.form-error   { background: var(--rose-bg); border: .5px solid var(--rose); border-radius: var(--r-card); padding: 1.8rem 2rem; color: var(--rose); }
.or-divider {
  display: flex; align-items: center; gap: 1rem;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin: 1.5rem 0;
}
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: .5px; background: var(--border); }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--black); padding: 5rem 0 2.8rem; position: relative; overflow: hidden; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: .5px solid rgba(255,255,255,.07);
}
.footer-brand .site-logo { height: 38px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.38); max-width: 280px; line-height: 1.75; }
.footer-col h4 {
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a  { font-size: .88rem; color: rgba(255,255,255,.4); transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.8rem; font-size: 11.5px; color: rgba(255,255,255,.22); letter-spacing: .04em;
}
.footer-bottom a { color: rgba(255,255,255,.32); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ── UTILITY ────────────────────────────────────────────────────────────── */
.tc { text-align: center; }
.mt-s { margin-top: 1rem; }
.mt-m { margin-top: 2rem; }
.mt-l { margin-top: 3.5rem; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .circle-section__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .circle-aside { position: static; }
  .guide-layout  { grid-template-columns: 1fr; gap: 2.5rem; }
  .guide-layout.flip .guide-image,
  .guide-layout.flip .guide-text { order: unset; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .form-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-sticky { position: static; }
}
@media (max-width: 768px) {
  :root { --pad: 4.5rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .circles-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: .5px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .founders-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-strip__inner { gap: 1.4rem; }
  .trust-sep { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.8rem; }
  .header-inner { padding: 0 1.25rem; }
  /* Logo kleiner op mobiel voor leesbaarheid */
  .site-logo svg { height: 34px; max-width: 150px; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .btn-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .site-logo svg { height: 30px; max-width: 130px; }
}

/* ── HERO BRANDNAME ──────────────────────────────────────────────────────── */
.hero__brandname {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 300;
  letter-spacing: clamp(0.12em, 1vw, 0.22em);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.4rem;
  opacity: 0.96;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
@media (max-width: 480px) {
  .hero__brandname { font-size: clamp(2.2rem, 11vw, 3.8rem); letter-spacing: 0.1em; }
}

/* ── CIRKELS SUBHEADINGS ─────────────────────────────────────────────────── */
.circle-subh {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin: 2rem 0 .8rem;
}
.dot-list--check li::before { content: '✓'; font-weight: 600; }

/* ── WEBSHOP ─────────────────────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.shop-cat-card {
  background: var(--white);
  border: .5px solid var(--border);
  border-radius: var(--r-card);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.shop-cat-card__icon {
  color: var(--gold-d);
  margin-bottom: .4rem;
}
.shop-cat-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}
.shop-cat-card p { color: var(--muted); font-size: .92rem; }
.shop-cat-card .dot-list { margin: .4rem 0 .8rem; }
.shop-soon {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: var(--bone);
  padding: .35rem .8rem;
  border-radius: 20px;
  margin-top: .4rem;
  width: fit-content;
}
@media (max-width: 768px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ── AANMELDEN PAGINA ────────────────────────────────────────────────────── */
.aanmeld-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 5rem; align-items: start;
  margin-top: 3rem;
}
.aanmeld-form-col {}
.aanmeld-sidebar { display: flex; flex-direction: column; gap: 1.8rem; }

/* Form override for native inputs */
.zv-form .form-group label {
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-d);
}
.zv-form .form-group label span[aria-hidden] { color: var(--rose); margin-left: 2px; }
.zv-form .form-optional { text-transform: none; letter-spacing: 0; color: var(--faint); font-weight: 300; }
.zv-form input, .zv-form select, .zv-form textarea {
  width: 100%; padding: 13px 16px; background: var(--cream);
  border: .5px solid var(--border); border-radius: 4px;
  font-size: .94rem; font-family: var(--sans); font-weight: 300; color: var(--ink);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.zv-form input:focus, .zv-form select:focus, .zv-form textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,168,130,.14); background: var(--white); outline: none;
}
.zv-form input::placeholder, .zv-form textarea::placeholder { color: var(--faint); }
.zv-form textarea { min-height: 120px; resize: vertical; }
.zv-form select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09B96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.zv-form .field-error {
  border-color: var(--rose) !important; box-shadow: 0 0 0 3px rgba(139,74,107,.12) !important;
}
.form-disclaimer { font-size: 11.5px; color: var(--faint); margin-top: 1rem; line-height: 1.65; }
.form-disclaimer a { color: var(--gold-d); text-decoration: underline; text-underline-offset: 2px; }
.btn--full { width: 100%; justify-content: center; }

/* Sidebar blokken */
.sidebar-block {
  background: var(--white); border: .5px solid var(--border); border-radius: var(--r-card);
  padding: 2rem 1.8rem;
}
.sidebar-block h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 1rem;
}
.sidebar-block p { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; }
.sidebar-block--dark {
  background: var(--black); border-color: transparent;
}
.sidebar-block--dark h3 { color: var(--white); }
.sidebar-block--dark p  { color: rgba(255,255,255,.5); }

/* Cirkeloverzicht in sidebar */
.sidebar-circles { display: flex; flex-direction: column; gap: .8rem; }
.sidebar-circle {
  padding: .85rem 1rem; border-radius: 6px;
  font-size: .88rem; font-weight: 400; color: var(--ink);
  display: flex; flex-direction: column; gap: .2rem;
  border-left: 3px solid transparent;
}
.sidebar-circle--plum  { background: var(--plum-bg);  border-color: var(--plum); }
.sidebar-circle--sage  { background: var(--sage-bg);  border-color: var(--sage); }
.sidebar-circle--steel { background: var(--steel-bg); border-color: var(--steel); }
.sidebar-circle--rose  { background: var(--rose-bg);  border-color: var(--rose); }
.sc-meta { font-size: 11px; color: var(--faint); font-weight: 300; }

/* ── OVER ONS — FOUNDER FULL ─────────────────────────────────────────────── */
.founder-full {
  display: grid; grid-template-columns: 260px 1fr; gap: 5rem; align-items: start;
  padding: 2rem 0;
}
.founder-full--rev { direction: rtl; }
.founder-full--rev > * { direction: ltr; }
.founder-full__visual {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  position: sticky; top: 100px; text-align: center;
}
.founder-full__avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--steel-bg); border: 2px solid var(--steel);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 3rem; font-weight: 400; color: var(--steel);
}
.founder-full__avatar--rose {
  background: var(--rose-bg); border-color: var(--rose); color: var(--rose);
}
.founder-full__visual .role {
  font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-d);
}
.founder-full__bio h2 { margin-bottom: .4rem; }
.founder-full__bio p  { margin-bottom: 1rem; }

/* Gekleurde pillar bars */
.pillar__bar--steel { background: var(--steel); }
.pillar__bar--rose  { background: var(--rose); }

/* Gold trust dot */
.trust-dot--gold { background: var(--gold); }

/* ── PAGE HERO SLIM ──────────────────────────────────────────────────────── */
.page-hero--slim { padding: 7rem 0 4rem; }
.page-hero--slim h1 { font-size: clamp(1.9rem, 4vw, 3.2rem); }

/* ── GENERIC PAGE / BLOG ─────────────────────────────────────────────────── */
.inner--content { max-width: 740px; }
.page-content { line-height: 1.85; }
.page-content h2, .page-content h3 { margin: 2rem 0 .8rem; }
.page-content p  { margin-bottom: 1rem; }
.page-content ul, .page-content ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.page-content a  { color: var(--gold-d); text-decoration: underline; text-underline-offset: 2px; }
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 3rem; }
.post-card { background: var(--white); border: .5px solid var(--border); border-radius: var(--r-card); padding: 2rem; }
.post-card h2 { font-size: 1.35rem; margin-bottom: .6rem; }
.post-card h2 a:hover { color: var(--gold-d); }
.post-card__excerpt { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }

/* ── RESPONSIVE AANVULLINGEN ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .aanmeld-layout { grid-template-columns: 1fr; gap: 3rem; }
  .aanmeld-sidebar { flex-direction: row; flex-wrap: wrap; }
  .aanmeld-sidebar .sidebar-block { flex: 1 1 280px; }
  .founder-full { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-full--rev { direction: ltr; }
  .founder-full__visual { position: static; flex-direction: row; justify-content: flex-start; }
  .posts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .aanmeld-sidebar { flex-direction: column; }
  .aanmeld-sidebar .sidebar-block { flex: unset; }
}

/* ── HERO TAGLINE (merklijn van de posters) ──────────────────────────────── */
.hero__tagline {
  font-family: var(--sans);
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
}

/* ── CIRKELKAART MET AFBEELDING ──────────────────────────────────────────── */
.circle-card--img { padding: 0; }
.circle-card__img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--black);
}
.circle-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.circle-card:hover .circle-card__img img { transform: scale(1.04); }
.circle-card__body { padding: 1.8rem 2.2rem 2.2rem; }

/* ── CIRKEL SUBTITEL (uit de campagnebeelden) ────────────────────────────── */
.circle-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-d);
  margin: -.5rem 0 1.2rem;
}

/* ── CIRKELFOTO OP DETAILPAGINA ──────────────────────────────────────────── */
.circle-photo {
  border-radius: var(--r-card);
  overflow: hidden;
  margin: 1.6rem 0 2rem;
  box-shadow: 0 16px 48px rgba(2,1,0,.14);
}
.circle-photo img { width: 100%; height: auto; }

/* ── OVER ONS — PORTRETFOTO'S ────────────────────────────────────────────── */
.founder-full__photo {
  width: 100%;
  max-width: 260px;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(2,1,0,.18);
  border: 1px solid var(--gold);
}
.founder-full__photo img { width: 100%; height: auto; }
.samen-photo {
  max-width: 860px;
  margin: 3rem auto 0;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,1,0,.2);
}
.samen-photo img { width: 100%; height: auto; }
