/* ZorgGerr — Section-specific styles */

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232, 241, 213, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(244, 221, 208, 0.5) 0%, transparent 55%),
    var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { position: relative; z-index: 3; }
.hero-text h1 {
  margin: 28px 0 32px;
  max-width: 18ch;
}
.hero-text em { color: var(--leaf-shadow); }
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Hero visual */
.hero-visual { position: relative; min-height: 520px; }
.hero-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
}
.hero-photo-main {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  overflow: hidden;
  background: linear-gradient(160deg, var(--leaf-wash), var(--blush));
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-photo-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo-card {
  position: absolute;
  background: var(--paper);
  padding: 14px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: float-card 6s ease-in-out infinite;
}
.hero-card-1 { top: 14%; left: -36px; animation-delay: 0s; }
.hero-card-2 { bottom: 12%; right: -20px; padding: 16px 20px; animation-delay: 1.5s; border-radius: var(--r-md); }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-photo-card-t { font-weight: 700; font-size: 13px; color: var(--ink); }
.hero-photo-card-d { font-size: 12px; color: var(--ink-mute); }
.hero-photo-card-num { font-weight: 700; font-size: 17px; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hero-photo-leaf {
  position: absolute;
  bottom: -30px;
  left: -40px;
  z-index: 1;
  animation: leaf-sway 8s ease-in-out infinite;
}
@keyframes leaf-sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Marquee under hero */
.hero-marquee {
  margin-top: 80px;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(31,44,26,0.08);
  border-bottom: 1px solid rgba(31,44,26,0.08);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
}
.marquee-track span { padding-right: 0; display: inline-flex; align-items: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 0; }
  .hero-photo-wrap { max-width: 360px; margin: 0 auto; }
  .marquee-track { font-size: 20px; }
}

/* =========================================
   SECTION HEAD
   ========================================= */
.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-head .eyebrow { display: inline-flex; }
.section-head h2 { margin: 20px 0 24px; }
.section-head em { color: var(--leaf-shadow); }
.section-head .lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 18px;
}
.section-head-left { text-align: left; margin: 0 0 48px; }

/* =========================================
   ABOUT
   ========================================= */
.about {
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left { position: relative; }
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--leaf-wash);
  box-shadow: var(--shadow-lg);
  max-width: 460px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-photo-tag-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.about-photo-tag-role { font-size: 12px; color: var(--ink-mute); white-space: nowrap; }

.about-right h2 { margin: 18px 0 20px; max-width: 18ch; }
.about-right em { color: var(--leaf-shadow); }
.about-right .lead {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 36px;
}
.about-pillars-title {
  margin: 32px 0 16px;
  color: var(--ink-soft);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pillars li {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid rgba(31,44,26,0.05);
}
.pillars h4 { font-size: 16px; margin: 0 0 6px; }
.pillars p { font-size: 14px; color: var(--ink-soft); line-height: 1.45; }
.pillar-icon { flex-shrink: 0; }

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 100%; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr; }
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,44,26,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,241,213,0.6) 0%, transparent 60%);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--leaf-wash);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.service-card h3 { font-size: 24px; margin: 6px 0 0; }
.service-card p { color: var(--ink-soft); line-height: 1.55; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--leaf-shadow);
}
.service-card-link:hover { gap: 12px; }

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Featured service — Holistische familie- & systeembegeleiding */
.service-featured {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: linear-gradient(135deg, var(--leaf-deep) 0%, var(--leaf-shadow) 100%);
  color: var(--cream);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 460px;
}
.service-featured-visual {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(168, 212, 95, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(244, 221, 208, 0.18) 0%, transparent 60%),
    linear-gradient(160deg, rgba(74, 155, 46, 0.4), rgba(31, 44, 26, 0.6));
  overflow: hidden;
  min-height: 360px;
}
.service-featured-rings {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
}
.service-featured-rings span {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid rgba(168, 212, 95, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ring-pulse 6s ease-in-out infinite;
}
.service-featured-rings span:nth-child(1) { width: 180px; height: 180px; animation-delay: 0s; }
.service-featured-rings span:nth-child(2) { width: 280px; height: 280px; animation-delay: 1.5s; }
.service-featured-rings span:nth-child(3) { width: 380px; height: 380px; animation-delay: 3s; }
.service-featured-rings span:nth-child(4) { width: 480px; height: 480px; animation-delay: 4.5s; }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.6; }
}

.service-featured-body {
  padding: 56px 56px 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.service-featured-body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--cream);
  margin-top: 8px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.service-featured-lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(251, 248, 241, 0.85);
  margin-bottom: 8px;
  max-width: 56ch;
}
.service-featured-points {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.service-featured-points li {
  display: flex;
  gap: 12px;
  color: rgba(251, 248, 241, 0.92);
  font-size: 15px;
  line-height: 1.45;
  align-items: flex-start;
}
.service-featured-points svg circle { fill: rgba(255, 255, 255, 0.2); }
.service-featured-points svg path { stroke: var(--leaf-bright); }
.service-featured .btn { background: var(--cream); color: var(--ink); align-self: flex-start; }
.service-featured .btn:hover { background: var(--paper); color: var(--ink); }

@media (max-width: 960px) {
  .service-featured { grid-template-columns: 1fr; min-height: 0; }
  .service-featured-visual { min-height: 200px; }
  .service-featured-body { padding: 36px 28px; }
  .service-featured-points { grid-template-columns: 1fr; }
}

/* =========================================
   METHOD
   ========================================= */
.method {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  margin: 0 var(--pad-x);
  padding-left: 0;
  padding-right: 0;
}
.method::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,197,63,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.method .section-head h2, .method .section-head h2 em { color: var(--cream); }
.method .section-head em { color: var(--leaf-bright); }
.method .lead { color: rgba(251,248,241,0.7); }
.section-head-light .eyebrow { color: var(--leaf-bright); }
.section-head-light .eyebrow::before { background: var(--leaf-bright); }

.method-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}
.method-steps li {
  background: rgba(31,44,26,0.6);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  align-items: center;
  gap: 28px;
  position: relative;
}
.method-step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-style: italic;
  color: var(--leaf-bright);
  font-weight: 300;
  line-height: 1;
}
.method-step-body h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 8px;
}
.method-step-body p {
  color: rgba(251,248,241,0.75);
  line-height: 1.5;
  font-size: 16px;
}
.method-step-leaf { justify-self: end; opacity: 0.6; }

.method-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(139,197,63,0.1);
  border: 1px solid rgba(139,197,63,0.25);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  margin: 40px auto 0;
  max-width: 920px;
}
.method-note p {
  color: rgba(251,248,241,0.85);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .method { margin: 0; border-radius: 0; }
  .method-steps li { grid-template-columns: 70px 1fr; padding: 28px 24px; gap: 20px; }
  .method-step-num { font-size: 40px; }
  .method-step-leaf { display: none; }
}

/* =========================================
   TARIEVEN
   ========================================= */
.tarieven { position: relative; overflow: hidden; }
.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.tarief-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1.5px solid rgba(31,44,26,0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.tarief-card.featured {
  border-color: var(--leaf-deep);
  background: linear-gradient(160deg, var(--paper) 0%, var(--leaf-wash) 100%);
}
.tarief-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tarief-card-head h3 {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
}
.tarief-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--leaf-shadow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tarief-desc {
  color: var(--ink-soft);
  font-size: 14px;
}
.tarieven-footnote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--leaf-wash);
  padding: 18px 22px;
  border-radius: var(--r-md);
  margin: 36px auto 0;
  max-width: 720px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 800px) {
  .tarieven-grid { grid-template-columns: 1fr; }
  .tarief-price { font-size: 44px; }
}

/* =========================================
   VERWIJZERS
   ========================================= */
.verwijzers {
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
}
.verwijzers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.verwijzers-left h2 { margin: 18px 0 20px; max-width: 16ch; }
.verwijzers-left em { color: var(--leaf-shadow); }
.verwijzers-left .lead {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.check-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  align-items: flex-start;
}
.check-list li svg { margin-top: 2px; flex-shrink: 0; }
.verwijzers-codes {
  display: flex;
  gap: 14px;
}
.code-box {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 12px 18px;
  border: 1px solid rgba(31,44,26,0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.code-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--leaf-shadow);
}
.code-value {
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
  .verwijzers-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================
   FAQ
   ========================================= */
.faq { background: var(--cream); }
.faq-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 100px;
}
.faq-side h2 { margin: 18px 0 20px; max-width: 12ch; }
.faq-side em { color: var(--leaf-shadow); }
.faq-side-deco {
  margin-top: 24px;
  opacity: 0.4;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid rgba(31,44,26,0.06);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.open {
  border-color: var(--leaf-deep);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.faq-toggle {
  width: 32px; height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .3s ease;
}
.faq-item.open .faq-toggle { background: var(--leaf-wash); transform: rotate(45deg); }
.faq-toggle-v { transition: transform .3s ease, opacity .3s ease; }

.faq-a-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a-wrap { max-height: 400px; }
.faq-a {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}
@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-side { position: static; }
  .faq-side-deco { display: none; }
}

/* =========================================
   AANMELDEN
   ========================================= */
.aanmelden {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  overflow: hidden;
}
.aanmelden-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.aanmelden-left { position: sticky; top: 100px; }
.aanmelden-left h2 { margin: 18px 0 20px; max-width: 12ch; }
.aanmelden-left em { color: var(--leaf-shadow); }
.aanmelden-left .lead { color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.aanmelden-meta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.meta-line {
  display: flex;
  gap: 14px;
  align-items: center;
}
.meta-icon {
  width: 44px; height: 44px;
  background: var(--leaf-wash);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.meta-line-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf-shadow);
  margin-bottom: 2px;
}
.meta-line a, .meta-line span:not(.meta-line-label) {
  font-weight: 600;
  color: var(--ink);
}

.aanmelden-form-wrap {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.aanmelden-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.input-error { border-color: var(--error) !important; background: var(--error-soft); }
.consent-error span { color: var(--error); }

.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.radio-group-tight .radio-chip { flex: 1; min-width: 0; justify-content: center; }
.radio-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--cream);
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(31,44,26,0.08);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s ease;
}
.radio-chip:hover { background: var(--leaf-wash); }
.radio-chip.on {
  background: var(--leaf-wash);
  border-color: var(--leaf-deep);
  color: var(--leaf-shadow);
  font-weight: 600;
}
.radio-chip input { display: none; }

.aanmelden-submit, .contact-submit {
  align-self: flex-start;
  margin-top: 8px;
  padding: 16px 28px;
  font-size: 15px;
}

.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success-leaf {
  display: inline-flex;
  background: var(--leaf-wash);
  width: 96px; height: 96px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 12px;
}
/* Aanmelden mode toggle (Persoon / Organisatie) */
.mode-toggle {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31, 44, 26, 0.08);
}
.mode-toggle-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.mode-toggle-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mode-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1.5px solid rgba(31, 44, 26, 0.08);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
  color: var(--ink);
}
.mode-option:hover { border-color: var(--leaf-soft); transform: translateY(-1px); }
.mode-option.on {
  background: linear-gradient(160deg, var(--leaf-wash) 0%, var(--paper) 100%);
  border-color: var(--leaf-deep);
  box-shadow: 0 4px 14px -8px rgba(74,155,46,0.35);
}
.mode-option.on .mode-icon {
  background: var(--leaf-deep);
  color: var(--cream);
}
.mode-icon {
  width: 44px;
  height: 44px;
  background: var(--paper);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--leaf-shadow);
  transition: background .15s ease, color .15s ease;
}
.mode-option-t {
  display: block;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 2px;
}
.mode-option-d {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.3;
}
.mode-option.on .mode-option-d { color: var(--ink-soft); }

@media (max-width: 540px) {
  .mode-toggle-options { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .aanmelden-inner { grid-template-columns: 1fr; gap: 32px; }
  .aanmelden-left { position: static; }
  .aanmelden-form-wrap { padding: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT
   ========================================= */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left h2 { margin: 18px 0 20px; max-width: 10ch; }
.contact-left em { color: var(--leaf-shadow); }
.contact-left .lead { color: var(--ink-soft); font-size: 18px; line-height: 1.6; margin-bottom: 32px; }

.contact-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,44,26,0.05);
}
.contact-person {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31,44,26,0.08);
  margin-bottom: 24px;
}
.contact-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--leaf-wash);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.contact-list-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-list li a, .contact-list li span:not(.contact-list-label) {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-list li { grid-template-columns: 100px 1fr; }
}
