/* ============================================================
   Praktijk Kinesiologie Emmen
   Warm, rustig, natuurlijk. Fraunces + Nunito Sans.
   ============================================================ */

:root {
  /* Palet (uit briefing) */
  --bg: #FAF8F3;
  --white: #FFFFFF;
  --green: #6F9277;
  --green-dark: #5A7A62;   /* afgeleid voor hover */
  --green-soft: #E6EDE6;   /* zeer lichte groentint */
  --sand: #D8C7B0;
  --accent: #EFE7DC;
  --text: #2D2A26;
  --subtext: #6E675F;
  --line: #E7DFD3;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Ritme */
  --container: 1140px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7rem);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 3px rgba(45, 42, 38, 0.05);
  --shadow: 0 18px 40px -22px rgba(45, 42, 38, 0.28);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.35rem, 1.7rem + 3vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.75rem); }
h3 { font-size: 1.32rem; }

p { margin: 0 0 1.1rem; color: var(--subtext); }
h1 + p, h2 + p, h3 + p { color: var(--subtext); }

a { color: var(--green-dark); text-decoration-color: rgba(111, 146, 119, 0.4); text-underline-offset: 3px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 0.75rem; top: -3rem;
  background: var(--green); color: var(--white);
  padding: 0.6rem 1rem; border-radius: 0 0 10px 10px;
  z-index: 100; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2.5px solid var(--green-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: var(--btn-py) 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
}
.btn-sm { --btn-py: 0.6rem; font-size: 0.9rem; padding-inline: 1.15rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 22px -12px rgba(111, 146, 119, 0.9);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--accent);
  color: var(--text);
  border-color: var(--sand);
}
.btn-secondary:hover { background: var(--sand); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}
.brand-mark { color: var(--green); display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}
.brand-place {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 3px;
}

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li > a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-list > li > a:hover { background: var(--green-soft); color: var(--green-dark); }
.nav-cta { margin-left: 0.4rem; }
.nav-cta a { white-space: nowrap; }
.nav-cta a:hover { background: var(--green-dark); color: var(--white); }

/* Tussen tablet en desktop: menu iets compacter zodat de CTA heel blijft */
@media (min-width: 721px) and (max-width: 1200px) {
  .nav-list { gap: 0.1rem; }
  .nav-list > li > a { padding: 0.5rem 0.6rem; font-size: 0.9rem; }
  .brand-name { font-size: 1rem; }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  width: 46px; height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bars { display: grid; gap: 5px; }
.nav-toggle-bars span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5.5rem) var(--section-y);
}
.hero::before {
  /* zachte organische gloed achter hero */
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 60% 40%, rgba(216, 199, 176, 0.4), transparent 62%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 34rem; }
.hero-lead {
  font-size: 1.16rem;
  color: var(--subtext);
  margin-bottom: 1.9rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.badges li { display: inline-flex; align-items: center; gap: 0.5rem; }
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

/* Signature: breathing orb */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
}
.orb {
  position: relative;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  animation: breathe 8s ease-in-out infinite;
}
.orb-ring-1 { inset: 24%; background: var(--white); border-color: var(--accent); box-shadow: var(--shadow); }
.orb-ring-2 { inset: 12%; border-color: rgba(111, 146, 119, 0.35); animation-delay: 0.25s; }
.orb-ring-3 { inset: 0; border-color: rgba(216, 199, 176, 0.55); animation-delay: 0.5s; }
.orb-core {
  position: relative;
  width: 52%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #86a68c, var(--green) 70%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 -8px 20px rgba(45, 42, 38, 0.18), 0 20px 40px -18px rgba(111, 146, 119, 0.8);
  animation: breathe-core 8s ease-in-out infinite;
}
.orb-word {
  font-family: var(--display);
  font-style: italic;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes breathe-core {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.hero-blob { position: absolute; border-radius: 50%; z-index: -1; filter: blur(2px); }
.hero-blob-a {
  width: 120px; height: 120px;
  background: rgba(111, 146, 119, 0.16);
  top: 6%; left: 2%;
}
.hero-blob-b {
  width: 80px; height: 80px;
  background: rgba(216, 199, 176, 0.4);
  bottom: 10%; right: 6%;
}

/* ---------- Section basis ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section-tint { background: var(--accent); }

.section-head {
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.section-head .eyebrow { display: block; }
.section-intro { font-size: 1.1rem; }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* Link met pijl */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--green-dark);
  margin-top: 0.4rem;
}
.link-arrow svg { transition: transform 0.22s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Split (Wat is / Over) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-copy { max-width: 34rem; }
.split-reverse .split-copy { order: 2; }

.keyword-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  position: relative;
}
.keyword-card::before {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 90px; height: 90px;
  background: var(--green-soft);
  border-radius: 50%;
  z-index: -1;
}
.keyword-card-title {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.keyword-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.keyword-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
}
.keyword-list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 1.5px solid var(--green);
  flex: none;
}

/* ---------- Klachten cards ---------- */
.card-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.65rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sand);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 1.1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.4rem; }
.card p { margin: 0; font-size: 0.98rem; }

.disclaimer {
  max-width: 46rem;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--subtext);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
}

/* ---------- Werkwijze timeline ---------- */
.timeline {
  list-style: none;
  margin: 0 auto; padding: 0;
  max-width: 46rem;
  display: grid;
  gap: 0.5rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  position: relative;
}
.step + .step { border-top: 1px solid var(--line); }
.step-index {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  flex: none;
}
.section-tint .step-index { background: var(--white); }
.step-body h3 { margin-bottom: 0.35rem; }
.step-body p { margin: 0; }

/* ---------- Over: portret ---------- */
.portrait-card { order: 1; display: grid; place-items: center; }
.split-reverse .portrait-card { order: 1; }
.portrait-photo {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0;
}
.portrait-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.portrait-caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--subtext);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { margin-bottom: 1.2rem; }
.contact-details { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-details li { display: grid; gap: 0.15rem; }
.contact-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--green);
}
.contact-value { font-weight: 600; color: var(--text); }

.map-image {
  position: relative;
  display: block;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.map-image:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.map-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 520;
  object-fit: cover;
  display: block;
}
.map-image-label {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* Direct-contact kaart */
.contact-invite {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.contact-invite h3 { color: var(--white); margin-bottom: 0.75rem; }
.contact-invite > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}
.contact-invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
}
.contact-invite .btn-primary {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: none;
}
.contact-invite .btn-primary:hover { background: var(--accent); }
.contact-invite .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.contact-invite .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}
.contact-invite-note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: #D9D3CB;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  margin-top: 0;
}
.section:last-of-type { border-bottom: 1px solid var(--line); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
}
.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.7rem;
}
.footer-brand p { color: #B9B2A9; max-width: 24rem; margin: 0; }
.footer-heading {
  display: block;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-nav a { color: #D9D3CB; text-decoration: none; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact p { color: #B9B2A9; margin: 0 0 0.4rem; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.5rem;
}
.footer-bottom p { margin: 0; color: #9C948A; font-size: 0.85rem; }

/* ---------- Klachten: pill-lijst ---------- */
.pill-block { text-align: center; margin-top: 2.75rem; }
.pill-intro {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.pill-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 52rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.pill-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.section-tint .pill-list li { border-color: var(--sand); }
.pill-note {
  margin: 1.1rem 0 0;
  font-style: italic;
  color: var(--subtext);
}

/* ---------- Tarief ---------- */
.price-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.price-card-featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.price-tag {
  position: absolute;
  top: -0.75rem;
  left: 1.75rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.price-name {
  font-weight: 700;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.price-amount {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0;
  line-height: 1;
}
.price-meta {
  color: var(--subtext);
  font-size: 0.9rem;
  margin: 0 0 0.6rem;
}
.price-desc { margin: 0; font-size: 0.96rem; }
.price-fineprint {
  max-width: 46rem;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--subtext);
}

/* Vergoeding-band */
.reassure {
  margin: 2.5rem auto 0;
  max-width: 52rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.reassure-title {
  text-align: center;
  margin-bottom: 1.4rem;
}
.reassure-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.reassure-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  font-weight: 600;
  color: var(--text);
}
.reassure-icon {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  flex: none;
}
.reassure-icon svg { width: 17px; height: 17px; }
.reassure-note {
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--subtext);
  text-align: center;
}
.reassure-note strong { color: var(--green-dark); }

/* ---------- Ervaringen ---------- */
.quote-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.quote-card::before {
  content: "\201C";
  font-family: var(--display);
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--sand);
  margin-bottom: 0.4rem;
}
.quote-card blockquote { margin: 0; flex: 1; }
.quote-card blockquote p {
  font-family: var(--display);
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.quote-name {
  margin: 1.2rem 0 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-dark);
}
.quote-name::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1.5px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 0.5rem;
}

.footer-kvk { font-size: 0.85rem !important; color: #9C948A !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .hero-visual { order: -1; min-height: 300px; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split-reverse .split-copy { order: 2; }
  .split-reverse .portrait-card { order: 1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .price-tag { left: 50%; transform: translateX(-50%); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  /* Mobiele navigatie */
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), visibility 0.28s;
  }
  .nav-list.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-list > li > a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-cta a { width: 100%; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ---------- Veelgestelde vragen ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0.25rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.1vw, 1.22rem);
  font-weight: 500;
  line-height: 1.35;
}

.faq-item > summary:hover h3,
.faq-item[open] > summary h3 { color: var(--green-dark); }

.faq-item > summary:focus-visible {
  outline: 2.5px solid var(--green-dark);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Plusje dat naar een minnetje draait */
.faq-marker {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-soft);
  transition: background 0.24s var(--ease);
}

.faq-marker::before,
.faq-marker::after {
  content: "";
  position: absolute;
  inset: 50% 9px auto;
  height: 1.6px;
  border-radius: 2px;
  background: var(--green-dark);
  transform: translateY(-50%);
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.faq-marker::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-marker { background: var(--accent); }
.faq-item[open] .faq-marker::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.faq-answer {
  padding: 0 0.25rem 1.4rem;
  max-width: 68ch;
}

.faq-answer p { margin: 0; }

/* ---------- Social links in de footer ---------- */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 243, 0.28);
  color: var(--bg);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .orb-ring, .orb-core { animation: none; }
}
