/* ============================================
   Digitaal Op Leeftijd — Design tokens
   ============================================ */
:root{
  /* Color */
  --cream:        #FBF7F0;   /* page background — warm paper, easy on the eyes */
  --cream-deep:    #F3EDE1;   /* panel background */
  --ink:          #2A2822;   /* body text — warm near-black */
  --ink-soft:      #55524A;   /* secondary text */
  --teal:         #1F5C56;   /* primary — trust, calm */
  --teal-deep:     #163F3B;   /* hover / pressed */
  --teal-tint:     #DCEAE7;   /* light panels, badges */
  --gold:         #C98A2B;   /* accent — warmth, human touch */
  --gold-deep:     #A46F1F;
  --gold-tint:     #F5E7CC;
  --line:         #E4DCC9;   /* hairline borders */
  --white:        #FFFFFF;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Atkinson Hyperlegible", "Segoe UI", Arial, sans-serif;

  /* Layout */
  --max-w: 1120px;
  --radius: 14px;
  --radius-sm: 8px;
}

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

html{ scroll-behavior: smooth; }

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

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2{ font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3{ font-size: 1.35rem; }

p{ margin: 0 0 1.1em 0; }

a{ color: var(--teal); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover{ color: var(--teal-deep); }

a:focus-visible,
button:focus-visible,
.btn:focus-visible{
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--teal);
  background: var(--teal-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ============================================
   Header / Nav
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover{ color: var(--ink); }
.logo .dot{ color: var(--gold); }

.logo-mark{
  width: 34px; height: 34px; flex: 0 0 auto;
}

nav.main-nav{
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.main-nav a{
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
nav.main-nav a:hover{ background: var(--teal-tint); color: var(--teal-deep); }
nav.main-nav a[aria-current="page"]{ background: var(--teal); color: var(--white); }

.nav-toggle{
  display: none;
  background: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
}
.nav-toggle svg{ width: 22px; height: 22px; display: block; }

@media (max-width: 780px){
  nav.main-nav{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 18px;
    display: none;
    gap: 4px;
  }
  nav.main-nav.open{ display: flex; }
  nav.main-nav a{ padding: 12px 14px; }
  .nav-toggle{ display: inline-flex; align-items:center; justify-content:center; }
}

/* ============================================
   Buttons
   ============================================ */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{ background: var(--teal); color: var(--white); }
.btn-primary:hover{ background: var(--teal-deep); color: var(--white); }

.btn-gold{ background: var(--gold); color: var(--white); }
.btn-gold:hover{ background: var(--gold-deep); color: var(--white); }

.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--cream); }

.btn-row{ display:flex; flex-wrap: wrap; gap: 14px; align-items:center; }

/* ============================================
   Hero
   ============================================ */
.hero{
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
}

.hero h1{ margin-bottom: 0.4em; }
.hero .lede{ font-size: 1.2rem; color: var(--ink-soft); max-width: 46ch; }

.hero-art{ position: relative; }
.hero-art svg{ width: 100%; height: auto; }

/* ============================================
   Sections
   ============================================ */
section{ padding: 64px 0; }
.section-alt{ background: var(--cream-deep); }
.section-head{ max-width: 62ch; margin-bottom: 40px; }
.section-head p{ color: var(--ink-soft); font-size: 1.1rem; }

.grid{
  display: grid;
  gap: 24px;
}
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px){
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.card .icon{
  width: 46px; height: 46px;
  margin-bottom: 16px;
  color: var(--teal);
}

.card h3{ margin-bottom: 0.4em; }
.card p{ color: var(--ink-soft); margin-bottom: 0; font-size: 1.02rem; }

/* Step list — genuine sequence, so numbering is warranted */
.steps{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps li{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child{ border-bottom: 1px solid var(--line); }
.step-num{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.steps h3{ margin-bottom: 4px; }
.steps p{ color: var(--ink-soft); margin-bottom: 0; }

/* Quote / testimonial */
.quote{
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.quote p{
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 14px;
}
.quote cite{ font-style: normal; color: var(--teal-tint); font-weight: 700; }

/* Pricing */
.price-card{
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 36px;
}
.price-line{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.price-line:last-child{ border-bottom: none; }
.price-amount{ font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--teal-deep); }
.price-label{ font-weight: 700; }
.price-note{ color: var(--ink-soft); font-size: 0.98rem; margin-top: 4px; }

/* CTA band */
.cta-band{
  background: var(--gold-tint);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}
.cta-band h2{ margin-bottom: 0.3em; }
.cta-band p{ color: var(--ink-soft); font-size: 1.1rem; max-width: 56ch; margin-left:auto; margin-right:auto; }

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-item{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-item .icon{ width: 30px; height: 30px; color: var(--teal); flex: 0 0 auto; margin-top: 4px; }
.contact-item h3{ margin-bottom: 2px; font-size: 1.1rem; }
.contact-item a, .contact-item span{ color: var(--ink-soft); }

form.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.form-field{ display: flex; flex-direction: column; gap: 6px; }
.form-field label{ font-weight: 700; }
.form-field input, .form-field textarea{
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus{
  outline: none;
  border-color: var(--teal);
}
.form-note{ font-size: 0.92rem; color: var(--ink-soft); }

/* Footer */
footer.site-footer{
  background: var(--ink);
  color: var(--cream-deep);
  padding: 48px 0 28px;
  margin-top: 40px;
}
footer.site-footer a{ color: var(--cream-deep); }
footer.site-footer a:hover{ color: var(--gold); }
.footer-inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(251,247,240,0.15);
}
.footer-brand{ font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--cream); }
.footer-tag{ color: #C7C2B4; max-width: 34ch; margin-top: 8px; }
.footer-cols{ display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4{ font-size: 0.95rem; letter-spacing: 0.04em; color: #C7C2B4; margin: 0 0 12px 0; }
.footer-col a{ display: block; text-decoration: none; margin-bottom: 8px; font-weight: 600; }
.footer-bottom{ padding-top: 20px; font-size: 0.9rem; color: #9A9584; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

/* Page hero (non-home pages) */
.page-hero{ padding: 48px 0 20px; }
.page-hero p.lede{ color: var(--ink-soft); font-size: 1.15rem; max-width: 60ch; }

/* Org logos row */
.org-row{
  display:flex; flex-wrap:wrap; gap: 14px; margin-top: 10px;
}
.org-chip{
  background: var(--teal-tint); color: var(--teal-deep);
  border-radius: 999px; padding: 8px 16px; font-weight:700; font-size:0.95rem;
}

/* Utility */
.mt-0{ margin-top:0; }
.center{ text-align:center; }
.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;
}
