:root{
  --bg: #F8F2E7;
  --paper: #FFFFFF;
  --ink: #211D16;
  --muted: #6B6558;
  --forest: #2F3D2A;
  --forest-light: #4B6146;
  --forest-pale: #E7ECE2;
  --amber: #C98A3E;
  --amber-dark: #A66E2C;
  --line: #E4DBC8;
  --radius: 14px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Bricolage Grotesque', sans-serif;
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:'Fraunces', serif;
  font-weight:600;
  letter-spacing:-0.01em;
  margin:0;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
:focus-visible{outline:3px solid var(--amber); outline-offset:3px;}

.wrap{max-width:1250px;margin:0 auto;padding:0 28px;}

/* ---------- NAV ---------- */
header.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(248,242,231,0.88);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 28px;max-width:1250px;margin:0 auto;
}
.brand{
  display:flex;align-items:center;gap:10px;
  font-family:'Fraunces',serif;font-weight:600;font-size:19px;
}
.brand-mark{
  width:52px;height:52px;
  object-fit:contain;
  flex-shrink:0;
}
.nav-links{display:flex;gap:28px;font-size:14px;font-weight:500;}
.nav-links a{opacity:0.75;transition:opacity .2s;}
.nav-links a:hover{opacity:1;}
.nav-cta{
  background:var(--forest);color:#fff;
  padding:10px 18px;border-radius:999px;
  font-size:14px;font-weight:600;
  white-space:nowrap;
  transition:background-color .2s ease, transform .2s ease;
}
.nav-cta:hover{background:var(--forest-light);transform:translateY(-1px);}
@media(max-width:720px){ .nav-links{display:none;} }

/* ---------- HERO ---------- */
.hero{
  padding:150px 0;
  position:relative;
  overflow:hidden;
  background-color:#F8F2E6;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
}
.hero .hero-grid{align-items:center;grid-template-columns:0.85fr 1.15fr;}
.hero-img-flat{
  width:100%;
  display:block;
}
.hero-video-wrap{position:relative;}
.hero h1{
  font-size:clamp(34px,4.4vw,52px);
  line-height:1.08;
  margin-bottom:22px;
}
.hero p.lede{
  font-size:18px;color:var(--muted);max-width:480px;margin-bottom:28px;
}
.intro-chip{
  display:inline-flex;align-items:center;gap:12px;
  background:var(--paper);border:1px solid var(--line);
  padding:10px 18px 10px 10px;border-radius:999px;
  font-size:14px;box-shadow:0 2px 10px rgba(33,29,22,0.04);
  margin-bottom:20px;
}
.intro-chip .dot{
  width:48px;height:48px;border-radius:50%;
  background:var(--forest-pale);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  overflow:hidden;
  flex-shrink:0;
}
.intro-chip .dot img{
  width:100%;height:100%;object-fit:cover;
}
.hero-photo{
  position:relative;
  aspect-ratio:4/5;
  border-radius:20px;
  background:
    radial-gradient(circle at 75% 20%, rgba(201,138,62,0.35), transparent 45%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-light) 55%, #3a4a34 100%);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.85);
  text-align:center;padding:32px;
  border:1px solid rgba(0,0,0,0.05);
  overflow:hidden;
}
.hero-photo span{
  position:relative;z-index:1;font-family:'IBM Plex Mono',monospace;
  font-size:13px;line-height:1.7;letter-spacing:0.02em;
}
@media(max-width:860px){
  .hero-grid{grid-template-columns:1fr;gap:36px;}
}

/* ---------- GREEN BAND (signature) ---------- */
.green-band{
  width:100%;line-height:0;
}
.green-band svg{
  display:block;width:100%;height:110px;
}
.green-band path{fill:var(--forest);}

/* ---------- SECTION shared ---------- */
section{padding:64px 0;}
.section-head{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:24px;margin-bottom:36px;flex-wrap:wrap;
}
.section-head h2{font-size:clamp(26px,3vw,34px);}
.btn-outline{
  border:1.5px solid var(--forest);
  padding:10px 20px;border-radius:999px;
  font-size:14px;font-weight:600;white-space:nowrap;
  transition:background-color .2s ease, transform .2s ease;
}
.btn-outline:hover{background:var(--forest-pale);transform:translateY(-1px);}

/* ---------- WAT IS GHL ---------- */
.ghl-intro{max-width:600px;margin-bottom:32px;}
.ghl-intro h2{margin-bottom:16px;}
.ghl-intro p{color:var(--muted);font-size:16px;}

.replaces-panel{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.replaces-grid{
  display:grid;grid-template-columns:1fr 1fr;column-gap:40px;
  padding:32px 40px 8px;
}
.replaces-row{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:15px 0;border-bottom:1px solid var(--line);
}
.replaces-row.last-row{border-bottom:none;}
.rf-icon{
  width:36px;height:36px;border-radius:10px;flex-shrink:0;
  background:var(--forest-pale);color:var(--forest);
  display:flex;align-items:center;justify-content:center;
}
.rf-icon svg{width:18px;height:18px;}
.rf-main{flex:1;}
.rf-name{font-weight:600;font-size:14.5px;margin-bottom:2px;}
.rf-tools{font-size:12.5px;color:var(--muted);}
.rf-price{
  font-family:'IBM Plex Mono',monospace;font-size:13px;color:var(--muted);
  white-space:nowrap;text-decoration:line-through;text-decoration-color:var(--line);
}
.replaces-more{
  grid-column:1 / -1;
  border-top:1px solid var(--line);
  padding:20px 0 24px;
  font-size:13.5px;color:var(--muted);font-style:italic;text-align:center;
}
.replaces-total{
  background:var(--forest);color:#fff;
  display:flex;align-items:center;justify-content:center;gap:28px;
  padding:28px 40px;margin-top:0;
}
.rt-block{display:flex;flex-direction:column;align-items:center;gap:6px;}
.rt-label{
  font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:0.08em;
  text-transform:uppercase;color:#D9DFD2;
}
.rt-old{font-family:'Fraunces',serif;font-size:21px;font-weight:600;color:#D9DFD2;opacity:0.75;text-decoration:line-through;}
.rt-new{font-family:'Fraunces',serif;font-size:26px;font-weight:600;color:var(--amber);}
.rt-arrow{font-size:18px;color:#D9DFD2;}
@media(max-width:720px){
  .replaces-grid{grid-template-columns:1fr;padding:24px 24px 4px;}
  .replaces-row.last-row{border-bottom:1px solid var(--line);}
  .replaces-row.last-row:last-of-type{border-bottom:none;}
  .replaces-total{flex-direction:column;gap:16px;padding:28px 24px;}
}

/* ---------- VIDEOS ---------- */
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.video-card{
  display:block;
  background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;
}
.video-thumb{
  aspect-ratio:16/9;background:
    linear-gradient(135deg, var(--forest) 0%, #3f4f38 100%);
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.video-thumb .play{
  width:46px;height:46px;border-radius:50%;
  background:rgba(255,255,255,0.92);color:var(--forest);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
}
.video-meta{padding:16px 18px;}
.video-meta .t{font-weight:600;font-size:15px;margin-bottom:4px;}
.video-meta .l{font-size:13px;color:var(--forest-light);font-weight:600;}
@media(max-width:900px){ .video-grid{grid-template-columns:1fr;} }

/* ---------- PRICING ---------- */
.price-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:stretch;
}
.price-card{
  background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius);padding:30px 26px;
  display:flex;flex-direction:column;
  position:relative;
}
.price-card.highlight{
  border-color:var(--amber);
  box-shadow:0 14px 34px rgba(201,138,62,0.16);
  transform:translateY(-6px);
}
.badge{
  position:absolute;top:-13px;left:26px;
  background:var(--amber);color:#fff;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;letter-spacing:0.08em;text-transform:uppercase;
  padding:5px 12px;border-radius:999px;
}
.step-num{
  font-family:'IBM Plex Mono',monospace;font-size:13px;color:var(--muted);
  margin-bottom:10px;
}
.price-card h3{font-size:21px;line-height:1.25;margin-bottom:14px;min-height:2.5em;display:flex;align-items:flex-end;}
.price{
  display:flex;align-items:baseline;gap:6px;margin-bottom:6px;
}
.price .amount{font-family:'Fraunces',serif;font-size:34px;font-weight:600;}
.price .per{font-size:14px;color:var(--muted);}
.price-note{font-size:12.5px;color:var(--muted);margin-bottom:20px;}
.price-card p.desc{color:var(--muted);font-size:14.5px;flex:1;margin-bottom:24px;}
.cta{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 20px;border-radius:10px;
  font-size:14.5px;font-weight:600;
  border:1.5px solid var(--forest);color:var(--forest);
  transition:background-color .2s ease, transform .2s ease;
}
.cta:hover{background:var(--forest-pale);transform:translateY(-1px);}
.price-card.highlight .cta{background:var(--forest);color:#fff;border-color:var(--forest);}
.price-card.highlight .cta:hover{background:var(--forest-light);}
@media(max-width:900px){ .price-grid{grid-template-columns:1fr;} .price-card.highlight{transform:none;} }

/* ---------- OVER MIJ ---------- */
.about-title{
  font-size:46px;
  line-height:1.08;
  margin-bottom:22px;
}
.about-lede{
  font-size:18px;color:var(--muted);max-width:480px;margin-bottom:24px;
}

/* ---------- BOOKING ---------- */
#plan-gesprek{padding-bottom:24px;}
.booking-intro{max-width:560px;margin-bottom:8px;}
.booking-intro h2{font-size:clamp(24px,3vw,30px);margin-bottom:10px;}
.booking-intro p{color:var(--muted);font-size:16px;}
.booking-embed{border-radius:10px;overflow:hidden;}
.booking-embed iframe{width:100%;min-height:750px;border:none;display:block;}
@media(max-width:640px){
  .booking-embed iframe{min-height:900px;}
}

#contact{padding-top:24px;}

/* ---------- CONTACT ---------- */
.contact-panel{
  background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius);padding:40px 44px;
  text-align:center;
}
.contact-panel h2{font-size:clamp(24px,3vw,30px);margin-bottom:10px;}
.contact-panel p{color:var(--muted);font-size:16px;}
.contact-email{text-decoration:underline;text-underline-offset:2px;}
@media(max-width:640px){
  .contact-panel{padding:32px 28px;}
}

/* ---------- WAAROM ---------- */
.why-panel{
  background:var(--forest);color:var(--bg);
  border-radius:var(--radius);padding:48px 40px;
}
.why-panel h2{color:#fff;margin-bottom:34px;font-size:clamp(24px,3vw,30px);}
.why-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:28px;}
.why-item .ico{font-size:22px;margin-bottom:6px;display:block;}
.why-item h4{font-family:'Bricolage Grotesque';font-weight:700;font-size:15.5px;margin-bottom:6px;}
.why-item p{font-size:13.5px;color:#D9DFD2;margin:0;}
@media(max-width:640px){ .why-grid{grid-template-columns:1fr;} }

/* ---------- FOOTER ---------- */
footer{
  border-top:1px solid var(--line);
  padding:44px 0 36px;
}
.footer-grid{
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:28px;
}
.footer-brand p{color:var(--muted);font-size:13.5px;max-width:280px;margin-top:8px;}
.footer-col h5{
  font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--muted);margin-bottom:12px;
}
.footer-col a, .footer-col p{display:block;font-size:14px;margin-bottom:6px;}
.footer-col a.social-link{display:flex;align-items:center;gap:8px;}
.social-link svg{width:16px;height:16px;flex-shrink:0;color:var(--forest-light);}
.footer-bottom{
  margin-top:32px;padding-top:20px;border-top:1px solid var(--line);
  font-size:12.5px;color:var(--muted);display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
}
.footer-bottom a{text-decoration:underline;text-underline-offset:2px;}
.footer-bottom a:hover{color:var(--ink);}

/* ---------- LEGAL PAGES ---------- */
.legal-hero{padding:56px 0 32px;border-bottom:1px solid var(--line);}
.legal-hero .eyebrow-plain{
  font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--forest-light);margin-bottom:14px;
}
.legal-hero h1{font-size:clamp(30px,4vw,44px);margin-bottom:12px;}
.legal-hero .updated{color:var(--muted);font-size:14px;}
.legal-content{max-width:720px;padding:48px 0 96px;}
.legal-content h2{
  font-size:22px;margin-top:40px;margin-bottom:14px;
}
.legal-content h2:first-child{margin-top:0;}
.legal-content p{color:var(--muted);font-size:16px;margin-bottom:16px;}
.legal-content ul{color:var(--muted);font-size:16px;margin:0 0 16px;padding-left:22px;}
.legal-content li{margin-bottom:8px;}
.legal-content strong{color:var(--ink);}
.legal-content a{text-decoration:underline;text-underline-offset:2px;}
.legal-placeholder{
  background:var(--forest-pale);color:var(--forest);
  padding:1px 6px;border-radius:4px;font-size:0.95em;
}
