/*
Theme Name: YURUMU
Theme URI: https://yurumu.nl
Author: Alan van Ballegooijen
Description: Custom thema voor YURUMU, Praktijk voor Mannen. Regie coaching voor de man die alles heeft opgebouwd en zichzelf onderweg kwijtraakte.
Version: 1.2.3
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: yurumu
*/

/* Fonts: Poppins lokaal gehost (geen verzoek aan Google Fonts) */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("assets/fonts/poppins-800.woff2") format("woff2"); }

/* ── Reset & base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --mistwit:    #F5F6F4;
  --nachtblauw: #0B1F2A;
  --leisteen:   #3A4A53;
  --zandgrijs:  #D8D2C7;
  --koper:      #B08D57;
  --wit:        #FFFFFF;
  --font-h:     'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-b:     'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max:        1100px;
  --radius:     4px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--mistwit);
  color: var(--nachtblauw);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 600; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout helpers ─────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section--dark { background: var(--nachtblauw); color: var(--mistwit); }
.section--mid  { background: var(--leisteen);   color: var(--mistwit); }
.section--sand { background: #EEEAE3; }

/* ── Navigation ─────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,246,244,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--zandgrijs);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-h); font-weight: 700; font-size: 1.35rem;
  letter-spacing: 0.08em; color: var(--nachtblauw);
  cursor: pointer;
}
.nav-logo span { color: var(--koper); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--font-h); font-weight: 500; font-size: 0.88rem;
  letter-spacing: 0.04em; color: var(--leisteen);
  cursor: pointer; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--nachtblauw); }
.nav-links a.active { border-bottom: 2px solid var(--koper); padding-bottom: 2px; }
.nav-cta {
  background: var(--nachtblauw); color: var(--mistwit) !important;
  padding: 10px 22px; border-radius: var(--radius);
  font-size: 0.85rem !important; letter-spacing: 0.05em;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--leisteen) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--nachtblauw); border-radius: 2px; transition: .3s; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font-h); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.05em; border-radius: var(--radius);
  padding: 14px 30px; cursor: pointer; transition: all .2s; border: none;
}
.btn-primary { background: var(--nachtblauw); color: var(--mistwit); }
.btn-primary:hover { background: var(--leisteen); }
.btn-outline {
  background: transparent; color: var(--nachtblauw);
  border: 1.5px solid var(--nachtblauw);
}
.btn-outline:hover { background: var(--nachtblauw); color: var(--mistwit); }
.btn-koper { background: var(--koper); color: var(--wit); }
.btn-koper:hover { background: #9a7a49; }
.btn-light { background: var(--mistwit); color: var(--nachtblauw); }
.btn-light:hover { background: var(--zandgrijs); }

/* ── Koper accent line ───────────────────────────────── */
.accent-line {
  display: block; width: 40px; height: 2px;
  background: var(--koper); margin-bottom: 18px;
}
.accent-line--center { margin: 0 auto 18px; }

/* ── Label / overline ────────────────────────────────── */
.overline {
  font-family: var(--font-h); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--koper); margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  background: var(--nachtblauw); color: var(--mistwit);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(176,141,87,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-label {
  font-family: var(--font-h); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--koper);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1;
  color: var(--mistwit); margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--koper); }
.hero-subpayoff {
  font-size: 1.1rem; color: rgba(245,246,244,.7);
  margin-bottom: 14px; font-style: italic;
}
.hero-body {
  font-size: 1.05rem; color: rgba(245,246,244,.85);
  margin-bottom: 40px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(176,141,87,.3);
  border-radius: 8px; padding: 40px 36px;
  backdrop-filter: blur(6px); max-width: 340px;
}
.hero-card-quote {
  font-family: var(--font-h); font-size: 1.35rem; font-weight: 600;
  color: var(--mistwit); line-height: 1.4; margin-bottom: 24px;
}
.hero-card-quote span { color: var(--koper); }
.hero-card-divider { width: 36px; height: 1px; background: var(--koper); margin-bottom: 20px; }
.hero-card-sub { font-size: 0.9rem; color: rgba(245,246,244,.6); line-height: 1.65; }

/* Intro strip */
.intro-strip {
  background: var(--mistwit); padding: 70px 0;
  border-bottom: 1px solid var(--zandgrijs);
}
.intro-strip .container {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 60px;
}
.intro-item { text-align: center; }
.intro-icon {
  width: 44px; height: 44px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.intro-icon svg { width: 36px; height: 36px; stroke: var(--koper); fill: none; stroke-width: 1.5; }
.intro-item h3 {
  font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--nachtblauw);
}
.intro-item p { font-size: 0.9rem; color: var(--leisteen); line-height: 1.65; }

/* Problem block */
.problem { background: #EEEAE3; padding: 100px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-hooks { display: flex; flex-direction: column; gap: 16px; }
.hook {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 24px; background: var(--mistwit);
  border-radius: var(--radius); border-left: 3px solid var(--koper);
}
.hook-text { font-size: 0.95rem; color: var(--leisteen); font-style: italic; }

/* Promise block */
.promise { background: var(--nachtblauw); color: var(--mistwit); padding: 100px 0; }
.promise-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.promise h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--mistwit); margin-bottom: 24px; }
.promise p { font-size: 1.05rem; color: rgba(245,246,244,.8); line-height: 1.85; margin-bottom: 32px; }

/* Diensten preview */
.diensten-preview { padding: 100px 0; background: var(--mistwit); }
.diensten-preview h2 { font-size: 2rem; margin-bottom: 14px; }
.section-intro { font-size: 1.05rem; color: var(--leisteen); max-width: 560px; margin-bottom: 56px; }
.dienst-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.dienst-card {
  background: var(--mistwit); border: 1px solid var(--zandgrijs);
  border-radius: var(--radius); padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.dienst-card:hover { box-shadow: 0 8px 32px rgba(11,31,42,.09); transform: translateY(-3px); }
.dienst-card--highlight {
  background: var(--nachtblauw); color: var(--mistwit);
  border-color: var(--nachtblauw);
}
.dienst-badge {
  display: inline-block; font-family: var(--font-h); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 16px;
}
.dienst-badge--gratis { background: rgba(176,141,87,.15); color: var(--koper); }
.dienst-badge--featured { background: var(--koper); color: var(--wit); }
.dienst-badge--premium { background: rgba(245,246,244,.1); color: rgba(245,246,244,.7); }
.dienst-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.dienst-card--highlight h3 { color: var(--mistwit); }
.dienst-card p { font-size: 0.88rem; color: var(--leisteen); line-height: 1.7; }
.dienst-card--highlight p { color: rgba(245,246,244,.7); }
.dienst-price {
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 700;
  color: var(--koper); margin-top: 20px;
}
.dienst-card--highlight .dienst-price { color: var(--koper); }

/* Quote band */
.quote-band {
  background: var(--leisteen); padding: 72px 0; text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600; color: var(--mistwit); max-width: 700px;
  margin: 0 auto 16px; line-height: 1.4;
}
.quote-band blockquote span { color: var(--koper); }
.quote-band cite {
  font-size: 0.85rem; color: rgba(245,246,244,.5);
  font-style: normal; letter-spacing: 0.08em;
}

/* Home CTA */
.home-cta {
  background: var(--mistwit); padding: 100px 0; text-align: center;
}
.home-cta h2 { font-size: 2rem; margin-bottom: 16px; }
.home-cta p { color: var(--leisteen); max-width: 500px; margin: 0 auto 36px; }
.home-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   DIENSTEN PAGE
═══════════════════════════════════════════════════════ */
.page-hero {
  background: var(--nachtblauw); color: var(--mistwit);
  padding: 100px 0 80px;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--mistwit); margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; color: rgba(245,246,244,.75); max-width: 540px; }

.productladder { padding: 100px 0; }
.ladder-grid { display: flex; flex-direction: column; gap: 0; }
.ladder-item {
  display: grid; grid-template-columns: 280px 1fr auto;
  align-items: center; gap: 40px;
  padding: 36px 40px; border-bottom: 1px solid var(--zandgrijs);
  transition: background .2s;
}
.ladder-item:first-child { border-top: 1px solid var(--zandgrijs); }
.ladder-item:hover { background: rgba(11,31,42,.03); }
.ladder-item--featured { background: var(--nachtblauw); color: var(--mistwit); border: none; border-radius: var(--radius); margin: 12px 0; }
.ladder-item--featured:hover { background: var(--leisteen); }
.ladder-name { font-family: var(--font-h); font-weight: 600; font-size: 1.1rem; }
.ladder-item--featured .ladder-name { color: var(--mistwit); }
.ladder-sub {
  font-family: var(--font-h); font-weight: 400; font-size: 0.8rem;
  color: var(--koper); display: block; margin-top: 2px;
}
.ladder-desc { font-size: 0.93rem; color: var(--leisteen); line-height: 1.7; }
.ladder-item--featured .ladder-desc { color: rgba(245,246,244,.7); }
.ladder-right { text-align: right; min-width: 140px; }
.ladder-price {
  font-family: var(--font-h); font-weight: 700; font-size: 1.25rem;
  color: var(--nachtblauw); display: block; margin-bottom: 10px;
}
.ladder-item--featured .ladder-price { color: var(--koper); }
.ladder-price--gratis { color: var(--koper) !important; }

.doorstroom {
  background: #EEEAE3; padding: 80px 0;
}
.doorstroom-inner { max-width: 700px; margin: 0 auto; }
.doorstroom h2 { font-size: 1.8rem; margin-bottom: 16px; }
.doorstroom p { color: var(--leisteen); line-height: 1.8; margin-bottom: 20px; }

.dashboard-block {
  background: var(--nachtblauw); color: var(--mistwit); padding: 100px 0;
}
.dashboard-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.dashboard-text h2 { font-size: 2rem; color: var(--mistwit); margin-bottom: 16px; }
.dashboard-text p { color: rgba(245,246,244,.75); line-height: 1.8; margin-bottom: 28px; }
.dashboard-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dashboard-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(176,141,87,.2);
  border-radius: var(--radius); padding: 18px 20px;
}
.dashboard-item h4 { font-size: 0.88rem; color: var(--koper); margin-bottom: 4px; }
.dashboard-item p { font-size: 0.82rem; color: rgba(245,246,244,.6); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   OVER MIJ PAGE
═══════════════════════════════════════════════════════ */
.overmij-hero {
  background: var(--nachtblauw); padding: 100px 0;
}
.overmij-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.overmij-photo {
  background: var(--leisteen); border-radius: var(--radius);
  aspect-ratio: 3/4; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.photo-placeholder svg { width: 60px; height: 60px; stroke: rgba(245,246,244,.3); fill: none; stroke-width: 1; }
.photo-placeholder span { font-size: 0.8rem; color: rgba(245,246,244,.3); font-style: italic; }
.overmij-text h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--mistwit); margin-bottom: 10px; }
.overmij-text .tagline { font-size: 1.05rem; color: var(--koper); margin-bottom: 24px; font-family: var(--font-h); }
.overmij-text p { font-size: 1rem; color: rgba(245,246,244,.8); line-height: 1.85; margin-bottom: 16px; }

.overmij-body { padding: 100px 0; background: var(--mistwit); }
.overmij-body-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.overmij-body h2 { font-size: 1.7rem; margin-bottom: 20px; }
.overmij-body p { color: var(--leisteen); line-height: 1.8; margin-bottom: 16px; }

.werkwijze { background: #EEEAE3; padding: 100px 0; }
.werkwijze h2 { font-size: 1.8rem; margin-bottom: 14px; }
.werkwijze-intro { font-size: 1rem; color: var(--leisteen); max-width: 560px; margin-bottom: 56px; }
.stappen { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stap {
  background: var(--mistwit); padding: 32px 24px;
  border-radius: var(--radius); position: relative;
}
.stap-nr {
  font-family: var(--font-h); font-size: 2.5rem; font-weight: 700;
  color: rgba(176,141,87,.2); margin-bottom: 12px; line-height: 1;
}
.stap h3 { font-size: 1rem; margin-bottom: 8px; }
.stap p { font-size: 0.88rem; color: var(--leisteen); line-height: 1.65; }

.waarden { background: var(--nachtblauw); color: var(--mistwit); padding: 80px 0; }
.waarden h2 { font-size: 1.8rem; color: var(--mistwit); margin-bottom: 40px; }
.waarden-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.waarde {
  background: rgba(255,255,255,.05); border: 1px solid rgba(176,141,87,.2);
  border-radius: var(--radius); padding: 24px 20px;
}
.waarde-koper { display: block; width: 24px; height: 2px; background: var(--koper); margin-bottom: 14px; }
.waarde h3 { font-size: 0.95rem; color: var(--mistwit); margin-bottom: 6px; }
.waarde p { font-size: 0.82rem; color: rgba(245,246,244,.6); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-hero { background: var(--nachtblauw); padding: 80px 0 60px; }
.contact-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--mistwit); margin-bottom: 10px; }
.contact-hero p { font-size: 1.05rem; color: rgba(245,246,244,.7); max-width: 480px; }

.contact-body { padding: 100px 0; background: var(--mistwit); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h2 { font-size: 1.5rem; margin-bottom: 16px; }
.contact-info p { color: var(--leisteen); line-height: 1.8; margin-bottom: 28px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.92rem; color: var(--leisteen);
}
.contact-link svg { width: 20px; height: 20px; stroke: var(--koper); fill: none; stroke-width: 1.5; flex-shrink: 0; }

.scan-card {
  background: var(--nachtblauw); color: var(--mistwit);
  border-radius: var(--radius); padding: 32px 28px; margin-top: 32px;
}
.scan-card h3 { font-size: 1rem; color: var(--koper); margin-bottom: 8px; }
.scan-card p { font-size: 0.9rem; color: rgba(245,246,244,.7); line-height: 1.7; margin-bottom: 20px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-h); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--nachtblauw);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-b); font-size: 0.95rem; color: var(--nachtblauw);
  background: var(--mistwit); border: 1.5px solid var(--zandgrijs);
  border-radius: var(--radius); padding: 12px 16px;
  outline: none; transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--koper); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--zandgrijs); font-style: italic; }

/* ═══════════════════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════════════════ */
.blog-hero { background: var(--nachtblauw); padding: 80px 0 60px; }
.blog-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--mistwit); margin-bottom: 10px; }
.blog-hero p { color: rgba(245,246,244,.7); max-width: 500px; font-size: 1.05rem; }

.blog-body { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.blog-card {
  background: var(--mistwit); border: 1px solid var(--zandgrijs);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .25s, transform .25s; cursor: pointer;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(11,31,42,.1); transform: translateY(-4px); }
.blog-card-img {
  height: 200px; background: var(--nachtblauw);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-img-grad {
  position: absolute; inset: 0;
}
.blog-img-grad--1 { background: linear-gradient(135deg, #0B1F2A 0%, #3A4A53 100%); }
.blog-img-grad--2 { background: linear-gradient(135deg, #3A4A53 0%, #B08D57 100%); }
.blog-img-grad--3 { background: linear-gradient(135deg, #0B1F2A 0%, #B08D57 80%); }
.blog-img-grad--4 { background: linear-gradient(135deg, #3A4A53 0%, #0B1F2A 100%); }
.blog-img-grad--5 { background: linear-gradient(135deg, #B08D57 0%, #3A4A53 100%); }
.blog-img-grad--6 { background: linear-gradient(135deg, #0B1F2A 30%, #3A4A53 100%); }
.blog-img-text {
  position: relative; z-index: 1;
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  color: rgba(245,246,244,.85); padding: 24px; text-align: center; line-height: 1.4;
}
.blog-card-body { padding: 24px 24px 28px; }
.blog-cat {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--koper);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--leisteen); line-height: 1.65; margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--zandgrijs); }
.blog-featured {
  background: var(--nachtblauw); color: var(--mistwit);
  border-radius: var(--radius); overflow: hidden;
  grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr;
  margin-bottom: 0;
}
.blog-featured .blog-card-img { height: 100%; min-height: 280px; }
.blog-featured .blog-card-body { padding: 40px; }
.blog-featured .blog-cat { color: var(--koper); }
.blog-featured h3 { font-size: 1.4rem; color: var(--mistwit); margin-bottom: 12px; }
.blog-featured p { color: rgba(245,246,244,.7); margin-bottom: 24px; }
.blog-featured .blog-meta { color: rgba(245,246,244,.4); }

.blog-cta {
  background: #EEEAE3; padding: 80px 0; text-align: center;
}
.blog-cta h2 { font-size: 1.7rem; margin-bottom: 12px; }
.blog-cta p { color: var(--leisteen); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--nachtblauw); color: rgba(245,246,244,.5);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-h); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mistwit);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(245,246,244,.5); cursor: pointer; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--koper); }
.footer-bottom {
  border-top: 1px solid rgba(245,246,244,.1); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--koper); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .intro-strip .container { grid-template-columns: 1fr; gap: 36px; }
  .problem-grid { grid-template-columns: 1fr; }
  .dienst-cards { grid-template-columns: 1fr; }
  .ladder-item { grid-template-columns: 1fr; gap: 12px; }
  .ladder-right { text-align: left; }
  .overmij-hero-inner { grid-template-columns: 1fr; }
  .overmij-photo { display: none; }
  .overmij-body-grid { grid-template-columns: 1fr; }
  .stappen { grid-template-columns: 1fr; }
  .waarden-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--mistwit); border-bottom: 1px solid var(--zandgrijs);
    padding: 16px 32px 24px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--zandgrijs); font-size: 1rem; }
  .nav-links.open .nav-cta { margin-top: 8px; text-align: center; border: none; background: var(--nachtblauw); color: var(--mistwit) !important; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 80px 0; }
  .page-hero { padding: 60px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .waarden-grid { grid-template-columns: 1fr; }
}

/* ── WordPress aanvullingen ───────────────────────────── */
.site-main { display: block; }
.nav-logo a { color: inherit; }
.nav-links ul { list-style: none; display: contents; }
.nav-links a.is-current { color: var(--nachtblauw); border-bottom: 2px solid var(--koper); padding-bottom: 2px; }
.nav-links a.nav-cta.is-current { border-bottom: 0; padding-bottom: 10px; }
.overmij-photo img { width: 100%; height: 100%; object-fit: cover; }
.form-group--hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--leisteen); line-height: 1.5; }
.form-consent input { width: auto; margin-top: 4px; }
.form-consent a { color: var(--koper); text-decoration: underline; }
.form-alert { padding: 14px 18px; border-radius: var(--radius); font-size: .92rem; margin-bottom: 20px; }
.form-alert--ok { background: rgba(176,141,87,.15); border-left: 3px solid var(--koper); }
.form-alert--err { background: #f6e3e0; border-left: 3px solid #b3402f; color: #6b1f14; }
.form-note { color: var(--leisteen); }
.blog-card a.blog-card-link { display: block; color: inherit; }
/* Hele kaart klikbaar: de titellink wordt over de kaart uitgerekt. */
.blog-card { position: relative; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.blog-card h3 a:focus-visible::after { outline: 2px solid var(--koper); outline-offset: -2px; }
.blog-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-meta { color: var(--leisteen); opacity: .7; }
.blog-featured .blog-meta { color: rgba(245,246,244,.5); opacity: 1; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input[type=email] { flex: 1; min-width: 220px; font-family: var(--font-b); font-size: .95rem; color: var(--nachtblauw); background: var(--mistwit); border: 1.5px solid var(--zandgrijs); border-radius: var(--radius); padding: 12px 16px; outline: none; }
.newsletter-form input[type=email]:focus { border-color: var(--koper); }
.newsletter-form .form-alert { flex-basis: 100%; margin: 0; text-align: left; }
.article { padding: 80px 0 100px; }
.article-inner { max-width: 720px; margin: 0 auto; }
.article h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.article .entry-meta { font-size: .85rem; color: var(--leisteen); margin-bottom: 36px; }
.article .entry-content p, .article .entry-content ul, .article .entry-content ol { margin-bottom: 20px; color: var(--leisteen); line-height: 1.85; }
.article .entry-content h2, .article .entry-content h3 { margin: 36px 0 14px; }
.article .entry-content a { color: var(--koper); text-decoration: underline; }
.article .entry-content img { height: auto; border-radius: var(--radius); }
.pagination { display: flex; gap: 12px; justify-content: center; margin-top: 48px; font-family: var(--font-h); font-size: .9rem; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--zandgrijs); border-radius: var(--radius); }
.pagination .current { background: var(--nachtblauw); color: var(--mistwit); border-color: var(--nachtblauw); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 18px; font-size: .78rem; }
.footer-legal a { color: rgba(245,246,244,.5); }
.footer-legal a:hover { color: var(--koper); }
.footer-bottom { flex-wrap: wrap; gap: 8px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: var(--wit); padding: 8px 14px; z-index: 200; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Cookiebanner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; background: var(--nachtblauw); color: var(--mistwit); border: 1px solid rgba(176,141,87,.4); border-radius: 8px; box-shadow: 0 12px 40px rgba(11,31,42,.35); }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { max-width: var(--max); margin: 0 auto; padding: 20px 24px; display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie-banner p { font-size: .88rem; line-height: 1.6; max-width: 640px; }
.cookie-banner a { color: var(--koper); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { font-size: .82rem; padding: 11px 20px; }
.btn-ghost { background: transparent; color: var(--mistwit); border: 1.5px solid rgba(245,246,244,.35); }
.btn-ghost:hover { border-color: var(--koper); color: var(--koper); }
.cookie-banner .btn-primary { background: var(--koper); color: var(--wit); }
.cookie-banner .btn-primary:hover { background: #9a7a49; }
@media (max-width: 900px) {
  .nav-links.open ul { display: flex; flex-direction: column; }
  .nav-links.open a.is-current { border-bottom: 1px solid var(--zandgrijs); padding-bottom: 12px; }
}
button.hamburger { background: none; border: 0; }
.article .entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: .9rem; }
.article .entry-content th, .article .entry-content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--zandgrijs); vertical-align: top; }
.article .entry-content th { font-family: var(--font-h); font-weight: 600; }
.article .entry-content { overflow-wrap: anywhere; }

/* Logo: boog "net losgelaten" */
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo__text span { color: var(--koper); }
.logo-mark { flex-shrink: 0; }
.logo-mark__bow { stroke: var(--nachtblauw); }
.logo-mark__string, .logo-mark__trail { stroke: #8A979E; }
.logo-mark__arrow { stroke: var(--koper); }
.nav-logo--footer { margin-bottom: 14px; color: var(--mistwit); }
.nav-logo--footer .logo-mark__bow { stroke: var(--mistwit); }
.nav-logo--footer .logo-mark__string, .nav-logo--footer .logo-mark__trail { stroke: #9AA8AF; }
.custom-logo-link img { max-height: 42px; width: auto; }
.nav-logo .nav-logo__text { color: inherit; }

/* Loslaten-motief: van grijs (oud gedrag) naar koper (kiezen) */
.release-line { display: block; width: 200px; max-width: 100%; height: auto; }
.release-line .rl-trail { stroke: #8A979E; }
.release-line .rl-arrow { stroke: var(--koper); stroke-dasharray: 200; stroke-dashoffset: 0; }
.release-line--center { margin: 0 auto 22px; }
.release-line--light .rl-trail { stroke: #9AA8AF; }
@media (prefers-reduced-motion: no-preference) {
  .release-line .rl-trail { animation: rl-fade 1.2s ease-out both; }
  .release-line .rl-arrow { animation: rl-draw 1.4s ease-out .35s both; }
}
@keyframes rl-draw { from { stroke-dashoffset: 200; } to { stroke-dashoffset: 0; } }
@keyframes rl-fade { from { opacity: 0; } to { opacity: 1; } }

.hero-card .release-line { margin-top: 24px; }

/* Sectie: van wat je gewend bent naar wat bij je past */
.shift { background: var(--mistwit); padding: 100px 0; }
.shift-head { max-width: 640px; margin-bottom: 56px; }
.shift-head h2 { font-size: 2rem; margin-bottom: 14px; }
.shift-head p { color: var(--leisteen); }
.shift-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }
.shift-col { border-radius: var(--radius); padding: 36px 32px; }
.shift-col h3 { font-size: 1.05rem; margin-bottom: 20px; }
.shift-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.shift-col li { font-size: .98rem; line-height: 1.5; padding-left: 26px; position: relative; }
.shift-col--from { background: #EEEAE3; color: var(--leisteen); }
.shift-col--from h3 { color: var(--leisteen); }
.shift-col--from li::before { content: ''; position: absolute; left: 0; top: .72em; width: 14px; height: 2px; background: #8A979E; }
.shift-col--to { background: var(--nachtblauw); color: var(--mistwit); }
.shift-col--to h3 { color: var(--koper); }
.shift-col--to li::before { content: ''; position: absolute; left: 0; top: .72em; width: 14px; height: 2px; background: var(--koper); }
.shift-arrow { width: 72px; }
.shift-arrow .release-line { width: 72px; }
.shift-note { max-width: 640px; margin: 48px auto 0; text-align: center; color: var(--leisteen); line-height: 1.8; }

/* Route: van bewustzijn naar keuze */
.route { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; margin: 44px 0 8px; }
.route-box { background: var(--mistwit); border: 1px solid var(--zandgrijs); border-radius: var(--radius); padding: 22px 24px; }
.route-box h4 { font-size: .98rem; margin-bottom: 4px; }
.route-box p { font-size: .85rem; color: var(--leisteen); line-height: 1.55; }
.route-box--start { border-left: 3px solid #8A979E; }
.route-choices { display: flex; flex-direction: column; gap: 14px; }
.route-choices .route-box { border-left: 3px solid var(--koper); }
.route .release-line { width: 64px; }
.doorstroom-inner--wide { max-width: 860px; }

.ladder-label { font-family: var(--font-h); font-weight: 600; font-size: .95rem; color: var(--leisteen); display: block; margin-bottom: 10px; }

/* Werkwijze: stappen kleuren van grijs naar koper */
.stap:nth-child(1) .stap-nr { color: rgba(138,151,158,.45); }
.stap:nth-child(2) .stap-nr { color: rgba(138,151,158,.6); }
.stap:nth-child(3) .stap-nr { color: rgba(176,141,87,.45); }
.stap:nth-child(4) .stap-nr { color: rgba(176,141,87,.8); }

@media (max-width: 900px) {
  .shift-grid, .route { grid-template-columns: 1fr; }
  .shift-arrow, .route .release-line { transform: rotate(90deg); width: 48px; margin: 0 auto; }
  .shift-arrow .release-line { width: 48px; }
}

/* Groepsvorm: delen, leren, gesprek */
.groep-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.groep-points .stap p { font-size: .92rem; }
@media (max-width: 900px) { .groep-points { grid-template-columns: 1fr; } }
