/* ==========================================================================
   Geeke Blenk Psychologie: stylesheet
   Palette afgeleid van het geaccordeerde logo (zie logo-conceptvel):
   zand, zachte salie/groen, crème en warm antraciet. Blauw en perzik
   bewust niet als hoofdkleur gebruikt (rustige, samenhangende combinatie).
   ========================================================================== */

:root {
  /* Kleuren: logo-palet */
  --sand: #d4cabc;
  --sage-50: #eef2ef;
  --sage-200: #cfdcd2;
  --sage-300: #adc2b1;
  --sage-600: #4f6b58;
  --sage-700: #3e5646;
  --cream-50: #faf7f1;
  --cream-100: #f1eae1;
  --peach-200: #f4c3b3;
  --ink-900: #322f2b;
  --ink-700: #4a4642;
  --ink-500: #6e6c6d;
  --white: #ffffff;

  /* Typografie */
  --font-display: "Stack Sans Headline", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Stack Sans Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-h1: clamp(2.25rem, 1.7rem + 2.4vw, 3.75rem);
  --fs-h2: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-lead: clamp(1.125rem, 1.05rem + 0.3vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;

  /* Ruimte & vorm */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1160px;
  --space-section: clamp(4rem, 3rem + 4vw, 7.5rem);

  --shadow-soft: 0 1px 2px rgba(50, 47, 43, 0.04), 0 8px 24px -12px rgba(50, 47, 43, 0.12);
  --transition: 200ms ease;
}

/* --------------------------------------------------------------------- */
/* Reset                                                                  */
/* --------------------------------------------------------------------- */

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink-900);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

@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;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------- */
/* Focus & toegankelijkheid                                               */
/* --------------------------------------------------------------------- */

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--sage-300), var(--sage-600));
  z-index: 70;
  transition: width 100ms linear;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    transition: none;
  }
}

/* --------------------------------------------------------------------- */
/* Layout helpers                                                         */
/* --------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

section {
  padding-block: var(--space-section);
}

.section-header {
  max-width: 42rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sage-700);
  margin-bottom: 0.85rem;
}

.accent-text {
  background: linear-gradient(100deg, var(--sage-700), var(--sage-600) 55%, var(--sage-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-header p {
  margin-top: 1rem;
  font-size: var(--fs-lead);
  color: var(--ink-700);
}

.note {
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  color: var(--ink-500);
  font-style: italic;
}

.bg-cream {
  background: var(--cream-100);
}

.bg-sage {
  background: var(--sage-50);
}

.bg-sage-soft {
  background: var(--sage-200);
}

/* --------------------------------------------------------------------- */
/* Knoppen & links                                                        */
/* --------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--sage-600);
  color: var(--cream-50);
}

.btn-primary:hover {
  background: var(--sage-700);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.btn-outline:hover {
  background: var(--ink-900);
  color: var(--cream-50);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--sage-700);
  text-decoration: underline;
  text-decoration-color: var(--sage-300);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

/* --------------------------------------------------------------------- */
/* Header / navigatie                                                     */
/* --------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(50, 47, 43, 0.08);
  box-shadow: 0 4px 20px -14px rgba(50, 47, 43, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.75rem;
  gap: 1.5rem;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink-900);
}

.brand-logo {
  height: 96px;
  width: auto;
}

@media (max-width: 780px) {
  .brand-logo {
    height: 68px;
  }
}

.brand-mark {
  width: 34px;
  height: 43px;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.brand-name span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
}

.main-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-700);
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.main-nav a:not(.btn):hover {
  color: var(--ink-900);
  border-color: var(--sage-300);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-toggle-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink-500);
}

.lang-toggle-option.is-active {
  background: var(--sage-600);
  color: var(--cream-50);
}

.lang-toggle-option.is-disabled {
  opacity: 0.5;
  cursor: default;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--ink-900);
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* --------------------------------------------------------------------- */
/* Hero                                                                   */
/* --------------------------------------------------------------------- */

.hero {
  padding-block: clamp(1.25rem, 0.8rem + 1.5vw, 2rem) 0;
}

.hero-card {
  position: relative;
  background: var(--sage-200);
  border-radius: 0 0 56px 56px;
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) clamp(3rem, 2.5rem + 3vw, 5rem);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: center;
}

.hero-content {
  max-width: 34rem;
  min-width: 0;
}

.hero-content h1 {
  font-size: var(--fs-h1);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: var(--fs-lead);
  color: var(--ink-700);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-media-wrap {
  position: relative;
  max-width: 26rem;
  margin-inline: auto;
  min-width: 0;
}

.hero-media {
  position: relative;
  border-radius: 63% 37% 54% 46% / 47% 41% 59% 53%;
  overflow: hidden;
  aspect-ratio: 4 / 4.3;
  box-shadow: var(--shadow-soft);
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-credential {
  position: absolute;
  bottom: 0.75rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: max-content;
  max-width: min(12rem, calc(100vw - 2.5rem));
}

.hero-credential strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-900);
}

.hero-credential span {
  font-size: 0.8rem;
  color: var(--ink-500);
}

@media (max-width: 500px) {
  .hero-credential {
    right: 0.5rem;
  }
}

/* --------------------------------------------------------------------- */
/* Intro                                                                  */
/* --------------------------------------------------------------------- */

.intro .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  align-items: start;
}

.intro-lead-col {
  position: relative;
  min-width: 0;
}

.intro-lead-col h2 {
  font-size: var(--fs-h2);
  margin-top: 0.5rem;
}

.intro-body {
  padding-top: 0.4rem;
  min-width: 0;
}

.intro-body p + p {
  margin-top: 1.1rem;
}

.intro-body p {
  color: var(--ink-700);
  font-size: var(--fs-lead);
}

.blob {
  position: absolute;
  border-radius: 63% 37% 54% 46% / 47% 41% 59% 53%;
  z-index: -1;
  pointer-events: none;
}

.blob--sand {
  top: -2.5rem;
  left: -3rem;
  width: 12rem;
  height: 12rem;
  background: var(--sand);
  opacity: 0.55;
}

.blob--sage-lg {
  top: 50%;
  right: -4rem;
  transform: translateY(-50%);
  width: 20rem;
  height: 20rem;
  background: rgba(207, 220, 210, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-decor-mark {
  width: 66%;
  height: auto;
}

/* --------------------------------------------------------------------- */
/* Hulpvragen                                                             */
/* --------------------------------------------------------------------- */

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

.topic-card {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(50, 47, 43, 0.07);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.75rem;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 350ms ease;
}

.topic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(173, 194, 177, 0.35), transparent 62%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.topic-card:hover,
.topic-card:focus-within {
  box-shadow: var(--shadow-soft);
}

.topic-card:hover::before,
.topic-card:focus-within::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce), (hover: none) {
  .topic-card {
    transform: none !important;
  }
}

.topic-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-300);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topic-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage-700);
}

.topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.topic-card p {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.topic-card--sage {
  background: var(--sage-200);
  border-color: transparent;
}

.topic-card--sand {
  background: var(--sand);
  border-color: transparent;
}

.topic-card--sage .topic-icon,
.topic-card--sand .topic-icon {
  background: var(--white);
}

.topic-card--sage p,
.topic-card--sand p {
  color: var(--ink-700);
}

.placeholder-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-700);
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------- */
/* Werkwijze                                                              */
/* --------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.steps--four {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.25rem;
}

.step {
  position: relative;
  padding-top: 0.5rem;
}

.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--sage-300);
  line-height: 1;
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--ink-500);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------- */
/* Over Geeke                                                             */
/* --------------------------------------------------------------------- */

.about .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: center;
}

.about-body {
  min-width: 0;
}

.about-body h2 em {
  font-style: normal;
  color: var(--sage-600);
}

.about-body p {
  color: var(--ink-700);
}

.about-body h2 + p,
.about-body p + p {
  margin-top: 1.1rem;
}

.about-reflection {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-900);
  border-left: 3px solid var(--sage-300);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
}

.about-decor {
  position: relative;
  min-height: 16rem;
}


/* --------------------------------------------------------------------- */
/* Praktische informatie                                                  */
/* --------------------------------------------------------------------- */

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(50, 47, 43, 0.09);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(50, 47, 43, 0.09);
}

.practical-item {
  background: var(--white);
  padding: 1.85rem 1.75rem;
}

.practical-item h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.practical-item h3 svg {
  width: 20px;
  height: 20px;
  stroke: var(--sage-700);
  flex-shrink: 0;
}

.practical-item p {
  color: var(--ink-500);
  font-size: 0.95rem;
}

.placeholder-value {
  font-style: italic;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------- */
/* Werkwijze: kaart met cactusfoto als volledige achtergrond              */
/* --------------------------------------------------------------------- */

.werkwijze-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  box-shadow: var(--shadow-soft);
}

.werkwijze-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.werkwijze-bg picture,
.werkwijze-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.werkwijze-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(250, 247, 241, 0.97) 0%, rgba(250, 247, 241, 0.96) 56%, rgba(250, 247, 241, 0.45) 72%, rgba(250, 247, 241, 0.05) 92%);
}

.werkwijze-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
}

.werkwijze-content .section-header {
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

/* --------------------------------------------------------------------- */
/* Contact                                                                */
/* --------------------------------------------------------------------- */

#contact .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: start;
}

.contact-intro p {
  margin-top: 1rem;
  font-size: var(--fs-lead);
  color: var(--ink-700);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--ink-700);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid rgba(50, 47, 43, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background: var(--cream-50);
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition);
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(50, 47, 43, 0.3);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage-600);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.form-consent input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--sage-600);
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.9rem;
  color: var(--ink-700);
}

.form-consent a {
  color: var(--sage-700);
  text-decoration: underline;
}

.form-status {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: var(--sage-50);
  color: var(--sage-700);
  border: 1px solid var(--sage-200);
}

.form-status.is-error {
  display: block;
  background: #fbeceb;
  color: #96382f;
  border: 1px solid #f0cac6;
}

.field-error {
  color: #96382f;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  display: none;
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #c65b50;
}

.form-field.has-error .field-error {
  display: block;
}

/* --------------------------------------------------------------------- */
/* Footer                                                                 */
/* --------------------------------------------------------------------- */

.site-footer {
  background: var(--cream-100);
  color: var(--ink-900);
  padding-block: clamp(2.5rem, 2rem + 2vw, 3.5rem) 1.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(50, 47, 43, 0.1);
}

.footer-logo {
  height: 120px;
  width: auto;
}

@media (max-width: 780px) {
  .footer-logo {
    height: 88px;
  }
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--sage-700);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-500);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  justify-content: space-between;
}

.footer-bottom a {
  color: var(--ink-500);
  text-decoration: underline;
  text-decoration-color: var(--sage-300);
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--sage-700);
}

/* --------------------------------------------------------------------- */
/* Fade-in bij scroll                                                     */
/* --------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------- */
/* Stub-pagina's (privacy, klachten, voorwaarden)                         */
/* --------------------------------------------------------------------- */

.stub-page {
  padding-block: clamp(4rem, 3rem + 3vw, 7rem);
  min-height: 60vh;
}

.stub-page .container {
  max-width: 46rem;
}

.stub-page h1 {
  margin-bottom: 1.25rem;
}

.stub-page p {
  color: var(--ink-700);
  margin-bottom: 1rem;
}

.stub-page .lead {
  font-size: var(--fs-lead);
  margin-bottom: 2rem;
}

.stub-page section {
  margin-top: 2.5rem;
}

.stub-page section:first-of-type {
  margin-top: 0;
}

.stub-page h2 {
  font-size: var(--fs-h3);
  margin-bottom: 0.85rem;
}

.stub-page ul {
  margin: 0 0 1rem 1.25rem;
  color: var(--ink-700);
}

.stub-page li {
  margin-bottom: 0.4rem;
}

.stub-page .placeholder-tag {
  margin-bottom: 0.6rem;
}

/* --------------------------------------------------------------------- */
/* CV-pagina (Meer over Geeke)                                            */
/* --------------------------------------------------------------------- */

.cv-page {
  padding-top: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}

.cv-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: center;
}

.cv-intro-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-width: 0;
  aspect-ratio: 1000 / 853;
}

.cv-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-intro-text {
  min-width: 0;
}

.cv-intro-text h1 {
  font-size: var(--fs-h1);
  margin-bottom: 0.75rem;
}

.cv-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lead);
  color: var(--sage-700);
  margin-bottom: 1.25rem;
}

.cv-summary {
  color: var(--ink-700);
  font-size: var(--fs-lead);
  margin-bottom: 2rem;
}

.cv-linkedin-btn svg {
  width: 18px;
  height: 18px;
}

.cv-traits {
  padding-top: 0;
}

.cv-trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cv-trait-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
}

.cv-trait-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage-700);
  flex-shrink: 0;
}

.cv-experience {
  padding-top: 0;
}

.cv-timeline {
  border-top: 1px solid rgba(50, 47, 43, 0.09);
}

.cv-timeline-item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 0.5rem 2rem;
  padding-block: 1.85rem;
  border-bottom: 1px solid rgba(50, 47, 43, 0.09);
}

.cv-timeline-period {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sage-700);
  font-size: 0.95rem;
}

.cv-timeline-duration {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-500);
  margin-top: 0.2rem;
}

.cv-timeline-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.cv-timeline-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.cv-timeline-heading h3 {
  margin-bottom: 0;
}

.cv-timeline-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  border: 1px solid rgba(50, 47, 43, 0.08);
  flex-shrink: 0;
}

.cv-timeline-logo--wide {
  width: auto;
  max-width: 84px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  padding: 0.35rem 0.5rem;
}

.cv-timeline-meta {
  font-size: 0.9rem;
  color: var(--ink-500);
  margin-bottom: 0.6rem;
}

.cv-timeline-desc {
  font-size: 0.92rem;
  color: var(--ink-700);
}

.cv-timeline-subroles {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv-timeline-subrole {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.cv-timeline-subrole::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-600);
  z-index: 1;
}

.cv-timeline-subrole::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  bottom: -24px;
  width: 2px;
  background: var(--sage-200);
}

.cv-timeline-subrole:last-child::after {
  content: none;
}

.cv-timeline-subrole-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-900);
}

.cv-timeline-subrole-period {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin-top: 0.1rem;
}

@media (max-width: 640px) {
  .cv-timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.cv-certs {
  padding-top: 0;
}

.cv-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cv-cert-card {
  background: var(--white);
  border: 1px solid rgba(50, 47, 43, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
}

.cv-cert-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.cv-cert-meta {
  font-size: 0.82rem;
  color: var(--ink-500);
}

@media (max-width: 640px) {
  .cv-cert-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------- */
/* Responsief                                                             */
/* --------------------------------------------------------------------- */

@media (max-width: 1000px) {
  .hero-inner,
  .intro .container,
  .about .container,
  .cv-intro-grid,
  #contact .container {
    grid-template-columns: 1fr;
  }

  .cv-intro-photo {
    max-width: 26rem;
    margin-inline: auto;
  }

  .hero-media-wrap {
    order: -1;
    max-width: 20rem;
    margin-inline: auto;
    overflow: hidden;
  }

  .about-decor {
    display: none;
  }

  .werkwijze-card {
    padding: clamp(2rem, 1.6rem + 2vw, 3rem) 1.5rem;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }

  .practical-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .main-nav {
    position: fixed;
    top: var(--header-h, 72px);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h, 72px));
    height: calc(100dvh - var(--header-h, 72px));
    background: var(--cream-50);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2.5rem;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
    overflow-y: auto;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 0s;
  }

  .main-nav a:not(.btn) {
    padding: 1rem 0.25rem;
    border-bottom: 1px solid rgba(50, 47, 43, 0.08);
    font-size: 1.05rem;
    width: 100%;
  }

  .lang-toggle {
    margin-top: 1.5rem;
    align-self: flex-start;
  }

  .main-nav .btn {
    margin-top: 1.5rem;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .practical-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* --------------------------------------------------------------------- */
/* Eenvoudige header-nav (secundaire pagina's: CV, privacy, voorwaarden)  */
/* --------------------------------------------------------------------- */

.main-nav--simple {
  position: static;
  height: auto;
  padding: 0;
  margin: 0;
  background: none;
  overflow: visible;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 0.75rem clamp(1rem, 4vw, 2.25rem);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.main-nav--simple a:not(.btn) {
  width: auto;
  padding: 0.35rem 0;
  border-bottom: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* --------------------------------------------------------------------- */
/* Binnenkort online                                                     */
/* --------------------------------------------------------------------- */

.soon-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-200);
  padding: 2rem;
}

.soon-card {
  background: var(--sage-700);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  max-width: 40rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.soon-logo {
  height: auto;
  width: clamp(140px, 22vw + 100px, 260px);
  max-width: 70%;
  margin: 0 auto 2.5rem;
}

.soon-card .eyebrow {
  color: var(--sage-200);
}

.soon-card h1 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
  color: var(--cream-50);
}

.soon-lead {
  color: var(--sage-50);
  font-size: var(--fs-lead);
  margin-bottom: 2rem;
}

.soon-card .btn-primary {
  background: var(--cream-50);
  color: var(--sage-700);
}

.soon-card .btn-primary:hover {
  background: var(--white);
}
