/* === LETTINGA-BUILD-2.3.1 | 13 juni | kaart plaatsnamen uniform fs13 + alles binnen grens + Fryslan vorm === */
/* ============================================================
   LETTINGA TAXATIES V2 — Next-Level Editorial Boutique
   2026 Quiet Luxury · Award-Worthy
   ============================================================ */

:root {
  /* Quiet Luxury palet — warm, soft, sophisticated */
  --gold: #B89855;
  --gold-deep: #8A6F35;
  --gold-light: #D4B978;
  --gold-soft: rgba(184, 152, 85, 0.08);
  --gold-medium: rgba(184, 152, 85, 0.18);

  --ink: #1A1714;
  --ink-soft: #2F2A24;
  --ink-medium: #4A433B;

  --cream: #FAF6EF;
  --cream-warm: #F2EBDD;
  --cream-deep: #EAE0CC;
  --beige: #DCD1BC;
  --beige-soft: #ECE4D2;

  --text-primary: #1A1714;
  --text-secondary: #4A4239;
  --text-tertiary: #7A7165;
  --text-soft: #C4BAA8;

  --border: rgba(26, 23, 20, 0.08);
  --border-strong: rgba(26, 23, 20, 0.15);
  --border-gold: rgba(184, 152, 85, 0.25);

  /* Typography */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Layout — tightere section padding voor minder witruimte */
  --container: 1480px;
  --gutter: clamp(1.5rem, 4vw, 5rem);
  --section-pad: clamp(3.5rem, 7vw, 7rem);
  --section-pad-sm: clamp(2.5rem, 5vw, 5rem);

  /* Shadows */
  --shadow-soft: 0 30px 80px -30px rgba(26, 23, 20, 0.15);
  --shadow-strong: 0 50px 120px -40px rgba(26, 23, 20, 0.25);
  --shadow-card: 0 20px 60px -25px rgba(26, 23, 20, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(26, 23, 20, 0.1);

  /* Easings */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-power: cubic-bezier(0.83, 0, 0.17, 1);

  /* Hoekafronding — subtiele ronding op blokken (niet op hero/iconen) */
  --radius: 8px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  /* Lenis smooth scroll fallback */
  scroll-behavior: smooth;
}
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

p {
  color: var(--text-primary);
  line-height: 1.7;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--cream); }

/* Subtle noise texture overlay voor luxe feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: multiply;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 32;
}

/* Editorial eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}
.eyebrow-center {
  justify-content: center;
}
.eyebrow-center::after {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}
.eyebrow-no-line::before { display: none; }
.eyebrow-no-line::after { display: none; }

/* Title scales */
.title-xl {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.title-lg {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.title-md {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
}
.title-sm {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

/* Body text */
.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: -0.005em;
}

/* ============ SECTION FOUNDATION ============ */
.section {
  padding: var(--section-pad-sm) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.section-full {
  padding: var(--section-pad) 0;
  max-width: 100%;
  position: relative;
}
.section-full > .wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 246, 239, 0.95);
  border-bottom-color: var(--border);
}
.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.2rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-style: italic;
}
.header-logo-img {
  display: block;
  height: 72px;
  width: auto;
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
}
.header-logo span {
  color: var(--gold);
  font-style: italic;
}

.header-nav {
  display: flex;
  justify-content: center;
}
.nav-list {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}
.nav-list a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color 0.3s var(--ease);
  padding: 0.5rem 0;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}
.nav-list a:hover { color: var(--gold); }
.nav-list a:hover::after { width: 100%; }

/* Dropdown — desktop hover */
.nav-list .menu-item-has-children {
  position: relative;
}
.nav-list .nav-arrow {
  display: inline-flex;
  margin-left: 0.45rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  vertical-align: middle;
}
.nav-list .menu-item-has-children:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--cream);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  padding: 0.3rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-out-quart);
  z-index: 100;
  margin: 0;
}
.nav-list .menu-item-has-children:hover .sub-menu,
.nav-list .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-list .sub-menu li {
  padding: 0;
}
.nav-list .sub-menu li + li {
  border-top: 1px solid var(--border);
}
.nav-list .sub-menu a {
  position: relative;
  display: block;
  padding: 0.6rem 1.3rem 0.6rem 1.55rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: left;
  white-space: nowrap;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-list .sub-menu a::after {
  display: none;
}
/* Gouden indicator-streepje links bij hover */
.nav-list .sub-menu a::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.3s var(--ease);
}
.nav-list .sub-menu a:hover {
  color: var(--gold-deep);
  background: var(--cream-warm);
}
.nav-list .sub-menu a:hover::before {
  width: 0.5rem;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  transition: color 0.3s var(--ease);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 14px; height: 14px; }

.header-cta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.header-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-power);
  z-index: 0;
}
.header-cta span {
  position: relative;
  z-index: 1;
}
.header-cta:hover::before { transform: translateY(0); }
.header-cta:hover { border-color: var(--gold); }

.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.header-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.4s var(--ease);
}
.header-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-burger.open span:nth-child(2) { opacity: 0; }
.header-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO — Editorial Masterpiece ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-quart) 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 300;
  margin-bottom: 2.5rem;
  font-variation-settings: "opsz" 144;
}

.hero-title .line {
  display: block;
  position: relative;
}
.hero-title .line-inner {
  display: inline-block;
  opacity: 0;
  animation: heroFadeIn 0.9s var(--ease-out-quart) forwards;
}
.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.3s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.45s; }

/* Generic line breaks (overal waar lettinga_format_title gebruikt wordt) */
h1 .line, h2 .line, h3 .line,
.page-hero h1 .line,
.title-xl .line {
  display: block;
}
h1 .line-inner, h2 .line-inner, h3 .line-inner,
.page-hero h1 .line-inner,
.title-xl .line-inner {
  display: inline-block;
}
/* Iets ademruimte tussen woorden in serif headings */
.page-hero h1 em,
.title-xl em {
  padding: 0 0.04em;
  margin-right: 0.04em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-quart) 1s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-quart) 1.2s forwards;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-quart) 1.4s forwards;
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-variation-settings: "opsz" 72;
}
.meta-num em { color: var(--gold); font-style: italic; }
.meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Hero Image side */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige) 0%, #C5B59B 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 35% 30%, rgba(184, 152, 85, 0.3), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(20, 18, 16, 0.1), transparent 50%),
    linear-gradient(135deg, var(--beige) 0%, #C5B59B 100%);
  position: relative;
}

/* Decoratieve elementen op hero visual */
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 23, 20, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Floating badge - quiet luxury detail */
.hero-badge {
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out-quart) 1.6s forwards;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--cream);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
}
.hero-badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Glass card - tasteful glassmorphism (2026 trend) */
.hero-card {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  right: 3rem;
  padding: 1.8rem 2.2rem;
  background: rgba(250, 246, 239, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(184, 152, 85, 0.2);
  border-radius: 2px;
  box-shadow: var(--shadow-glass);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-quart) 1.8s forwards;
}
.hero-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.6rem;
  font-style: italic;
  flex-shrink: 0;
  border: 2px solid var(--cream);
}
.hero-card-content { flex: 1; }
.hero-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.1rem;
}
.hero-card-title {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 2.5s forwards, bounce 2s ease-in-out 3s infinite;
  color: var(--ink);
  pointer-events: none;
}
.scroll-indicator-text {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ MARQUEE — Roterende editorial statement ============ */
.marquee-section {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gold-medium);
  border-bottom: 1px solid var(--gold-medium);
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
  color: var(--cream);
  padding-right: 2.5rem;
}
.marquee-item::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 2.5rem;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ BUTTONS — Magnetic/refined ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.15rem 2.2rem;
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 0.55s var(--ease-power);
}
.btn-text, .btn-arrow {
  position: relative;
  z-index: 1;
}
.btn-arrow {
  transition: transform 0.4s var(--ease);
  display: inline-flex;
  align-items: center;
}
.btn-arrow svg { width: 16px; height: 16px; }
.btn:hover .btn-arrow { transform: translateX(6px); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary::before {
  background: var(--gold);
  transform: translateY(101%);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover { border-color: var(--gold); }

.btn-secondary {
  color: var(--ink);
  background: transparent;
}
.btn-secondary::before {
  background: var(--ink);
  transform: translateY(101%);
}
.btn-secondary:hover::before { transform: translateY(0); }
.btn-secondary:hover { color: var(--cream); }

.btn-ghost {
  border: 0;
  padding: 0.5rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.6rem;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover {
  color: var(--gold);
  padding-bottom: 0.9rem;
}
.btn-ghost::before { display: none; }

/* ============ INTRO / EDITORIAL STATEMENT ============ */
.intro {
  padding: var(--section-pad-sm) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.intro-left {
  position: sticky;
  top: 120px;
}
.intro-right { }

.intro-statement {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.intro-statement em { color: var(--gold); }
.intro-statement p { margin-bottom: 1.4rem; }
.intro-statement p:last-child { margin-bottom: 0; }

.intro-signoff {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.intro-signoff-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
}
.intro-signoff-title {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ============ SERVICES — Bento grid stijl ============ */
.section-services {
  background: var(--cream);
  position: relative;
  padding: var(--section-pad-sm) var(--gutter);
  max-width: 100%;
}

.services-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: end;
}

.services-header-left { }
.services-header-right {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--cream-warm);
  padding: 2.8rem 2.5rem;
  border: 1px solid var(--border-gold);
  transition: all 0.5s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.service-card-1 { grid-column: span 5; }
.service-card-2 { grid-column: span 7; }
.service-card-3 { grid-column: span 7; }
.service-card-4 { grid-column: span 5; }

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { opacity: 1; }

.service-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-style: italic;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.4rem 0.9rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold-medium);
  margin-bottom: 1.8rem;
  align-self: flex-start;
}
.service-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.service-title {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.service-feature::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
}
.service-meta-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}
.service-meta-num small {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.service-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.service-card:hover .service-link {
  color: var(--gold);
  gap: 0.9rem;
}

/* Featured/larger service card variant */
.service-card-featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--gold);
}
.service-card-featured .service-title { color: var(--cream); }
.service-card-featured .service-desc { color: rgba(250, 246, 239, 0.7); }
.service-card-featured .service-feature { color: rgba(250, 246, 239, 0.65); }
.service-card-featured .service-meta-num { color: var(--cream); }
.service-card-featured .service-meta-num small { color: rgba(250, 246, 239, 0.5); }
.service-card-featured .service-link { color: var(--gold); }
.service-card-featured .service-meta { border-color: rgba(250, 246, 239, 0.12); }
.service-card-featured .service-badge {
  background: rgba(184, 152, 85, 0.15);
  border-color: rgba(184, 152, 85, 0.4);
  color: var(--gold-light);
}

/* ============ CALCULATOR — Premium tool ============ */
.section-calculator {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-pad-sm) var(--gutter);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.section-calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 152, 85, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 152, 85, 0.06), transparent 50%);
  pointer-events: none;
}

.calc-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.calc-left { color: var(--cream); }
.calc-left .eyebrow { color: var(--gold-light); }
.calc-left .title-md { color: var(--cream); margin: 1.5rem 0 2rem; }
.calc-left em { color: var(--gold-light); }
.calc-left .lead { color: rgba(250, 246, 239, 0.75); }

.calc-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
.calc-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(250, 246, 239, 0.85);
}
.calc-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.calc-feature-icon svg { width: 12px; height: 12px; }

.calc-tool {
  background: var(--cream);
  color: var(--ink);
  padding: 3rem;
  border: 1px solid var(--border-gold);
  position: relative;
  box-shadow: var(--shadow-strong);
}

.calc-tool::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
}

.calc-step {
  margin-bottom: 2.5rem;
}
.calc-step-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.calc-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  flex-shrink: 0;
}
.calc-step-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
}

.calc-options {
  display: grid;
  gap: 0.6rem;
}
.calc-option {
  display: block;
  border: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  background: var(--cream);
}
.calc-option input { position: absolute; opacity: 0; pointer-events: none; }
.calc-option:hover { border-color: var(--gold-deep); }
.calc-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.calc-option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.calc-option-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}
.calc-option-badge {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 0.3rem 0.7rem;
  font-weight: 500;
  border-radius: 2px;
}

.calc-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 0;
}
.calc-switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch-slider {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--border-strong);
  border-radius: 13px;
  transition: background 0.3s var(--ease);
  flex-shrink: 0;
}
.switch-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--cream);
  border-radius: 50%;
  transition: all 0.4s var(--ease-bounce);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.calc-switch input:checked ~ .switch-slider { background: var(--gold); }
.calc-switch input:checked ~ .switch-slider::after {
  transform: translateX(22px);
}
.switch-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.calc-result {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.result-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.result-item .result-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.result-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1;
}
.result-value-gold { color: var(--gold); font-style: italic; }
.result-cta {
  margin-top: 1.5rem;
}
.calc-disclaimer {
  margin-top: 1.5rem;
  padding: 0.9rem 1.2rem;
  background: var(--cream-warm);
  border-left: 2px solid var(--gold);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.calc-disclaimer strong { color: var(--ink); }

/* ============ ABOUT / PERSON ============ */
.section-about {
  background: var(--cream);
  padding: var(--section-pad-sm) var(--gutter);
  max-width: 100%;
  position: relative;
}
.about-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-image {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 30%, rgba(184, 152, 85, 0.25), transparent 55%),
    linear-gradient(135deg, var(--beige), #C5B59B 100%);
  position: relative;
  overflow: hidden;
}
/* Placeholder text alleen tonen als er nog geen foto is geupload */
.about-image:not(:has(img))::after {
  content: 'Portretfoto';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: rgba(26, 23, 20, 0.35);
}
/* Als er een foto is, achtergrond-gradient verbergen */
.about-image:has(img) {
  background: none;
}

/* Roterende stempel - quiet luxury detail */
.about-stamp {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  z-index: 2;
}
.stamp-rotating {
  position: absolute;
  inset: 0;
  animation: stampRotate 35s linear infinite;
}
.stamp-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  margin: 30px;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-strong);
}
@keyframes stampRotate {
  to { transform: rotate(360deg); }
}

.about-floating-card {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--cream);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-card);
  z-index: 3;
  border-left: 2px solid var(--gold);
  max-width: 240px;
}
.about-floating-card-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.about-floating-card-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.3;
}

.about-content { }
.about-content .title-md {
  margin: 1.5rem 0 3rem;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

.about-text {
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
  line-height: 1.7 !important;
  letter-spacing: -0.005em !important;
  margin-bottom: 2.5rem;
}
.about-text p {
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  color: var(--text-secondary) !important;
  line-height: 1.7 !important;
  letter-spacing: -0.005em !important;
  margin-bottom: 1.3rem;
}
.about-text p em {
  font-family: var(--font-body) !important;
  font-style: italic !important;
  color: var(--gold);
  font-variation-settings: normal !important;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.5;
  color: var(--ink);
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  position: relative;
}
.about-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 4rem;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}

.about-usps {
  list-style: none;
  margin-bottom: 3rem;
  border-top: 1px solid var(--border);
}
.about-usp {
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.about-usp:last-child { border-bottom: none; }
.about-usp-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.about-usp-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.about-usp-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about-usp-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}

/* ============ PROCESS / STAPPEN ============ */
.section-process {
  background: var(--cream-warm);
  padding: var(--section-pad-sm) var(--gutter);
  max-width: 100%;
  position: relative;
}
.process-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}
.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}
.process-header .title-md { margin: 1.5rem 0 1.5rem; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}
/* Klikbare toggle-knop: marker + label + titel */
.process-step-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: center;
}
.process-step-marker {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  transition: all 0.5s var(--ease);
}
.process-step-toggle:hover .process-step-marker,
.process-step.open .process-step-marker {
  background: var(--gold);
  transform: scale(1.05);
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  transition: color 0.3s var(--ease);
}
.process-step-toggle:hover .process-step-num,
.process-step.open .process-step-num { color: var(--cream); }

.process-step-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
/* Subtiele uitklap-indicator onder de titel */
.process-step-title::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  margin: 0.85rem auto 0;
  transition: width 0.3s var(--ease);
}
.process-step.open .process-step-title::after {
  width: 36px;
}
/* Uitklapbaar tekstpaneel */
.process-step-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out-quart), opacity 0.3s var(--ease);
  opacity: 0;
}
.process-step.open .process-step-panel {
  max-height: 320px;
  opacity: 1;
}
.process-step-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-top: 1.25rem;
  margin: 0;
}

/* ============ WERKGEBIED / KAART ============ */
.section-werkgebied {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-pad-sm) var(--gutter);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.werkgebied-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(184, 152, 85, 0.08), transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(184, 152, 85, 0.06), transparent 50%);
  pointer-events: none;
}

.werkgebied-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.werkgebied-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.werkgebied-header .title-md { color: var(--cream); }
.werkgebied-header em { color: var(--gold-light); }
.werkgebied-header .lead { color: rgba(250, 246, 239, 0.7); }
.werkgebied-header .eyebrow { color: var(--gold-light); }

.werkgebied-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kaart-container {
  position: relative;
}
.friesland-map {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: block;
}
.section-werkgebied .friesland-map text {
  fill: rgba(250, 246, 239, 0.85);
}
.section-werkgebied .map-marker-home text {
  fill: var(--cream);
}
.map-marker { cursor: pointer; transition: opacity 0.3s var(--ease); }
.map-marker:hover { opacity: 0.7; }
.map-marker-home circle:nth-child(1) {
  transform-origin: 155px 215px;
  animation: pulse 3s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.plaatsen-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plaatsen-intro {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.plaatsen-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184, 152, 85, 0.18);
  border: 1px solid rgba(184, 152, 85, 0.2);
}
.plaats {
  background: var(--ink);
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.plaats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-power);
  z-index: 0;
}
.plaats:hover::before { transform: scaleX(1); }
.plaats:hover .plaats-name,
.plaats:hover .plaats-arrow { color: var(--ink); }

.plaats-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  position: relative;
  z-index: 1;
  transition: color 0.3s var(--ease);
}
.plaats-arrow {
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
  font-size: 0.8rem;
}
.plaats:hover .plaats-arrow {
  transform: translateX(4px) rotate(-45deg);
}

/* ============ REVIEWS — Editorial Quote ============ */
.section-reviews {
  background: var(--cream);
  padding: var(--section-pad) 0;
  max-width: 100%;
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 var(--gutter);
}
.reviews-header .title-md { margin: 1.5rem 0 0; }

.reviews-marquee-container {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.reviews-track {
  display: flex;
  gap: 2rem;
  animation: reviewsScroll 80s linear infinite;
  width: max-content;
  padding: 2rem;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 460px;
  background: var(--cream);
  border: 1px solid var(--border-gold);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all 0.5s var(--ease);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold-soft);
  line-height: 1;
  font-style: italic;
}
.review-card:hover {
  background: var(--cream-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  font-size: 1.05rem;
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}
.review-meta {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-author {
  font-weight: 500;
  font-size: 0.95rem;
}
.review-context {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

/* ============ FAQ ============ */
.section-faq {
  background: var(--cream-warm);
  padding: var(--section-pad-sm) var(--gutter);
  max-width: 100%;
}
.faq-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.faq-left {
  position: sticky;
  top: 120px;
}
.faq-left .title-md {
  margin: 1.5rem 0;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}
.faq-left .title-md em {
  font-weight: 300;
}

.faq-list { }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 0;
  transition: all 0.3s var(--ease);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  cursor: pointer;
  list-style: none;
  gap: 2rem;
  transition: color 0.3s var(--ease);
  position: relative;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }

.faq-q-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  color: var(--ink);
  font-variation-settings: "opsz" 40;
  font-optical-sizing: none;
}
.faq-item[open] .faq-q-text,
.faq-item[open] .faq-question .faq-q-text {
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  font-variation-settings: "opsz" 40;
  font-optical-sizing: none;
}

.faq-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.5s var(--ease);
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease);
}
.faq-icon::before {
  width: 14px;
  height: 1.5px;
}
.faq-icon::after {
  width: 1.5px;
  height: 14px;
}
.faq-item[open] .faq-icon {
  background: var(--gold);
  color: var(--cream);
  transform: rotate(90deg);
}
.faq-item[open] .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  padding: 0 0 2rem 0;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 720px;
  font-size: 1rem;
}
.faq-answer p { margin-bottom: 1rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============ CONTACT ============ */
.section-contact {
  background: var(--cream);
  padding: var(--section-pad-sm) var(--gutter);
  max-width: 100%;
  position: relative;
}
.contact-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left .title-md { margin: 1.5rem 0 2rem; }
.contact-left .lead { margin-bottom: 3rem; }

.contact-channels {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border);
}
.channel {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease);
  position: relative;
}
.channel::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.channel:hover::before { width: 100%; }
.channel:hover { padding-left: 1rem; }

.channel .channel-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}
.channel:hover .channel-icon {
  background: var(--gold);
  color: var(--cream);
}
.channel .channel-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.channel-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.channel-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}
.channel-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-meta-block strong {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-meta-block-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--cream-warm);
  padding: 3rem;
  border: 1px solid var(--border-gold);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.form-sub {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  margin-bottom: 1.3rem;
  position: relative;
}
.form-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--cream);
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: inherit; }

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.95rem !important;
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
  margin: 0 !important;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.btn-submit {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  padding: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-power);
  z-index: 0;
}
.btn-submit > * { position: relative; z-index: 1; }
.btn-submit:hover::before { transform: translateY(0); }
.btn-submit:hover { border-color: var(--gold); }

.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  display: none;
  border-left: 2px solid;
}
.form-message.success {
  display: block;
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--ink);
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-top: 1.2rem;
  line-height: 1.6;
}
.form-privacy a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ============ FLOATING WHATSAPP ============ */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -10px rgba(37, 211, 102, 0.5);
  z-index: 50;
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
}
.float-whatsapp.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.float-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.6);
}
.float-whatsapp svg { width: 26px; height: 26px; }

/* ============ FOOTER — Editorial closure ============ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 6rem var(--gutter) 2rem;
  position: relative;
}
.footer-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
  color: var(--cream);
}
.footer-headline em { color: var(--gold); font-style: italic; }

.footer-cta {
  text-align: center;
  margin-bottom: 6rem;
}
.footer-cta .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.footer-cta .btn-primary::before { background: var(--cream); }
.footer-cta .btn-primary:hover { color: var(--ink); border-color: var(--cream); }

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(184, 152, 85, 0.2);
}

.footer-brand-logo {
  margin-bottom: 1.5rem;
}
.footer-brand-logo img {
  display: block;
  width: auto;
  height: 130px;
  max-width: 100%;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(250, 246, 239, 0.65);
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Social media iconen in footer */
.footer-socials {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 152, 85, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.footer-socials svg {
  width: 17px;
  height: 17px;
  display: block;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: rgba(250, 246, 239, 0.7);
  line-height: 1.5;
}
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }

/* Werkgebied: plaatsen in 2 kolommen zodat alle plaatsen compact passen */
.footer-plaatsen {
  columns: 2;
  column-gap: 1.5rem;
}
.footer-plaatsen li {
  break-inside: avoid;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 152, 85, 0.18);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.45);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-bottom a:hover { color: var(--gold); }

.footer-credit {
  color: rgba(250, 246, 239, 0.45);
}
.footer-credit a {
  color: rgba(250, 246, 239, 0.45);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-credit a:hover { color: var(--gold); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out-quart), transform 1s var(--ease-out-quart);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card-1, .service-card-2, .service-card-3, .service-card-4 {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  :root { --gutter: 1.5rem; }

  .header-inner {
    grid-template-columns: 1fr auto !important;
    gap: 1rem !important;
    padding: 1rem var(--gutter);
  }
  .header-logo {
    font-size: 1.15rem;
  }
  .header-logo-img {
    height: 46px;
  }
  .logo-mark {
    width: 30px;
    height: 30px;
  }
  .header-nav { display: none; }
  .header-right { display: none; }
  .header-burger {
    display: flex;
    grid-column: 2 !important;
    justify-self: end;
    width: 36px;
    gap: 6px;
    padding: 8px;
  }
  /* Header minder transparant op mobiel — content schijnt er niet storend doorheen */
  .site-header {
    background: rgba(250, 246, 239, 0.92);
  }
  .site-header.scrolled {
    background: rgba(250, 246, 239, 0.98);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 4rem 2rem 3rem;
    order: 2;
  }
  .hero-visual {
    order: 1;
    min-height: 70vh;
  }
  .hero-card {
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
  }

  .intro,
  .services-header,
  .calc-wrapper,
  .about-wrapper,
  .werkgebied-header,
  .werkgebied-grid,
  .faq-container,
  .contact-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .intro-left, .faq-left {
    position: relative;
    top: auto;
  }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }

  .process-timeline {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }
  .process-timeline::before { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  body { font-size: 16px; }

  .hero-content { padding: 3rem 1.5rem 2.5rem; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; padding-top: 2rem; }
  .hero-meta .meta-item:last-child { grid-column: auto; }
  .meta-num { font-size: 1rem; white-space: nowrap; }
  .meta-label { font-size: 0.55rem; letter-spacing: 0.06em; white-space: nowrap; }

  .hero-badge { top: 1.5rem; right: 1.5rem; }
  .hero-badge-num { font-size: 2.5rem; }
  .hero-card {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.2rem 1.5rem;
  }
  .hero-card-avatar { width: 44px; height: 44px; font-size: 1.3rem; }
  .hero-card-name { font-size: 1.15rem; }

  .marquee { animation-duration: 10s; }
  .marquee-item { font-size: 1.05rem; }

  .calc-tool { padding: 2rem 1.5rem; }
  .calc-option { padding: 1rem; }
  .calc-option-title { font-size: 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .contact-meta { grid-template-columns: 1fr; gap: 1.5rem; }

  .review-card { width: 290px; padding: 2.2rem 1.8rem; }
  .review-text { font-size: 1.1rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-logo img { height: 110px; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; }

  .float-whatsapp { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }

  .about-stamp { width: 130px; height: 130px; bottom: -30px; right: -20px; }
  .about-floating-card {
    top: 1rem;
    left: 1rem;
    max-width: 200px;
    padding: 1rem 1.2rem;
  }

  .scroll-indicator { display: none; }
}

/* Reduce motion voor accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   PAGE TEMPLATES (page.php, single.php, plaats, dienst, 404)
   ============================================================ */
.page-section {
  padding: calc(80px + var(--section-pad)) var(--gutter) var(--section-pad);
  max-width: var(--container);
  margin: 0 auto;
}
.page-wrapper { max-width: 880px; margin: 0 auto; }
.page-header { margin-bottom: 4rem; }
.page-header .eyebrow { margin-bottom: 2rem; }
.page-feature-image { margin-bottom: 4rem; }
.page-feature-image img { width: 100%; height: auto; display: block; }

.page-content {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.page-content h2, .page-content h3, .page-content h4 {
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.page-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.page-content h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.page-content p { margin-bottom: 1.5rem; }
.page-content a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.page-content a:hover { color: var(--gold-deep); }
.page-content ul, .page-content ol { margin: 0 0 1.5rem 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }
.page-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  color: var(--ink);
}

/* Plaats hero */
.plaats-hero, .dienst-hero {
  padding: calc(80px + 5rem) var(--gutter) var(--section-pad);
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.plaats-hero::before, .dienst-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 60%);
  pointer-events: none;
}
.plaats-hero-wrapper, .dienst-hero-wrapper {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.plaats-hero h1, .dienst-hero h1 {
  margin: 1.5rem 0 2rem;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}
.plaats-intro, .dienst-intro { max-width: 720px; font-size: 1.05rem; }

.plaats-content, .dienst-content {
  padding: var(--section-pad-sm) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.plaats-content-wrapper, .dienst-content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.plaats-content-wrapper h2, .dienst-content-wrapper h2,
.plaats-content-wrapper h3, .dienst-content-wrapper h3 {
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}
.plaats-content-wrapper h2, .dienst-content-wrapper h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.plaats-content-wrapper p, .dienst-content-wrapper p { margin-bottom: 1.5rem; }

.dienst-meta {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 3rem;
  flex-wrap: wrap;
}
.dienst-meta-item { display: flex; flex-direction: column; gap: 0.5rem; }
.dienst-meta-item .meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}
.dienst-meta-item .meta-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
}

/* Post list (blog) */
.post-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 4rem; }
.post-list-item {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  transition: padding 0.4s var(--ease);
}
.post-list-item:hover { padding-left: 1rem; }
.post-list-date {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.post-list-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--ink);
}
.post-list-excerpt {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Pagination */
.pagination, .nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin: 4rem 0 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span, .nav-links a, .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.6rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}
.pagination a:hover, .nav-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pagination .current, .nav-links .current {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* WP custom logo */
.header-logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.header-logo .custom-logo {
  height: 36px;
  width: auto;
}

/* ============================================================
   MOBILE MENU OVERLAY — premium full-screen menu
   ============================================================ */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9998;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-power);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu-overlay.open {
  transform: translateX(0);
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.75rem 2rem;
}

/* Header van mobile menu */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-gold);
  min-height: 50px;
}
.mobile-menu-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.mobile-menu-logo {
  display: block;
  height: 46px;
  width: auto;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* Menu nav */
.mobile-menu-nav {
  flex: 1;
}
.mobile-menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-nav > ul > li {
  border-bottom: 1px solid var(--border);
}
.mobile-menu-nav > ul > li:last-child {
  border-bottom: none;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ink);
  padding: 1.1rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease), padding 0.3s var(--ease);
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus {
  color: var(--gold);
}

/* Items met submenu */
.mobile-has-sub > a .mobile-arrow {
  display: inline-flex;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.mobile-has-sub.mobile-sub-open > a {
  color: var(--gold-deep);
}
.mobile-has-sub.mobile-sub-open > a .mobile-arrow {
  transform: rotate(90deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out-quart);
  margin: 0;
  padding: 0;
}
.mobile-has-sub.mobile-sub-open .mobile-submenu {
  max-height: 700px;
  margin: 0.4rem 0 1rem;
  padding: 0;
  border-top: 1px solid var(--border-gold);
  counter-reset: submenu-counter;
}
.mobile-submenu li {
  border-bottom: 1px solid var(--border) !important;
}
.mobile-submenu li:last-child {
  border-bottom: none !important;
}
.mobile-submenu a {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
  text-transform: none;
  color: var(--ink-medium);
  padding: 0.95rem 0.25rem;
  transition: color 0.25s var(--ease);
}
/* Cursief gouden nummer per sub-item (CSS counter) */
.mobile-submenu a::before {
  counter-increment: submenu-counter;
  content: counter(submenu-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  min-width: 1.4rem;
  flex-shrink: 0;
  text-align: left;
  line-height: 1.4;
  transition: color 0.25s var(--ease);
}
.mobile-submenu a:hover,
.mobile-submenu a:focus {
  color: var(--gold-deep);
}
.mobile-submenu a:hover::before,
.mobile-submenu a:focus::before {
  color: var(--gold-deep);
}

/* CTA buttons onderaan */
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.btn-mobile-primary,
.btn-mobile-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  text-align: center;
}
.btn-mobile-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-mobile-primary:hover,
.btn-mobile-primary:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}
.btn-mobile-primary svg {
  transition: transform 0.3s var(--ease);
}
.btn-mobile-primary:hover svg {
  transform: translateX(4px);
}
.btn-mobile-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-gold);
}
.btn-mobile-secondary:hover,
.btn-mobile-secondary:focus {
  background: var(--cream-warm);
  border-color: var(--gold);
}

/* Mobile menu nav font scaling op kleinere phones */
@media (max-width: 380px) {
  .mobile-menu-nav a { font-size: 1.5rem; }
  .mobile-menu-inner { padding: 1.25rem 1.25rem 1.5rem; }
}

/* Form error state */
.form-message.error {
  display: block;
  background: rgba(180, 60, 60, 0.08);
  border-left: 2px solid #b43c3c;
  color: #8a2929;
}

/* ============================================================
   HEADER PHONE ICON met tooltip (v2.0.1 fix)
   ============================================================ */
.header-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  border: 1px solid var(--border-gold);
  background: transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  flex-shrink: 0;
}
.header-phone-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.header-phone-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
  transform: rotate(-8deg);
}

/* Tooltip via data-tooltip */
.header-phone-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
  letter-spacing: 0.02em;
  z-index: 10;
}
.header-phone-icon::before {
  content: '';
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--ink);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s var(--ease);
  z-index: 10;
}
.header-phone-icon:hover::after,
.header-phone-icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Header grid + spacing fix — voorkomt menu-bullets en juist gebalanceerde verdeling */
/* Alleen desktop: 3-koloms grid met nav in het midden.
   Op mobiel (<=1024px) geldt de 2-koloms grid uit de mobiele media query. */
@media (min-width: 1025px) {
  .header-inner {
    grid-template-columns: auto 1fr auto !important;
    gap: 3rem !important;
  }
}
.header-nav {
  justify-content: center;
}
.nav-list {
  gap: 2rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.nav-list li {
  list-style: none !important;
}
.nav-list li::before,
.nav-list li::marker {
  content: none !important;
  display: none !important;
}
.header-right {
  gap: 1rem;
}
.header-cta {
  white-space: nowrap;
}

/* Bij smallere desktop screens (<1280px) -- menu compacter */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-list { gap: 1.4rem !important; }
  .nav-list a { font-size: 0.72rem !important; letter-spacing: 0.15em !important; }
  .header-inner { gap: 2rem !important; }
  .header-cta { padding: 0.85rem 1.3rem; font-size: 0.7rem; }
}

/* ============================================================
   NWWI AANVRAAG PAGINA (page-taxatie-aanvragen.php)
   ============================================================ */
.aanvraag-hero {
  padding: calc(80px + 5rem) var(--gutter) 3rem;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.aanvraag-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}
.aanvraag-hero-wrapper {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.aanvraag-hero h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
}
.aanvraag-hero .eyebrow {
  justify-content: center;
}

.aanvraag-widget-section {
  padding: 4rem var(--gutter) var(--section-pad);
  background: var(--cream);
  max-width: 100%;
}
.aanvraag-widget-wrapper {
  max-width: 980px;
  margin: 0 auto;
}

.widget-trust-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
  margin-bottom: 3rem;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.nwwi-widget-container {
  background: #FAF6EF;
  padding: 3rem 2rem;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
  min-height: 400px;
  position: relative;
}
.nwwi-widget-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
}

/* NWWI widget zelf — neem maximaal de container ruimte */
nwwi-widget {
  display: block;
  width: 100%;
  font-family: var(--font-body) !important;
}
nwwi-widget iframe {
  border: 0 !important;
  width: 100% !important;
  min-height: 600px;
}

.widget-fallback-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--cream-warm);
  text-align: center;
  border-left: 2px solid var(--gold);
}
.widget-fallback-cta p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.fallback-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .widget-trust-strip { gap: 1.5rem; flex-direction: column; align-items: center; }
  .nwwi-widget-container { padding: 1.5rem 1rem; }
  .widget-fallback-cta { padding: 2rem 1.5rem; }
  .widget-fallback-cta p { font-size: 1.2rem; }
}

/* ============================================================
   PROCESS ACCENT — foto + quote onder de 3 stappen
   ============================================================ */
.process-accent {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.process-accent-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--beige);
}
.process-accent-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--gold-soft) 100%);
  pointer-events: none;
}
.process-accent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out-quart);
}
.process-accent:hover .process-accent-image img {
  transform: scale(1.03);
}

.process-accent-text {
  padding: 1rem 0;
}
.process-accent-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 1.5rem 0 2rem;
  position: relative;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
}
.process-accent-quote::before {
  content: '"';
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.process-accent-sign {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
}

@media (max-width: 900px) {
  .process-accent {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
  }
  .process-accent-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================================
   NWWI Widget — Force Lettinga styling
   ============================================================ */
.nwwi-widget-container {
  /* Container background — gepast bij site */
  background: var(--cream) !important;
  padding: 2rem 1.5rem;
}

/* Forceer alle tekst in widget naar Manrope */
.nwwi-widget-container nwwi-widget,
.nwwi-widget-container nwwi-widget * {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Headings binnen widget — Fraunces serif voor consistency */
.nwwi-widget-container nwwi-widget h1,
.nwwi-widget-container nwwi-widget h2,
.nwwi-widget-container nwwi-widget h3 {
  font-family: 'Fraunces', Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  color: var(--ink) !important;
}

/* Buttons binnen widget — zwart met goud hover (Lettinga stijl) */
.nwwi-widget-container nwwi-widget button,
.nwwi-widget-container nwwi-widget [type="button"],
.nwwi-widget-container nwwi-widget [type="submit"] {
  background: var(--ink) !important;
  color: var(--cream) !important;
  border: 1px solid var(--ink) !important;
  border-radius: 0 !important;
  padding: 0.95rem 1.8rem !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-family: 'Manrope', sans-serif !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

.nwwi-widget-container nwwi-widget button:hover,
.nwwi-widget-container nwwi-widget [type="submit"]:hover {
  background: var(--gold) !important;
  color: var(--cream) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px);
}

/* Input fields binnen widget */
.nwwi-widget-container nwwi-widget input[type="text"],
.nwwi-widget-container nwwi-widget input[type="email"],
.nwwi-widget-container nwwi-widget input[type="tel"],
.nwwi-widget-container nwwi-widget input[type="number"],
.nwwi-widget-container nwwi-widget select,
.nwwi-widget-container nwwi-widget textarea {
  background: var(--cream) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 0.95rem 1.1rem !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  color: var(--ink) !important;
  transition: border-color 0.3s ease !important;
}
.nwwi-widget-container nwwi-widget input:focus,
.nwwi-widget-container nwwi-widget select:focus,
.nwwi-widget-container nwwi-widget textarea:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 1px var(--gold) !important;
}

/* Labels */
.nwwi-widget-container nwwi-widget label {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--text-secondary) !important;
  margin-bottom: 0.6rem !important;
}

/* Links in widget */
.nwwi-widget-container nwwi-widget a {
  color: var(--gold) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--gold) !important;
  transition: color 0.3s ease !important;
}
.nwwi-widget-container nwwi-widget a:hover {
  color: var(--gold-deep) !important;
}

/* Verwijder default focus rings van widget */
.nwwi-widget-container nwwi-widget *:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 2px !important;
}

/* Widget iframe — als 'ie er een gebruikt */
.nwwi-widget-container iframe {
  background: transparent !important;
  border: 0 !important;
}

/* ============================================================
   PAGE TEMPLATES — gedeelde stijlen
   ============================================================ */

.page-hero {
  padding: calc(80px + 4rem) var(--gutter) 3rem;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-wrapper {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
}
.page-hero h1 em {
  /* Italic words mogen iets ademen */
  padding: 0 0.08em;
}
.page-hero .lead {
  margin: 1.75rem auto 0;
}

/* ============================================================
   PAGE: DIENSTEN
   ============================================================ */
.section-diensten-extra {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream-warm);
}
.diensten-extra-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}
.extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.extra-item {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gold);
}
.extra-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.extra-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.extra-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
@media (max-width: 900px) {
  .extra-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   PAGE: WERKGEBIED
   ============================================================ */
.section-werkgebied-detail {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream);
}
.werkgebied-detail-wrapper {
  max-width: 980px;
  margin: 0 auto;
}
.detail-header {
  text-align: center;
  margin-bottom: 4rem;
}
.detail-header .eyebrow {
  justify-content: center;
}
.detail-content {
  max-width: 740px;
  margin: 0 auto;
}
.detail-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* ============================================================
   PAGE: OVER MAJA
   ============================================================ */
.section-over-story {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream);
}
.over-story-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.over-story-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--beige);
}
.over-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.over-story-content .eyebrow {
  margin-bottom: 1.2rem;
}
.over-story-content h2 {
  margin-bottom: 2rem;
}
.over-story-text p {
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.7 !important;
  color: var(--text-secondary) !important;
  letter-spacing: -0.005em !important;
  margin-bottom: 1.5rem;
}
.over-story-text p em {
  font-family: var(--font-body) !important;
  font-style: italic !important;
  color: var(--gold);
  font-variation-settings: normal !important;
}

.section-over-values {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream-warm);
}
.over-values-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}
.values-header {
  text-align: center;
  margin-bottom: 5rem;
}
.values-header .eyebrow {
  justify-content: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.value-card {
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--border-gold);
  position: relative;
}
.value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.value-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.value-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.section-over-credentials {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream);
}
.credentials-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}
.credentials-header {
  text-align: center;
  margin-bottom: 3rem;
}
.credentials-header .eyebrow {
  justify-content: center;
}
.credentials-header .title-md {
  margin-top: 1.5rem;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.cred-item {
  text-align: center;
  padding: 1rem 0.5rem;
}
/* Drie identieke certificering-kaartjes (Optie A — strak om het logo) */
.cred-card {
  height: 76px;
  max-width: 240px;
  margin: 0 auto 1.25rem;
  background: #fff;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  box-sizing: border-box;
}
.cred-card-logo {
  display: block;
  width: auto;
  max-width: 100%;
}
.cred-card-logo-nrvt {
  height: 44px;
}
.cred-card-logo-nwwi {
  height: 38px;
}
/* PE-blok: icoon + tekst, zelfde kaartje als de logo's */
.cred-card-pe {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
}
.cred-card-pe svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.cred-card-pe span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: left;
  letter-spacing: 0.03em;
  color: var(--gold-deep);
}
.cred-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ink);
}
.cred-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .over-story-wrapper { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
  .values-grid { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .credentials-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
}

/* ============================================================
   PAGE: CONTACT
   ============================================================ */
.section-contact-channels {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream);
}
.channels-wrapper {
  max-width: var(--container);
  margin: 0 auto;
}
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.channel-card {
  padding: 3rem 2rem;
  background: var(--cream-warm);
  border: 1px solid var(--border-gold);
  text-align: center;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.4s var(--ease-out-quart);
}
.channel-card:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-3px);
}
.channel-card .channel-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s ease;
}
.channel-card:hover .channel-icon {
  background: var(--gold);
  color: var(--cream);
}
.channel-card .channel-icon svg {
  width: 22px;
  height: 22px;
}
.channel-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  transition: color 0.4s ease;
}
.channel-card:hover .channel-eyebrow {
  color: rgba(245, 242, 234, 0.7);
}
.channel-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
  transition: color 0.4s ease;
}
.channel-card:hover .channel-value {
  color: var(--cream);
}
.channel-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.channel-card:hover .channel-meta {
  color: rgba(245, 242, 234, 0.6);
}

.section-contact-form {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream-warm);
}
.contact-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.form-header {
  text-align: center;
  margin-bottom: 4rem;
}
.form-header .eyebrow {
  justify-content: center;
}

.section-contact-visit {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream);
}
.visit-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: stretch;
}
.visit-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-info h2 {
  margin: 1rem 0 2rem;
}
.visit-info > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}
.visit-address, .visit-times {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-gold);
  margin-bottom: 1.5rem;
}
.address-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.address-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
}
.visit-map {
  min-height: 420px;
  border: 1px solid var(--border-gold);
}

@media (max-width: 900px) {
  .channels-grid { grid-template-columns: 1fr; gap: 1rem; }
  .visit-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .visit-map { min-height: 320px; }
}

/* ============================================================
   OVER PAGINA — Editorial trapfoto sectie
   ============================================================ */
.section-over-editorial {
  padding: var(--section-pad-sm) var(--gutter);
  background: var(--cream-warm);
  position: relative;
}
.section-over-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, var(--gold-soft) 0%, transparent 60%);
  pointer-events: none;
}
.over-editorial-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.over-editorial-text {
  padding: 2rem 0;
}
.over-editorial-text .eyebrow {
  margin-bottom: 1.5rem;
}
.over-editorial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 2rem;
  font-weight: 300;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.01em;
}
.over-editorial-quote::first-letter {
  color: var(--gold);
}
.over-editorial-sign {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.over-editorial-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--beige);
  position: relative;
}
.over-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out-quart);
}
.over-editorial-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .over-editorial-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .over-editorial-image {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================================
   RESPONSIVE FIXES — Page templates + Forms
   ============================================================ */

/* Tablet (iPad) — 768-1024px */
@media (max-width: 1024px) {
  .channels-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .visit-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .visit-map {
    min-height: 320px;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .over-story-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .over-story-image {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .over-editorial-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .extra-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Standalone contact form (full width) — werkt op alle viewports */
.contact-form-standalone {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  padding: 3rem;
  border: 1px solid var(--border-gold);
}

@media (max-width: 768px) {
  .contact-form-standalone {
    padding: 1.75rem 1.25rem;
  }
  .contact-form-standalone .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Mobile (<= 600px) — extra fixes */
@media (max-width: 600px) {
  /* Page hero */
  .page-hero {
    padding: calc(70px + 2.5rem) var(--gutter) 2.5rem;
  }
  .page-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  /* Channels grid op mobile */
  .channel {
    grid-template-columns: 44px 1fr;
    column-gap: 1.25rem;
    padding: 1.25rem 0;
  }
  .channel .channel-icon,
  .channel-card .channel-icon {
    width: 44px;
    height: 44px;
  }
  .channel .channel-icon svg,
  .channel-card .channel-icon svg {
    width: 18px;
    height: 18px;
  }
  .channel-value {
    font-size: 1.05rem;
  }

  /* About USP responsive */
  .about-usp {
    grid-template-columns: 36px 1fr;
    column-gap: 1rem;
    padding: 1.25rem 0;
  }
  .about-usp-num {
    font-size: 0.95rem;
  }
  .about-usp-title {
    font-size: 1.1rem;
  }
  .about-usp-text {
    font-size: 0.92rem;
  }

  /* Intro statement op mobile */
  .intro-statement {
    font-size: 1.05rem;
  }

  /* Values grid mobile */
  .value-card {
    padding: 1.75rem 1.5rem;
  }
  .value-title {
    font-size: 1.25rem;
  }

  /* Credentials mobile */
  .cred-item {
    padding: 1.5rem 1rem;
  }
  .cred-item h3 {
    font-size: 1.15rem;
  }

  /* Diensten extra */
  .extra-item {
    padding-top: 1.25rem;
  }
  .extra-title {
    font-size: 1.25rem;
  }

  /* Contact channel cards (op contact pagina) */
  .channel-card {
    padding: 2rem 1.5rem;
  }

  /* Standalone form mobile */
  .contact-form-standalone {
    padding: 1.5rem 1rem;
  }

  /* NWWI widget mobile */
  .nwwi-widget-container {
    padding: 1.25rem 0.75rem;
  }

  /* Aanvraag hero mobile */
  .aanvraag-hero {
    padding: calc(70px + 2.5rem) var(--gutter) 2rem;
  }

  /* Over editorial mobile */
  .over-editorial-quote {
    font-size: 1.15rem;
  }

  /* Werkgebied detail mobile */
  .detail-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* ============================================================
   SERVICES ACCORDION — Editorial unfold
   ============================================================ */
.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-gold);
}

.acc-item {
  border-bottom: 1px solid var(--border-gold);
  background: var(--cream);
  transition: background 0.4s var(--ease);
}
.acc-item.open {
  background: var(--cream-warm);
}

/* Header (always visible row) */
.acc-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.8rem 0.5rem;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  font-family: inherit;
  transition: padding 0.3s var(--ease);
}
.acc-header:hover {
  padding-left: 1rem;
}
.acc-item.open .acc-header {
  padding-left: 1rem;
}

.acc-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}
.acc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.acc-titles {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.acc-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.acc-item.open .acc-title {
  color: var(--ink);
}
.acc-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.acc-header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.acc-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.acc-price-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}
.acc-price-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.acc-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}
.acc-item.open .acc-toggle {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.acc-toggle svg {
  transition: transform 0.4s var(--ease-out-quart);
}
.acc-toggle-v {
  transform-origin: center;
  transition: transform 0.4s var(--ease-out-quart);
}
.acc-item.open .acc-toggle-v {
  transform: scaleY(0);
}

/* Body (uitklap inhoud) */
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out-quart);
}
.acc-item.open .acc-body {
  grid-template-rows: 1fr;
}
.acc-body-inner {
  overflow: hidden;
}
.acc-item.open .acc-body-inner {
  padding: 0 1rem 2.5rem;
}

.acc-body-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-gold);
  padding-top: 1.5rem;
}

.acc-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.acc-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}
.acc-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.55;
  font-weight: 400;
}
.acc-features-list svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.acc-body-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.acc-meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.acc-meta-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.acc-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  font-weight: 500;
}
.acc-meta-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}

.acc-body-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.acc-link-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 0.3rem;
}
.acc-link-detail::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.acc-link-detail svg {
  transition: transform 0.3s var(--ease);
}
.acc-link-detail:hover svg {
  transform: translateX(4px);
}
.acc-link-detail:hover {
  color: var(--gold);
}

.acc-link-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.6rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.acc-link-cta:hover {
  background: var(--gold);
  color: var(--cream);
}

/* Tablet */
@media (max-width: 1024px) {
  .acc-header {
    padding: 1.5rem 0.5rem;
    gap: 1rem;
  }
  .acc-title {
    font-size: 1.4rem;
  }
  .acc-price-value {
    font-size: 1.2rem;
  }
  .acc-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .acc-header {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    padding: 1.25rem 0.25rem;
  }
  .acc-header:hover,
  .acc-item.open .acc-header {
    padding-left: 0.5rem;
  }
  .acc-header-left {
    gap: 0.85rem;
  }
  .acc-num {
    font-size: 0.95rem;
  }
  .acc-title {
    font-size: 1.2rem;
  }
  .acc-subtitle {
    font-size: 0.88rem;
    /* Hide on mobile - alleen titel zichtbaar in collapsed state */
    display: none;
  }
  .acc-item.open .acc-subtitle {
    display: block;
  }
  .acc-header-right {
    gap: 0.75rem;
  }
  .acc-price {
    display: none;
  }
  .acc-item.open .acc-price {
    display: flex;
  }
  .acc-toggle {
    width: 38px;
    height: 38px;
  }
  .acc-item.open .acc-body-inner {
    padding: 0 0.5rem 2rem;
  }
  .acc-body-grid {
    gap: 1.5rem;
    padding-top: 1.25rem;
  }
  .acc-body-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .acc-link-detail,
  .acc-link-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   MOBILE RESPONSIVE SWEEP — alle pagina's perfect
   ============================================================ */

/* Tablet sweep (768-1024px) */
@media (max-width: 1024px) {
  /* Services header op tablet */
  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .services-header-right {
    max-width: 100%;
  }

  /* Process timeline tablet */
  .process-timeline { gap: 2.5rem; }

  /* Manifest sectie tablet */
  .intro {
    gap: 2rem;
    padding: var(--section-pad-sm) var(--gutter);
  }

  /* About sectie tablet */
  .about-wrapper { gap: 3rem; }

  /* Calculator tablet */
  .calc-wrapper { gap: 3rem; }
}

/* Mobile sweep (<= 600px) */
@media (max-width: 600px) {
  /* Section padding kleiner op mobile */
  :root {
    --section-pad: clamp(2.5rem, 8vw, 4rem);
    --section-pad-sm: clamp(2rem, 6vw, 3rem);
  }

  /* Header on mobile */
  .site-header.scrolled {
    backdrop-filter: blur(12px);
  }
  .logo-text {
    /* Sneak full title to short on small screens */
    font-size: 0.95rem;
  }

  /* Hero typografie mobile */
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-subtitle { font-size: 0.95rem; line-height: 1.65; }
  .hero-meta-item { font-size: 0.75rem; }

  /* Section headers mobile */
  .services-header,
  .calc-header,
  .werkgebied-header,
  .about-wrapper,
  .faq-container,
  .contact-wrapper {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  /* Title sizing mobile */
  .title-md { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .title-lg { font-size: clamp(2rem, 8vw, 2.8rem); }
  .title-xl { font-size: clamp(2.2rem, 9vw, 3rem); }

  /* Eyebrow on mobile */
  .eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.6;
  }
  .eyebrow::before,
  .eyebrow-center::after {
    width: 22px;
  }

  /* Lead on mobile */
  .lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  /* About section mobile */
  .about-stamp {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: -15px;
  }
  .about-stamp-text {
    font-size: 7px;
  }
  .about-stamp-center {
    font-size: 1.1rem;
  }

  /* Floating cards op mobile minimaal */
  .about-floating-card {
    padding: 0.85rem 1rem;
    max-width: 180px;
  }
  .about-floating-card-num {
    font-size: 1.8rem;
  }

  /* Manifest mobile fix */
  .intro {
    padding: var(--section-pad-sm) var(--gutter);
    gap: 1.5rem;
  }
  .intro-signoff {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Process steps mobile */
  .process-num {
    font-size: 3rem;
  }
  .process-step-title {
    font-size: 1.3rem;
  }

  /* Werkgebied kaart mobile */
  .werkgebied-map-wrapper {
    aspect-ratio: 1/1;
  }
  .werkgebied-plaatsen {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  /* Marquee mobile - smaller text */
  .marquee-item {
    font-size: 1rem;
  }

  /* Calculator mobile */
  .calc-options {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .calc-result {
    padding: 1.5rem 1.25rem;
  }

  /* Reviews carousel mobile */
  .reviews-track { gap: 1rem; }
  .review-card {
    width: 270px;
    padding: 2rem 1.5rem;
  }

  /* FAQ mobile */
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
  }
  .faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Form mobile fixes */
  .contact-form,
  .contact-form-standalone {
    padding: 1.5rem 1.25rem;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px; /* voorkomt iOS zoom on focus */
    padding: 0.85rem 1rem;
  }
  .btn-submit {
    width: 100%;
    justify-content: center;
  }

  /* Hero CTA buttons mobile */
  .hero-cta {
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer mobile */
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-headline {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  /* Page hero mobile */
  .page-hero {
    padding: calc(75px + 1.5rem) var(--gutter) 2rem;
  }
  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .page-hero .lead {
    font-size: 0.98rem;
    margin-top: 1.25rem;
  }

  /* Diensten extra blokken mobile */
  .extra-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Over story mobile */
  .over-story-wrapper {
    gap: 2rem;
  }
  .over-story-image {
    max-width: 380px;
  }
  .over-story-text p {
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
  }

  /* Over editorial mobile */
  .over-editorial-quote {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  /* Visit map mobile */
  .visit-map { min-height: 260px; }

  /* WhatsApp floating button mobile */
  .float-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* Small phone (≤ 380px) */
@media (max-width: 380px) {
  :root {
    --gutter: 1.25rem;
  }
  .logo-text {
    display: none;
  }
  .header-logo {
    gap: 0;
  }
  .header-burger {
    width: 32px;
  }
  .hero-title { font-size: clamp(1.8rem, 10vw, 2.2rem); }
  .acc-title { font-size: 1.1rem; }
  .acc-toggle {
    width: 34px;
    height: 34px;
  }
  .acc-num { font-size: 0.85rem; }
}


/* ================================================================
   v2.1.3 — FINAL TYPOGRAPHY OVERRIDE
   Alle tekst in about-sectie (homepage) en over-story-sectie (/over/)
   geforceerd naar Manrope sans-serif. Body paragraphs én USP items.
   Quote blijft Fraunces italic (decorative element).
   ================================================================ */

/* --- Homepage about: paragraphs --- */
.section-about .about-text,
.section-about .about-text *,
section.section-about .about-text p {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-style: normal !important;
  font-variation-settings: normal !important;
  font-feature-settings: normal !important;
}
.section-about .about-text p {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: #4A4239 !important;
  letter-spacing: 0 !important;
  margin-bottom: 1.3rem !important;
}
.section-about .about-text em {
  font-style: italic !important;
  color: var(--gold) !important;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* --- Homepage about: USP titel + tekst nu OOK Manrope sans-serif --- */
.section-about .about-usp-title,
.section-about .about-usp-title * {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-style: normal !important;
  font-variation-settings: normal !important;
  font-feature-settings: normal !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  color: #2A2520 !important;
  letter-spacing: 0 !important;
}

.section-about .about-usp-text,
.section-about .about-usp-text * {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-style: normal !important;
  font-variation-settings: normal !important;
  font-feature-settings: normal !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #4A4239 !important;
  letter-spacing: 0 !important;
}

/* USP nummer blijft Fraunces gold italic (decoratief) */
.section-about .about-usp-num {
  font-size: 1.05rem !important;
  letter-spacing: 0.02em !important;
}

/* --- /over/ pagina: story paragraphs --- */
.section-over-story .over-story-text,
.section-over-story .over-story-text *,
section.section-over-story .over-story-text p {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-style: normal !important;
  font-variation-settings: normal !important;
  font-feature-settings: normal !important;
}
.section-over-story .over-story-text p {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: #4A4239 !important;
  letter-spacing: 0 !important;
  margin-bottom: 1.5rem !important;
}
.section-over-story .over-story-text em {
  font-style: italic !important;
  color: var(--gold) !important;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* --- Mobile: kleiner --- */
@media (max-width: 768px) {
  .section-about .about-text p,
  .section-over-story .over-story-text p {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
  }
  .section-about .about-usp-title {
    font-size: 1rem !important;
  }
  .section-about .about-usp-text {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }
}

/* ================================================================
   v2.1.3 — IMAGE PLACEHOLDERS
   Als hero_image of about_image niet ingesteld is, toon een
   gestileerde placeholder met subtiele tekst ipv lege beige vlak.
   ================================================================ */

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-warm) 0%, #E8DFD0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image-placeholder::before {
  content: 'Portretfoto';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(74, 66, 57, 0.4);
  letter-spacing: 0.05em;
}

.about-image:empty,
.about-image:not(:has(img)) {
  background: linear-gradient(135deg, var(--cream-warm) 0%, #E8DFD0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image:not(:has(img))::before {
  content: 'Portretfoto Maja';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(74, 66, 57, 0.4);
  letter-spacing: 0.05em;
}

.over-story-image:not(:has(img)) {
  background: linear-gradient(135deg, var(--cream-warm) 0%, #E8DFD0 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.over-story-image:not(:has(img))::before {
  content: 'Portretfoto Maja';
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(74, 66, 57, 0.4);
  letter-spacing: 0.05em;
}

/* ================================================================
   v2.1.4 — CALCULATOR INFO-CARD (prijsvrij)
   ================================================================ */
.calc-info-card {
  background: var(--cream);
  border: 1px solid var(--border-gold);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}
.calc-info-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.calc-info-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.calc-info-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}
.calc-info-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.calc-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.4rem;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.calc-info-text strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.calc-info-text span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-medium);
}
.calc-info-cta {
  width: 100%;
  justify-content: center;
}

/* ================================================================
   v2.1.4 — TAXATIE AANVRAGEN CTA-SECTIE
   ================================================================ */
.section-taxatie-cta {
  padding: var(--section-pad) var(--gutter);
  background: var(--ink);
  color: var(--cream);
}
.taxatie-cta-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.taxatie-cta-inner {
  text-align: center;
  max-width: 680px;
}
.section-taxatie-cta .eyebrow-center {
  color: var(--gold-light);
}
.taxatie-cta-title {
  color: var(--cream);
  margin: 1.25rem 0 1.5rem;
}
.taxatie-cta-title em {
  color: var(--gold-light);
}
.taxatie-cta-lead {
  color: rgba(250, 246, 239, 0.72);
  margin-bottom: 2.5rem;
}
.taxatie-cta-actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
}
/* Primaire CTA-knop: vol goud op donkere achtergrond */
.btn-cta-primary,
.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.15rem 2rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  text-align: center;
}
.btn-cta-primary {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-cta-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-cta-primary .btn-arrow svg {
  width: 15px;
  height: 15px;
  display: block;
}
.btn-cta-primary:hover .btn-arrow {
  transform: translateX(5px);
}
.btn-cta-primary .btn-arrow {
  transition: transform 0.3s var(--ease);
}
/* WhatsApp-knop: omlijnd op donkere achtergrond */
.btn-cta-whatsapp {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 239, 0.3);
  font-weight: 500;
}
.btn-cta-whatsapp:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-wa-icon {
  display: inline-flex;
  align-items: center;
  color: currentColor;
}
.btn-wa-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ---- Certificering-balk (NRVT / NWWI) ---- */
.certificering-balk {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
/* Donkere variant — op .section-taxatie-cta */
.certificering-balk-dark {
  border-top-color: rgba(250, 246, 239, 0.12);
}
.certificering-balk-dark .certificering-label {
  color: rgba(250, 246, 239, 0.5);
}
.certificering-balk-dark .certificering-divider {
  background: rgba(250, 246, 239, 0.15);
}
/* Lichte variant — op cream achtergrond (taxatie-aanvragen pagina) */
.certificering-balk-light {
  border-top-color: var(--border-gold);
}
.certificering-balk-light .certificering-label {
  color: var(--gold);
}
.certificering-balk-light .certificering-divider {
  background: var(--border-gold);
}
.certificering-balk-light .certificering-logo {
  border: 1px solid var(--border-gold);
}

.certificering-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.certificering-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.certificering-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: 4px;
}
.certificering-logo img {
  display: block;
  height: 44px;
  width: auto;
}
.certificering-logo-nwwi img {
  height: 52px;
}
.certificering-divider {
  width: 1px;
  height: 40px;
  flex-shrink: 0;
}

/* Certificering-balk binnen de aanvraag-widget wrapper */
.aanvraag-certificering {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.aanvraag-certificering .certificering-balk {
  margin-top: 0;
}

/* ================================================================
   v2.1.4 — MOBILE RESPONSIVE (taxatie-cta + calc-info + certificering)
   ================================================================ */
@media (max-width: 768px) {
  .taxatie-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .taxatie-cta-actions .btn-cta-primary,
  .taxatie-cta-actions .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
  .certificering-logos {
    flex-direction: column;
    gap: 1.25rem;
  }
  .certificering-divider {
    width: 40px;
    height: 1px;
  }
  .certificering-logo {
    padding: 0.85rem 1.25rem;
  }
  .calc-info-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0.9rem;
  }
  .calc-info-num {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
  /* Lange knoptekst mag wrappen op smalle schermen */
  .calc-info-cta {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.12em;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .certificering-logo img { height: 38px; }
  .certificering-logo-nwwi img { height: 44px; }
}

/* ================================================================
   v2.1.4 — TRUSTINDEX GOOGLE REVIEWS CONTAINER
   De widget laadt eigen styling; deze regels plaatsen 'm netjes
   in het thema-grid. Widget-interne opmaak wordt niet overschreven.
   ================================================================ */
.reviews-trustindex {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
/* Iets minder ruimte tussen header en widget dan bij de marquee */
.section-reviews-trustindex .reviews-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
/* Trustindex widget elementen mogen de volledige breedte gebruiken */
.reviews-trustindex .ti-widget {
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  .reviews-trustindex {
    padding: 0 var(--gutter);
  }
}

/* ============ SUBTIELE HOEKAFRONDING (v2.1.4) ============ */
/* Gerichte ronding op visuele blokken. Hero-afbeelding en ronde iconen
   (border-radius 50%) bewust uitgesloten zodat er niets breekt. */
.service-card,
.dienst-card,
.channel-card,
.acc-item,
.faq-item,
.review-card,
.cred-card,
.cred-item,
.calc-info-card,
.calc-tool,
.calc-result,
.calc-option,
.process-step-panel,
.process-accent,
.process-accent-image,
.value-card,
.about-image,
.over-editorial-image,
.over-story-image,
.page-feature-image,
.visit-map,
.visit-map iframe,
.footer-cta,
.btn-primary,
.btn-secondary,
.btn-cta,
.btn-submit,
.btn-ghost,
.form-field input,
.form-field select,
.form-field textarea,
.nwwi-widget-container {
  border-radius: var(--radius);
}
/* Afbeeldingen binnen afgeronde blokken netjes mee laten ronden */
.about-image img,
.over-editorial-image img,
.over-story-image img,
.page-feature-image img,
.process-accent-image img {
  border-radius: var(--radius);
}

/* ============================================================
   FORCEER about titel-afstand (mag door niets overschreven worden,
   ook niet door Customizer Extra CSS). Visueel gelijk aan de
   andere sectie-introducties op de site.
   ============================================================ */
/* ============================================================
   About titel/tekst afstand. De afstand komt nu via PADDING-TOP op
   de tekst (niet via de titelmarge), zodat een override op de
   titelmarge dit niet kan raken. Titelmarge op 0 om dubbel te
   voorkomen. Maximale specificiteit via :not() zodat geen enkele
   Customizer Extra CSS of plugin dit kan overschrijven.
   ============================================================ */
html body section#over.section-about .about-wrapper .about-content h2.title-md:not(#_a):not(#_b):not(#_c):not(#_d) {
  margin-bottom: 0 !important;
}
html body section#over.section-about .about-wrapper .about-content .about-text:not(#_a):not(#_b):not(#_c):not(#_d) {
  margin-top: 0 !important;
  padding-top: 3rem !important;
  transform: none !important;
}
