/* ============================================
   Logeerhuis Fay — Stylesheet
   ============================================ */

/* --- Tokens --- */
:root {
  --sage: #638872;          /* Russian Green — primary */
  --sage-dark: #30253E;     /* Dark Purple — deep panels, hero, footer */
  --sage-light: #E4F0EA;   /* Cambridge Blue tint — light backgrounds */
  --warm: #C3C88C;          /* Sage — accent highlights */
  --warm-light: #F2F3E8;   /* Sage tint */
  --pewter: #80B9B1;        /* Pewter Blue — secondary */
  --cambridge: #94C7B4;     /* Cambridge Blue — tertiary */
  --linen: #EFF1E9;         /* Linen — subtle section bg */
  --cream: #FAFCF8;         /* Page background */
  --text: #30253E;          /* Dark Purple — headings */
  --text-s: #514868;        /* Purple mid — body text */
  --text-m: #8B849A;        /* Purple muted — labels */
  --border: #D8DDD2;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-lg: 16px;
  --max-w: 1100px;
  --max-w-narrow: 700px;
  --focus: #638872;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.78;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-family: 'Lora', serif; font-weight: 400; line-height: 1.35; }
a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.container-mid { max-width: 840px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }
.bg-cream { background: var(--cream); }
.bg-linen { background: var(--linen); }
.bg-white { background: var(--white); }
.bg-sage-light { background: var(--sage-light); }
.section-pad { padding: 5rem 0; }

/* --- Skip link --- */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--sage); color: var(--white);
  padding: 0.5rem 1rem; z-index: 200;
  font-size: 0.85rem; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* --- Focus visible --- */
*:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,251,247,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--sage-dark);
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-logo-text strong {
  font-weight: 700;
  color: var(--sage-dark);
  font-size: 1.4rem;
  display: block;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-s);
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a:focus { color: var(--sage-dark); }
.nav-links a.active {
  color: var(--sage-dark);
  font-weight: 500;
}

.nav-contact {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
  cursor: pointer;
}
.nav-contact:hover { background: var(--sage-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  margin-top: 68px;
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 760px;
  overflow: hidden;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,56,50,0) 30%, rgba(58,56,50,0.55) 100%);
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 3.5rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  max-width: 600px;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 1.5rem;
}
.hero-btn {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.3s;
  cursor: pointer;
}
.hero-btn:hover { background: var(--sage-dark); }

/* ============================================
   PAGE HERO (subpagina's — split like homepage)
   ============================================ */
.page-hero {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  max-height: 440px;
}
.page-hero-text {
  background: var(--sage-dark);
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-text .breadcrumb {
  margin-bottom: 1rem;
}
.page-hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.page-hero-text .page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.page-hero-text .hero-btn {
  align-self: flex-start;
  background: var(--white);
  color: var(--sage-dark);
}
.page-hero-text .hero-btn:hover {
  background: var(--sage-light);
}
.page-hero-img {
  position: relative;
  overflow: hidden;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }

/* Minimal header variant (legal/simple pages) */
.page-header-min {
  margin-top: 68px;
  background: var(--sage-dark);
  padding: 3.5rem 0 3rem;
}
.page-header-min h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  font-weight: 500;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.page-header-min .breadcrumb {
  max-width: var(--max-w);
  margin: 0.4rem auto 0;
  padding: 0 2rem;
}

/* ============================================
   PHOTO CARDS
   ============================================ */
.photo-cards-section { padding: 4rem 0; }
.photo-cards-section h2 {
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-bottom: 0.4rem;
}
.photo-cards-section > .container > p {
  color: var(--text-s);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.photo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.photo-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(58,56,50,0.6) 0%, rgba(58,56,50,0) 60%);
  transition: background 0.3s;
}
.photo-card:hover .photo-card-overlay {
  background: linear-gradient(0deg, rgba(58,56,50,0.7) 0%, rgba(58,56,50,0.1) 70%);
}
.photo-card-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem;
}
.photo-card-text h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.photo-card-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ============================================
   PHOTO BANNER (full width)
   ============================================ */
.photo-banner {
  position: relative;
  overflow: hidden;
}
.photo-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
  max-height: 460px;
}
.photo-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(62,86,53,0.75);
}
.photo-banner-content {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.photo-banner-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 400;
  max-width: 580px;
  line-height: 1.4;
}
.photo-banner-content a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.photo-banner-content a:hover { border-color: var(--white); }

/* ============================================
   SPLIT (text + image)
   ============================================ */
.split {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
.split-lr { grid-template-columns: 1.2fr 1fr; }
.split-rl { grid-template-columns: 1fr 1.2fr; }

.split-text h2 {
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.split-text p {
  font-size: 0.95rem;
  color: var(--text-s);
  margin-bottom: 0.8rem;
}
.split-text strong { color: var(--text); font-weight: 500; }
.split-text .text-link {
  display: inline-block;
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--sage);
  padding-bottom: 1px;
  font-size: 0.9rem;
  transition: color 0.3s;
  margin-top: 0.5rem;
}
.split-text .text-link:hover { color: var(--sage); }

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   WERKWIJZE TIMELINE
   ============================================ */
.werkwijze-section h2 {
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-bottom: 0.4rem;
}
.werkwijze-section > .container-narrow > p {
  color: var(--text-s);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.timeline {
  position: relative;
  padding-left: 2.2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px; bottom: 6px;
  width: 1.5px;
  background: var(--border);
}
.timeline-step {
  position: relative;
  padding: 1rem 0 1.6rem;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: -2.2rem;
  top: 1.3rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--sage);
  z-index: 1;
}
.bg-linen .timeline-step::before { background: var(--linen); }

.timeline-step h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-s);
}

/* ============================================
   PIJLERS GRID
   ============================================ */
.pijlers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pijler-item {
  background: var(--white);
  padding: 1.8rem 1.5rem;
}
.pijler-item h4 {
  font-family: 'Lora', serif;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}
.pijler-item p {
  font-size: 0.86rem;
  color: var(--text-s);
  line-height: 1.6;
}

/* ============================================
   VERWIJZERS BLOCKS
   ============================================ */
.verwijzers-section h2 {
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-bottom: 0.4rem;
}
.verwijzers-section > .container-narrow > p {
  color: var(--text-s);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.vw-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.vw-block h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.vw-block p {
  font-size: 0.9rem;
  color: var(--text-s);
  margin-bottom: 0.5rem;
}
.vw-list { display: flex; flex-direction: column; gap: 0.4rem; }
.vw-li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-s);
}
.vw-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

/* ============================================
   QUOTE BLOCK (Tellus-style testimonial)
   ============================================ */
.quote-block {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sage-dark);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 1rem;
}
.quote-block cite {
  font-family: 'Source Sans 3', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-m);
}

/* ============================================
   CONTACT BAND
   ============================================ */
.contact-band {
  background: var(--sage-dark);
  padding: 4rem 0;
}
.contact-band-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.contact-band h2 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.contact-band-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.contact-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.55);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.contact-row a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-row a:hover { text-decoration: underline; }

/* ============================================
   CONTACT INFO CARD (contact page)
   ============================================ */
.contact-card {
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.contact-card-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-card-row + .contact-card-row {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card-label {
  font-size: 0.78rem;
  color: var(--text-m);
  margin-bottom: 0.1rem;
}
.contact-card-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sage-dark);
  text-decoration: none;
}
a.contact-card-value:hover { text-decoration: underline; }

/* ============================================
   FORMS (contact, aanmelden)
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group .form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--text-m);
  margin-bottom: 0.4rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
  outline: none;
  box-shadow: 0 0 0 3px rgba(92,122,78,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6860' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-btn {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.form-btn:hover { background: var(--sage-dark); }

.form-note {
  font-size: 0.78rem;
  color: var(--text-m);
  margin-top: 1rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-category {
  margin-bottom: 2.5rem;
}
.faq-category h2 {
  font-size: 1.3rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sage-dark); }
.faq-question svg {
  width: 18px; height: 18px;
  stroke: var(--text-m);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding-bottom: 1.2rem;
}
.faq-answer-inner p {
  font-size: 0.9rem;
  color: var(--text-s);
  margin-bottom: 0.5rem;
}
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ============================================
   DAG BIJ FAY TIMELINE (vertical, visual)
   ============================================ */
.dag-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
.dag-tijd {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--sage-dark);
  font-weight: 500;
  padding-top: 0.15rem;
}
.dag-content h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.dag-content p {
  font-size: 0.88rem;
  color: var(--text-s);
}

/* ============================================
   INFO BLOCK (expect, practical info)
   ============================================ */
.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1rem;
}
.info-block h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.info-block p {
  font-size: 0.9rem;
  color: var(--text-s);
  margin-bottom: 0.4rem;
}
.info-block p:last-child { margin-bottom: 0; }

/* ============================================
   CHECKLIST (with sage dots)
   ============================================ */
.check-list { display: flex; flex-direction: column; gap: 0.5rem; }
.check-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-s);
}
.check-item svg {
  width: 14px; height: 14px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

/* ============================================
   PROSE (long text sections on subpages)
   ============================================ */
.prose { max-width: 680px; }
.prose h2 {
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.prose p {
  font-size: 0.95rem;
  color: var(--text-s);
  margin-bottom: 0.8rem;
}
.prose strong { color: var(--text); font-weight: 500; }
.prose ul {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}
.prose li {
  font-size: 0.92rem;
  color: var(--text-s);
  margin-bottom: 0.3rem;
  list-style: disc;
}
.prose a {
  color: var(--sage-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  transition: color 0.2s;
}
.prose a:hover { color: var(--sage); }

/* ============================================
   FOOTER
   ============================================ */
.footer-wave { display: none; }
.site-footer { background: #30253E; padding: 3.5rem 0 0; }
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand a {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,1);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 1.2rem;
}
.footer-contact-line {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.3rem;
}
.footer-contact-line a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
}
.footer-contact-line a:hover { color: rgba(255,255,255,1); }
.footer-col h4 {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.footer-col li { margin-bottom: 0.25rem; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,1); }
.footer-bottom {
  background: #271E34;
  margin-top: 2.5rem;
  padding: 1rem 2rem;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ============================================
   HERO MODERN (homepage)
   ============================================ */
.hero-content h1 .hero-line {
  display: block;
  overflow: hidden;
}
.hero-content h1 .hero-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content h1 .hero-line:nth-child(2) span { animation-delay: 0.12s; }
.hero-content p {
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.4s forwards;
}
.hero-btn {
  opacity: 0;
  animation: heroFadeIn 0.6s ease 0.6s forwards;
}

@keyframes heroSlideUp {
  to { transform: translateY(0); }
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.hero-badge svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 1.5;
}

/* ============================================
   KENMERKEN STRIP (3-col features)
   ============================================ */
.kenmerken-strip {
  padding: 4.5rem 0;
}
.kenmerken-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.kenmerk {
  text-align: center;
}
.kenmerk-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.kenmerk-icon svg {
  width: 24px; height: 24px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kenmerk h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.kenmerk p {
  font-size: 0.88rem;
  color: var(--text-s);
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   STAPPEN CARDS (numbered, modern)
   ============================================ */
.stappen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stap-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stap-card:hover {
  border-color: var(--sage);
  box-shadow: 0 4px 20px rgba(92,122,78,0.08);
}
.stap-nr {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.stap-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.stap-card p {
  font-size: 0.85rem;
  color: var(--text-s);
  line-height: 1.55;
}

/* ============================================
   SECTION INTRO (centered, modern)
   ============================================ */
.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.section-intro h2 {
  font-size: 1.6rem;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}
.section-intro p {
  font-size: 0.95rem;
  color: var(--text-s);
}

/* ============================================
   LARGE QUOTE (standalone, not banner)
   ============================================ */
.large-quote {
  padding: 3rem 2rem;
  text-align: center;
}
.large-quote blockquote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--sage-dark);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
  border-left: 3px solid var(--sage);
  text-align: left;
  padding-left: 1.5rem;
}

/* ============================================
   FEATURE PAIR (icon + text, horizontal)
   ============================================ */
.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 20px; height: 20px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-s);
}

/* ============================================
   CTA SECTION (modern centered)
   ============================================ */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}
.cta-section h2 {
  font-size: 1.5rem;
  color: var(--sage-dark);
  margin-bottom: 0.6rem;
}
.cta-section p {
  font-size: 0.95rem;
  color: var(--text-s);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}
.cta-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn-outline {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cta-btn-outline:hover {
  background: var(--sage);
  color: var(--white);
}

/* ============================================
   TELLUS-STYLE SPLIT HERO
   ============================================ */
.tellus-hero {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 88vh;
  max-height: 920px;
}
.tellus-hero-img {
  position: relative;
  overflow: hidden;
}
.tellus-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
/* Organic wave edge on right side of photo */
.hero-wave {
  position: absolute;
  top: 0;
  right: -1px;
  width: 120px;
  height: 100%;
  z-index: 2;
}
.tellus-hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 2rem;
  background: var(--cream);
  overflow: hidden;
}
/* Decorative blob behind text */
.hero-blob {
  position: absolute;
  top: 8%;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--sage-light);
  opacity: 0.4;
  filter: blur(40px);
  z-index: 0;
}
.tellus-hero-text > *:not(.hero-blob) {
  position: relative;
  z-index: 1;
}
.hero-lead {
  font-size: 1.08rem;
  color: var(--text-s);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-lead strong {
  color: var(--text);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-btn-ghost {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
}
.hero-btn-ghost:hover {
  background: var(--sage);
  color: var(--white);
}

/* ============================================
   HIGHLIGHTED TITLE (Tellus signature)
   ============================================ */
.hl-title {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.35;
  display: inline;
  background: var(--sage);
  color: var(--white);
  padding: 0.1em 0.4em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
h1.hl-title-wrap {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
h2.hl-title-wrap {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ============================================
   SUB-NAV BAR (Tellus style)
   ============================================ */
.sub-nav {
  position: relative;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
  margin-top: -1.5rem;
}
.sub-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  padding: 0.8rem 1.6rem;
}
.sub-nav-inner a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-s);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.sub-nav-inner a:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

/* ============================================
   COLORED DIVIDER STRIP
   ============================================ */
.color-divider {
  display: flex;
  width: 100%;
  height: 6px;
}
.color-divider span {
  flex: 1;
}
.color-divider .cd-1 { background: var(--sage-dark); }
.color-divider .cd-2 { background: var(--sage); }
.color-divider .cd-3 { background: var(--warm); }
.color-divider .cd-4 { background: var(--sage-light); }

/* ============================================
   FEATURE CARDS (large, horizontal — Tellus)
   ============================================ */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.feature-card-lg {
  display: grid;
  grid-template-columns: 40% 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
}
.feature-card-lg:hover {
  border-color: var(--sage);
  box-shadow: 0 6px 28px rgba(92,122,78,0.1);
}
.feature-card-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.feature-card-lg-text {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-card-lg-text h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.feature-card-lg-text p {
  font-size: 0.88rem;
  color: var(--text-s);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.feature-card-lg-text .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sage-dark);
  text-decoration: none;
  transition: gap 0.25s;
}
.feature-card-lg-text .arrow-link:hover { gap: 0.7rem; }
.feature-card-lg-text .arrow-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   WERKWIJZE FLOW (horizontal connected steps)
   ============================================ */
.werkwijze-flow {
  padding: 5rem 0 4rem;
  background: var(--cream);
}
.flow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}
.flow-line {
  position: absolute;
  top: 16px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage), var(--sage-dark));
  border-radius: 2px;
}
.flow-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.flow-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px var(--sage-light);
}
.flow-step h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.flow-step p {
  font-size: 0.85rem;
  color: var(--text-s);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}
.flow-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================
   SAGE SHOWCASE (full-width branded section)
   ============================================ */
.sage-showcase {
  background: var(--cream);
  overflow: hidden;
  padding: 3rem 0;
}
.sage-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  min-height: 460px;
  align-items: center;
}
.sage-showcase-text {
  background: var(--sage-dark);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.sage-showcase-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 380px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.sage-showcase-text .hero-btn {
  background: var(--white);
  color: var(--sage-dark);
}
.sage-showcase-text .hero-btn:hover {
  background: var(--sage-light);
}
.sage-showcase-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
  margin-top: 1rem;
}
.sage-showcase-arrow:hover { color: var(--white); }
.sage-showcase-arrow svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}
.sage-showcase-arrow:hover svg { transform: translateX(4px); }
.sage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sage-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s;
}
.sage-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.sage-showcase-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sage-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

/* ============================================
   BIG CTA (modern, bold — full-width branded)
   ============================================ */
.big-cta {
  background: var(--sage);
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
}
.big-cta-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  overflow: hidden;
}
.big-cta-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}
.big-cta h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.big-cta > .container > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.big-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.big-cta-actions .hero-btn {
  background: var(--white);
  color: var(--sage-dark);
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
}
.big-cta-actions .hero-btn:hover {
  background: var(--sage-light);
}
.big-cta-actions .hero-btn-ghost {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.big-cta-actions .hero-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.big-cta-links {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.big-cta-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.big-cta-links a:hover {
  color: rgba(255,255,255,1);
  border-color: rgba(255,255,255,0.7);
}

/* ============================================
   FAQ TABS
   ============================================ */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.faq-tab {
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--sage);
  border-radius: 100px;
  background: transparent;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage-dark);
  cursor: pointer;
  transition: all 0.3s;
}
.faq-tab.active {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.faq-tab:hover:not(.active) {
  background: var(--sage-light);
}
.faq-tab-panel {
  display: none;
}
.faq-tab-panel.active {
  display: block;
}

/* ============================================
   FORM STEPPER (multi-step wizard)
   ============================================ */
.form-stepper-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.form-stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  z-index: 2;
  flex: 1;
}
.form-stepper-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-m);
  transition: all 0.3s;
}
.form-stepper-step.active .form-stepper-dot {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}
.form-stepper-step.done .form-stepper-dot {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}
.form-stepper-label {
  font-size: 0.75rem;
  color: var(--text-m);
  text-align: center;
}
.form-stepper-step.active .form-stepper-label {
  color: var(--sage-dark);
  font-weight: 500;
}
.form-stepper-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 1.2rem;
}
.form-stepper-line.done {
  background: var(--sage);
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.form-nav-prev {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 1.5px solid var(--border);
  color: var(--text-s);
  border-radius: 8px;
  background: none;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}
.form-nav-prev:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

/* ============================================
   LEGAL LAYOUT (sticky TOC sidebar)
   ============================================ */
.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 88px;
}
.legal-toc h3 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-m);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}
.legal-toc a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-m);
  text-decoration: none;
  padding: 0.35rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.8rem;
  transition: all 0.2s;
}
.legal-toc a:hover {
  color: var(--sage-dark);
}
.legal-toc a.active {
  color: var(--sage-dark);
  font-weight: 500;
  border-left-color: var(--sage);
}
.legal-toc-mobile {
  display: none;
}

/* ============================================
   PIJLER NAV (sticky pill bar)
   ============================================ */
.pijler-nav {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(253,251,247,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pijler-nav-inner {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.pijler-nav a {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-s);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.pijler-nav a:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}
.pijler-nav a.active {
  background: var(--sage);
  color: var(--white);
}

/* ============================================
   DAG TIMELINE V2 (visual with icons)
   ============================================ */
.dag-timeline-v2 {
  max-width: 700px;
  margin: 0 auto;
}
.dag-v2-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.dag-v2-item:last-of-type { border-bottom: none; }
.dag-v2-time {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sage-dark);
}
.dag-v2-content {}
.dag-v2-item h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.dag-v2-item p {
  font-size: 0.85rem;
  color: var(--text-s);
}
.dag-v2-note {
  font-size: 0.82rem;
  color: var(--text-m);
  font-style: italic;
  margin-top: 1.5rem;
  text-align: center;
}

/* ============================================
   FEEDBACK GRID (klachten/complimenten)
   ============================================ */
.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.feedback-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.feedback-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.feedback-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feedback-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.feedback-card p {
  font-size: 0.9rem;
  color: var(--text-s);
  margin-bottom: 0.5rem;
}
.feedback-card ol {
  padding-left: 1.2rem;
  margin: 1rem 0;
}
.feedback-card li {
  font-size: 0.88rem;
  color: var(--text-s);
  margin-bottom: 0.3rem;
  list-style: decimal;
}

/* ============================================
   CONTACT SPLIT (two-column layout)
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 500px;
}
.contact-split-info {
  background: var(--linen);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.contact-split-form {
  background: var(--white);
  padding: 3.5rem 3rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border: 1px solid var(--border);
  border-left: none;
}

/* ============================================
   TRUST CARD (large icon + content)
   ============================================ */
.trust-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.2rem;
  transition: box-shadow 0.3s;
}
.trust-card:hover {
  box-shadow: 0 4px 20px rgba(62,86,53,0.08);
}
.trust-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-card h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.9rem;
  color: var(--text-s);
  margin-bottom: 0.4rem;
}

/* ============================================
   STEP ANCHOR (decorative step number)
   ============================================ */
.step-anchor {
  font-family: 'Lora', serif;
  font-size: 4rem;
  font-weight: 600;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ============================================
   WAARDEN GRID (kernwaarden icon cards)
   ============================================ */
.waarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.waarden-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.waarden-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(62,86,53,0.08);
}
.waarden-card .kenmerk-icon {
  margin: 0 0 1rem;
}
.waarden-card h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}
.waarden-card p {
  font-size: 0.85rem;
  color: var(--text-s);
  line-height: 1.55;
}

/* ============================================
   HIGHLIGHT BOX (tussenbreker / uitgelicht)
   ============================================ */
.highlight-box {
  background: var(--linen);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}
.highlight-box-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.highlight-box h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.highlight-box p {
  font-size: 0.92rem;
  color: var(--text-s);
  margin-bottom: 0.4rem;
}
.highlight-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.highlight-box-item {
  display: flex;
  gap: 0.8rem;
  align-items: start;
}
.highlight-box-item img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.highlight-box-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.highlight-box-item p {
  font-size: 0.78rem;
  color: var(--text-m);
  margin: 0;
}

/* ============================================
   STAT STRIP (numbers/facts tussenbreker)
   ============================================ */
.stat-strip {
  padding: 3rem 0;
  background: var(--sage-dark);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.stat-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   AANMELD SPLIT (GrandCare style: form + sidebar)
   ============================================ */
.aanmeld-layout {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: calc(100vh - 68px);
}
.aanmeld-form-side {
  padding: 3rem 3.5rem;
  background: var(--white);
  overflow-y: auto;
}
.aanmeld-form-side .breadcrumb {
  margin-bottom: 2rem;
  color: var(--text-m);
}
.aanmeld-form-side .breadcrumb a { color: var(--text-s); }
.aanmeld-form-side h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}
.aanmeld-form-side .aanmeld-sub {
  font-size: 0.95rem;
  color: var(--text-s);
  margin-bottom: 2rem;
  max-width: 480px;
}
.aanmeld-sidebar {
  background: var(--linen);
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.aanmeld-sidebar h2 {
  font-size: 1.3rem;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}
.aanmeld-sidebar-item {
  margin-bottom: 1.2rem;
}
.aanmeld-sidebar-item h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.aanmeld-sidebar-item p {
  font-size: 0.82rem;
  color: var(--text-s);
}
.aanmeld-sidebar-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.aanmeld-sidebar-contact h3 {
  font-size: 1.1rem;
  color: var(--sage-dark);
  margin-bottom: 0.8rem;
}
.aanmeld-sidebar-contact a {
  display: block;
  color: var(--sage);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.aanmeld-sidebar-contact a:hover { text-decoration: underline; }
.aanmeld-sidebar-contact p {
  font-size: 0.8rem;
  color: var(--text-m);
  margin-top: 0.2rem;
}

/* ============================================
   STICKY CONTACT BUTTON (rechtsonder)
   ============================================ */
.sticky-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  cursor: pointer;
}
.sticky-contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(62,86,53,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sticky-contact:hover .sticky-contact-btn {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(62,86,53,0.4);
}
.sticky-contact-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sticky-contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sage-dark);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .photo-card img { transition: none; }
  .faq-answer { transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(253,251,247,0.98);
    padding: 1.5rem 2rem;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-hamburger { display: flex; }
  .photo-cards { grid-template-columns: 1fr 1fr; }
  .split-lr, .split-rl { grid-template-columns: 1fr; }
  .split-img { max-width: 500px; margin: 0 auto; }
  .pijlers-grid { grid-template-columns: 1fr 1fr; }
  .contact-band-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stappen-grid { grid-template-columns: 1fr 1fr; }
  .feature-pair { grid-template-columns: 1fr; }
  .flow-track { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .flow-line { display: none; }
  .sage-showcase-inner { grid-template-columns: 1fr; }
  .sage-showcase-img { height: 300px; }
  .sage-showcase-text { padding: 3rem 2rem; }
  .big-cta-actions { flex-direction: column; align-items: center; }
  .big-cta-links { flex-direction: column; gap: 0.8rem; }
  .tellus-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-img { height: 250px; }
  .page-hero-text { padding: 2.5rem 2rem; }
  .tellus-hero-img { height: 50vh; min-height: 300px; }
  .hero-wave { display: none; }
  .tellus-hero-text { padding: 2.5rem 2rem; }
  .hero-blob { display: none; }
  .sub-nav { display: none; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-card-lg { grid-template-columns: 35% 1fr; }
  .contact-icons { gap: 1.5rem; }
  .feedback-grid { grid-template-columns: 1fr; }
  .highlight-box-grid { grid-template-columns: 1fr; }
  .highlight-box { padding: 2rem; }
  .stat-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .waarden-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-split-info { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .contact-split-form { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-left: 1px solid var(--border); border-top: none; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: none; }
  .legal-toc-mobile { display: block; margin-bottom: 2rem; }
  .pijler-nav-inner { justify-content: flex-start; }
  .trust-card { grid-template-columns: 1fr; }
  .trust-card-icon { margin-bottom: 0.5rem; }
  .aanmeld-layout { grid-template-columns: 1fr; }
  .aanmeld-sidebar { border-left: none; border-top: 1px solid var(--border); }
  .aanmeld-form-side { padding: 2rem; }
  .aanmeld-sidebar { padding: 2rem; }
}

@media (max-width: 580px) {
  .photo-cards { grid-template-columns: 1fr; }
  .pijlers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 65vh; min-height: 380px; }
  .hero-content { padding: 2rem; }
  .section-pad { padding: 3.5rem 0; }
  .container, .container-narrow, .container-mid { padding-left: 1.5rem; padding-right: 1.5rem; }
  .dag-item { grid-template-columns: 50px 1fr; gap: 0.8rem; }
  .kenmerken-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stappen-grid { grid-template-columns: 1fr; }
  .cta-btn-group { flex-direction: column; align-items: center; }
  .flow-track { grid-template-columns: 1fr; }
  .sage-showcase-img { height: 250px; }
  .tellus-hero-img { height: 40vh; min-height: 250px; }
  .tellus-hero-text { padding: 2rem 1.5rem; }
  .feature-card-lg { grid-template-columns: 1fr; }
  .feature-card-lg img { min-height: 180px; max-height: 200px; }
  .contact-icons { flex-direction: column; align-items: center; gap: 1.5rem; }
  .waarden-grid { grid-template-columns: 1fr; }
  .faq-tabs { flex-direction: column; align-items: center; }
  .form-stepper-label { font-size: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content h1 .hero-line span { transform: none; animation: none; }
  .hero-content p { opacity: 1; animation: none; }
  .hero-btn { opacity: 1; animation: none; }
}
