:root{
  --bg:#f5faf9;
  --surface:#ffffff;
  --text:#0b1b1d;
  --muted:#5e7073;
  --teal:#2c9a92;
  --teal-2:#3fb1a8;
  --line:rgba(11,27,29,.08);
  --shadow: 0 18px 60px rgba(11,27,29,.08);
  --shadow-strong: 0 26px 80px rgba(11,27,29,.14);
  --radius:28px;
  --ease:cubic-bezier(.2,.8,.2,1);
}

html, body {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.typ10 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.typ10-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* desktop */
  gap: 24px;
  align-items: start;
}

.title-mobile { display: none; }

@media (max-width: 420px) {
  .title-desktop { display: none; }
  .title-mobile { display: inline; }
}


@media (max-width: 900px) {
  .typ10-grid {
    grid-template-columns: 1fr; /* mobiel: stack */
  }
}

@media (max-width: 900px) {
  .typ10-grid {
    flex-direction: column;
  }
}

.typ10-card,
.typ10-panel,
.typ10-side {
  max-width: 100%;
}

.typ10-card * {
  max-width: 100%;
}

.typ10-card,
.typ10-panel {
  overflow-wrap: anywhere;
}

.badge, .pill {
  max-width: 100%;
  white-space: normal;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:linear-gradient(#fff, var(--bg));
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 48px)); margin-inline:auto}
/*
  Screen-reader-only utility.
  Using large negative offsets (e.g. left:-9999px) can create horizontal
  scrolling on some mobile browsers. This clip-based pattern avoids that.
*/
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
  gap:16px;
}
.brand{display:flex; align-items:baseline; gap:10px}
.brand-mark{
  font-family:"Playfair Display", serif;
  font-weight:700;
  font-size:28px;
  letter-spacing:.5px;
  color:var(--teal);
}
.brand-text{font-weight:600; color:rgba(11,27,29,.75)}

.nav{display:flex; align-items:center; gap:18px}
.nav-links{
  display:flex; list-style:none; gap:22px; padding:0; margin:0;
  color:rgba(11,27,29,.70);
}
.nav-links a{padding:10px 8px; border-radius:12px; transition:background .2s var(--ease), color .2s var(--ease)}
.nav-links a:hover{background:rgba(44,154,146,.10); color:rgba(11,27,29,.90)}
.nav-toggle{
  display:none;
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
}
.burger{
  display:block; width:18px; height:2px; background:rgba(11,27,29,.7); margin:0 auto;
  position:relative;
}
.burger::before,.burger::after{content:""; position:absolute; left:0; width:18px; height:2px; background:rgba(11,27,29,.7)}
.burger::before{top:-6px}
.burger::after{top:6px}

/* Off-canvas mobile menu (full-screen overlay + slide-in panel) */
.offcanvas-overlay{
  position: fixed;
  inset: 0;
  background: rgba(11, 27, 29, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease, ease);
  z-index: 9999;
}
.offcanvas-overlay.open{
  opacity: 1;
  pointer-events: auto;
}
.offcanvas-panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  transform: translateX(100%);
  transition: transform .26s var(--ease, ease);
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
}
.offcanvas-overlay.open .offcanvas-panel{
  transform: translateX(0);
}
.offcanvas-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 10px;
}
.offcanvas-brand{
  display:flex;
  align-items: center;
  gap: 12px;
  text-decoration:none;
}
.offcanvas-brand .brand-text{
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--dark, #122022);
}
.offcanvas-close{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.9);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu-links{
  list-style: none;
  margin: 0;
  padding: 6px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu-links a{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 14px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--dark, #122022);
  font-size: 20px;
  font-weight: 700;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.mobile-menu-links a:active{
  transform: translateY(1px);
}
body.menu-open{
  overflow: hidden;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  border:1px solid rgba(255,255,255,.22);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  cursor:pointer;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--teal);
  color:#fff;
  border-color:rgba(255,255,255,.18);
  box-shadow:0 12px 30px rgba(44,154,146,.25);
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 18px 42px rgba(44,154,146,.32); background:var(--teal-2)}
.btn-ghost{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:2px solid rgba(255,255,255,.32);
}
.btn-ghost:hover{transform:translateY(-2px); background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.46)}
.btn-xl{padding:18px 28px; font-size:22px}
.btn-wide{width:100%; padding:16px 18px}

.hero{
  position:relative;
  padding:72px 0 64px;
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(44,154,146,.92), rgba(44,154,146,.78));
}
.hero-inner{position:relative; text-align:center; color:#fff}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  margin-bottom:22px;
}
.hero-title{
  font-family:"Playfair Display", serif;
  font-size:72px;
  line-height:1.02;
  margin:0;
}
.hero-title-italic{font-style:italic; font-weight:600}
.hero-subtitle{
  width:min(860px, 100%);
  margin:20px auto 0;
  font-size:22px;
  line-height:1.55;
  opacity:.92;
}
.hero-actions{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:34px;
}

/* animated scroll cue */
.scroll-cue{
  margin:26px auto 14px;
  width:56px; height:56px;
  border-radius:18px;
  border:2px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.10);
  color:#fff;
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.scroll-cue:hover{transform:translateY(-2px); background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.50)}
.scroll-cue-icon{
  font-size:28px;
  display:inline-block;
  animation: bob 1.3s var(--ease) infinite;
}
@keyframes bob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(6px)}
}

.hero-highlights{
  margin-top:18px;
  display:flex; gap:26px; justify-content:center; flex-wrap:wrap;
  opacity:.95;
}
.highlight{
  display:flex; align-items:center; gap:12px;
  padding:16px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}
.highlight-icon{
  width:42px; height:42px; border-radius:14px;
  background:rgba(44,154,146,.28);
  color:#fff;
  display:grid; place-items:center;
}
.highlight-title{font-weight:800}
.highlight-sub{opacity:.85}

.section{padding:84px 0}
.section.alt{background:linear-gradient(#fff, rgba(245,250,249,.7))}
.section-head{text-align:center}
.section-pill{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  font-weight:700;
  color:var(--teal);
  background:rgba(44,154,146,.10);
  border:1px solid rgba(44,154,146,.14);
  margin-bottom:18px;
}
.section-pill.warm{
  color:#d96a3b;
  background:rgba(217,106,59,.10);
  border-color:rgba(217,106,59,.14);
}
.section-title{
  font-family:"Playfair Display", serif;
  font-size:56px;
  line-height:1.05;
  margin:0;
}
.section-title.big{font-size:clamp(36px, 8.8vw, 62px); text-align:left}
.accent-italic{color:var(--teal); font-style:italic}
.section-subtitle{
  width:min(820px, 100%);
  margin:18px auto 0;
  font-size:20px;
  line-height:1.6;
  color:rgba(11,27,29,.62);
}
.section-subtitle.left{margin-left:0; margin-right:auto}

.cards-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 28px 30px;
  box-shadow:var(--shadow);
  position:relative;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
/* modern hover/focus lift */
.card:hover,
.card:focus-within{
  transform: translateY(-8px);
  box-shadow:var(--shadow-strong);
  border-color: rgba(44,154,146,.22);
}
.card:focus{outline:none}
.card:focus-visible{
  outline:3px solid rgba(44,154,146,.28);
  outline-offset:4px;
}
/* subtle sheen */
.card::after{
  content:"";
  position:absolute; inset:-1px;
  border-radius:inherit;
  background: radial-gradient(1200px 1200px at 20% 10%, rgba(44,154,146,.10), transparent 45%);
  opacity:0;
  transition: opacity .22s var(--ease);
  pointer-events:none;
}
.card:hover::after,
.card:focus-within::after{opacity:1}

.service-card h3{
  font-family:"Playfair Display", serif;
  font-size:30px;
  margin:18px 0 10px;
}
.service-card p{
  margin:0;
  color:rgba(11,27,29,.62);
  font-size:18px;
  line-height:1.6;
}
.service-icon{
  width:74px; height:74px;
  border-radius:22px;
  background:var(--teal);
  border:1px solid rgba(44,154,146,.22);
  color:#fff;
  display:grid; place-items:center;
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.service-icon svg{
  width:34px; height:34px;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .22s var(--ease), transform .22s var(--ease);
}
.service-card:hover .service-icon,
.service-card:focus-within .service-icon{
  transform: translateY(-3px) rotate(-1deg);
  background: rgba(44,154,146,.98);
  border-color: rgba(44,154,146,.22);
  box-shadow: 0 18px 40px rgba(44,154,146,.18);
}
.service-card:hover .service-icon svg,
.service-card:focus-within .service-icon svg{
  stroke: #fff;
  transform: scale(1.04);
}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:start;
  margin-top:34px;
}
.checklist{
  list-style:none; padding:0; margin:26px 0 26px;
  display:grid; grid-template-columns:1fr 1fr; gap:14px 18px;
  color:rgba(11,27,29,.72);
  font-size:18px;
}
.checklist li{padding-left:30px; position:relative; line-height:1.5}
.checklist li::before{content:"✓"; position:absolute; left:0; top:0; color:var(--teal); font-weight:800}

.panel{
  border-radius:36px;
  padding:28px;
  background:linear-gradient(180deg, rgba(44,154,146,.92), rgba(44,154,146,.80));
  color:#fff;
  box-shadow:var(--shadow);
}
.panel-badge{display:flex; gap:14px; align-items:flex-start}
.panel-item-head{display:flex; gap:14px; align-items:flex-start}

.icon-svg{width:22px;height:22px;display:block}
.service-icon .icon-svg{width:34px;height:34px}
.highlight-icon .icon-svg{width:22px;height:22px}
.loc-ico .icon-svg{width:22px;height:22px}

.badge-icon{
  width:46px;height:46px;border-radius:16px;
  background:rgba(255,255,255,.14);
  color:#fff;
  display:grid; place-items:center;
}
.badge-title{font-weight:800}
.badge-sub{opacity:.9}
.panel-item{
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}
.panel-quote{
  margin:18px 0 0;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  opacity:.95;
  font-style:italic;
}

.cards-grid.prices{grid-template-columns:repeat(4, 1fr)}
.price-card h3{font-family:"Playfair Display", serif; margin:0 0 6px}
.muted{color:rgba(11,27,29,.55)}
.muted.small{font-size:14px}
.muted.spacer{min-height:24px}
.price{display:flex; align-items:baseline; gap:10px; white-space:nowrap; font-weight:900; color:var(--teal); margin:8px 0 2px; font-variant-numeric: tabular-nums}
.price .currency{font-size:26px; font-weight:900; line-height:1}
.price .amount{font-size:34px; font-weight:900; line-height:1; letter-spacing:-.02em}
hr{border:0;border-top:1px solid var(--line); margin:18px 0}
.row{display:flex; justify-content:space-between; align-items:baseline; gap:14px; padding:8px 0}
.row strong{white-space:nowrap; font-variant-numeric: tabular-nums}
.accent{color:var(--teal)}
.chip{
  position:absolute; top:18px; left:18px;
  padding:8px 12px; border-radius:999px;
  font-weight:800; font-size:13px;
  background:rgba(44,154,146,.12);
  border:1px solid rgba(44,154,146,.16);
  color:var(--teal);
}
.price-card.featured{border-color:rgba(44,154,146,.22)}
.info-card{
  margin-top:26px;
  display:flex; gap:16px; align-items:flex-start;
  padding:24px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  box-shadow:var(--shadow);
}
.info-icon{
  width:44px;height:44px;
  border-radius:16px;
  background:var(--teal);
  border:1px solid rgba(44,154,146,.22);
  color:#fff;
  display:grid; place-items:center;
  flex:0 0 auto;
}
.info-icon svg{width:22px;height:22px;stroke:#fff;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}

.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:30px;
  margin-top:44px;
  align-items:start;
}
.contact-card h3{font-family:"Playfair Display", serif; margin:0}
.contact-header{display:flex; gap:16px; align-items:center}
.contact-avatar{
  width:140px; height:140px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.9);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
  filter: saturate(.95) contrast(1.02);
}
.contact-name{font-size:32px}
.contact-role{color:var(--teal); font-weight:800; margin-top:2px}
.contact-intro{color:rgba(11,27,29,.62); line-height:1.6; font-size:18px; margin:14px 0 0}
.contact-items{margin-top:20px; display:grid; gap:18px}
.contact-item{display:flex; gap:14px; align-items:flex-start}
.contact-ico{
  width:52px;height:52px;border-radius:16px;
  background:var(--teal);
  border:1px solid rgba(44,154,146,.22);
  display:grid; place-items:center;
  color:#fff;
  flex:0 0 auto;
}
.contact-ico svg{width:22px;height:22px;stroke:#fff;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.contact-label{font-weight:900}
.contact-link{color:var(--teal); font-weight:700}
.contact-link:hover{text-decoration:underline}
.contact-muted{color:rgba(11,27,29,.58)}

.contact-side-title{font-family:"Playfair Display", serif; font-size:26px; margin:8px 0 18px}
.location-card{
  display:flex; gap:14px; align-items:center;
  padding:18px; border-radius:20px;
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  margin-bottom:14px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.location-card:hover{transform:translateY(-3px); box-shadow:var(--shadow-strong)}
.loc-ico{
  width:44px;height:44px;border-radius:16px;
  background:var(--teal);
  border:1px solid rgba(44,154,146,.22);
  color:#fff;
  display:grid; place-items:center;
}
.loc-title{font-weight:900}
.loc-sub{color:rgba(11,27,29,.58)}

.cta-panel{
  margin-top:18px;
  border-radius:26px;
  padding:24px;
  background:linear-gradient(180deg, rgba(44,154,146,.92), rgba(44,154,146,.82));
  color:#fff;
  box-shadow:var(--shadow);
}
.cta-panel h3{font-family:"Playfair Display", serif; margin:0 0 10px}
.cta-panel p{margin:0 0 18px; opacity:.95}

.form{margin-top:16px; display:grid; gap:12px}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
label{display:grid; gap:8px; font-weight:700}
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.30);
  background:rgba(255,255,255,.12);
  color:#fff;
  font:inherit;
}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.70)}
.form-note{margin:0; opacity:.85; font-size:13px}
.hidden{display:none}

.site-footer{
  padding:32px 0;
  background:#122327;
  color:rgba(255,255,255,.78);
  margin-top:10px;
}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer-links{list-style:none; padding:0; margin:0; display:flex; gap:16px}
.footer-links a{color:rgba(255,255,255,.70)}
.footer-links a:hover{color:#fff}
.footer-copy{color:rgba(255,255,255,.60)}

/* Scroll-reveal animations */
[data-animate]{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.in-view{
  opacity:1 !important;
  transform: translateY(0) !important;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .scroll-cue-icon{animation:none}
  [data-animate]{transition:none; opacity:1; transform:none}
  .btn, .card, .location-card, .service-icon, .service-icon svg{transition:none}
}

/* responsive */
@media (max-width: 980px){
  .cards-grid{grid-template-columns:repeat(2, 1fr)}
  .cards-grid.prices{grid-template-columns:repeat(2, 1fr)}
  .split{grid-template-columns:1fr}
  .section-title.big{text-align:center}
  .section-subtitle.left{margin-inline:auto}
}
@media (max-width: 720px){
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav-links, .nav-links.open{display:none !important}
  .header-cta{display:none}
  .hero-title{font-size:54px}
  .hero-subtitle{font-size:18px}
  .btn-xl{width:100%; font-size:20px}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr}
  .cards-grid.prices{grid-template-columns:1fr}
  .checklist{grid-template-columns:1fr}
  .section-title{font-size:44px}

}

/* extra-small phones (e.g., iPhone 12/13 mini widths) */
@media (max-width: 420px){
  .section-title.big{font-size:clamp(32px, 9.2vw, 44px)}
  #typ10 .section-subtitle{font-size:17px}
  #typ10 .checklist{font-size:16px; gap:12px 14px}
  #typ10 .checklist li{padding-left:26px}
  #typ10 .panel{padding:20px; border-radius:28px}
  #typ10 .badge-icon{width:42px; height:42px; border-radius:14px}
  #typ10 .panel-item{padding:14px; border-radius:18px}
  #typ10 .badge-title{font-size:16px}
  #typ10 .badge-sub{font-size:14px; line-height:1.45}
  #typ10 .panel-quote{font-size:15px}
}

.price-card .price{min-height:40px}

svg.icon-svg{stroke:currentColor}


/* Contact refinements */
.contact-bio{margin-top:14px}
.contact-bio p{
  margin:0 0 14px;
  font-size:15.5px;
  line-height:1.65;
  color:rgba(11,27,29,.62);
}
.contact-bio p:last-child{margin-bottom:0}

.contact-item.link{
  text-decoration:none;
  color:inherit;
  border-radius:18px;
  padding:10px 10px;
  margin:-10px -10px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.contact-item.link:hover{
  background:rgba(44,154,146,.06);
  transform:translateY(-2px);
}
.contact-item.link:focus-visible{
  outline:3px solid rgba(44,154,146,.28);
  outline-offset:3px;
}

.contact-side-title{margin-top:0}
.cta-actions{
  display:flex;
  gap:14px;
  margin-top:16px;
  flex-wrap:wrap;
}
.cta-actions .btn{flex:1 1 220px}

.btn-ico{
  display:inline-grid;
  place-items:center;
  margin-right:10px;
}
.btn-ico svg{
  width:20px;height:20px;
  stroke:#fff; stroke-width:2; fill:none;
  stroke-linecap:round; stroke-linejoin:round;
}

/* Official info block */
.official-card{
  margin-top:14px;
  border-radius:20px;
  padding:18px 18px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.official-title{
  font-weight:900;
  margin-bottom:8px;
}
.official-line{
  color:rgba(11,27,29,.62);
  line-height:1.6;
  font-size:14.5px;
}

/* Footer tagline */
.footer-tagline{
  padding:16px 0 28px;
  text-align:center;
  color:rgba(255,255,255,.6);
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:18px;
}

@media (max-width: 900px){
  .contact-grid{grid-template-columns:1fr}
}


/* Contact note */
.contact-note{margin-top:-6px;font-size:13.5px;line-height:1.6;color:rgba(11,27,29,.52)}
.contact-note em{font-style:italic}


/* Service split (kinderen/volwassenen) */
.service-groups{display:grid;gap:28px}
.service-group-head{display:flex;align-items:center;gap:12px;margin:6px 0 16px}
.service-group-ico{width:34px;height:34px;border-radius:14px;display:grid;place-items:center;background:rgba(36,164,146,.10);color:var(--teal)}
.service-group-ico .icon-svg{width:18px;height:18px}
.service-group-title{margin:0;font-size:28px;letter-spacing:-.02em}
.service-card h4{margin:14px 0 8px;font-size:28px;letter-spacing:-.02em}

.loc-ico svg{width:22px;height:22px;color:#fff}


/* Off-canvas mobile menu */
.mobile-menu{position:fixed; inset:0; z-index:9999; opacity:0; pointer-events:none; transition:opacity .25s ease;}
.mobile-menu.open{opacity:1; pointer-events:auto;}
.mobile-menu__backdrop{position:absolute; inset:0; background:rgba(11,27,29,.55); backdrop-filter:saturate(140%) blur(6px);}
.mobile-menu__panel{position:absolute; top:0; right:0; height:100%; width:min(420px, 92vw);
  background:rgba(255,255,255,.96); box-shadow:var(--shadow); border-left:1px solid var(--line);
  transform:translateX(100%); transition:transform .28s cubic-bezier(.2,.8,.2,1);
  display:flex; flex-direction:column; padding:18px 18px 24px;
}
.mobile-menu.open .mobile-menu__panel{transform:translateX(0);}
.mobile-menu__header{display:flex; align-items:center; justify-content:space-between; padding:6px 2px 14px;}
.mobile-menu__close{width:44px; height:44px; border-radius:14px; border:1px solid var(--line); background:#fff;
  display:inline-flex; align-items:center; justify-content:center; font-size:28px; line-height:1; color:rgba(11,27,29,.85);
}
.mobile-menu__nav{display:flex; flex-direction:column; gap:8px; padding:8px 4px;}
.mobile-menu__nav a{display:flex; align-items:center; height:52px; padding:0 14px; border-radius:16px;
  color:rgba(11,27,29,.90); font-weight:600; letter-spacing:-.01em;
}
.mobile-menu__nav a:active{transform:scale(.99);}
.mobile-menu__nav a:hover{background:rgba(46,163,156,.10);}
.mobile-menu__actions{margin-top:auto; padding:12px 4px 0;}
body.menu-open{overflow:hidden;}
@media (min-width: 721px){ .mobile-menu{display:none;} }


/* Fixed header helpers */
:root { --header-h: 84px; }
body.has-fixed-header { padding-top: var(--header-h); }

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  backdrop-filter: blur(12px);
}


/* Process / Werkwijze */
.section--process{
  padding-top: 70px;
  padding-bottom: 70px;
}
.process-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 36px;
}
.process-card{
  position: relative;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 26px;
  padding: 34px 32px 30px;
  box-shadow: 0 18px 55px rgba(15, 31, 38, 0.08);
  overflow: hidden;
}
.process-no{
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  color: rgba(34, 160, 150, 0.18);
  letter-spacing: 0.02em;
}
.process-title{
  margin: 70px 0 8px;
  font-size: 30px;
}
.process-text{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 900px){
  .process-grid{ grid-template-columns: 1fr; }
  .process-title{ font-size: 26px; }
  .process-text{ font-size: 17px; }
  .process-no{ font-size: 48px; }
}


/* Mobile off-canvas CTAs */
.btn-full{ width:100%; display:inline-flex; justify-content:center; }
.btn-secondary{
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(46, 166, 156, 0.35);
}
.btn-secondary:hover{ background: rgba(46, 166, 156, 0.08); }

.mobile-menu__actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;
}
.mobile-menu__actions .btn{
  padding:14px 16px;
  font-size:16px;
}
