/* ============ HOME ============ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
  min-height: 70vh;
}
.hero h1 {
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 24px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; }
.hero h1 em { color: var(--primary-700); font-feature-settings: "ss01"; }
.hero-sub { max-width: 36ch; font-size: 18px; color: var(--ink-500); margin-bottom: 36px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-aside {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  padding-bottom: 32px;
  display: grid; gap: 32px;
  align-self: end;
}
.hero-aside .meta { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 8px; }
.hero-aside .phone { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); color: var(--ink-900); display: block; white-space: nowrap; }
.hero-aside .phone:hover { color: var(--primary); }
.hero-aside .hours { font-size: 14px; color: var(--ink-700); display: grid; gap: 4px; }
.hero-aside .hours dt { display: inline-block; width: 110px; color: var(--ink-500); }

.hero-shapes {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero-shapes .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.hero-shapes .blob.b1 { top: -10%; right: -8%; width: 540px; height: 540px; background: radial-gradient(closest-side, var(--mint), transparent); }
.hero-shapes .blob.b2 { bottom: -20%; left: -10%; width: 440px; height: 440px; background: radial-gradient(closest-side, var(--primary-50), transparent); }

.hero-mark {
  position: absolute; right: 48px; top: calc(var(--header-h) + 40px);
  font-family: var(--font-display); font-style: italic;
  font-size: 14px;
  color: var(--ink-500);
  display: flex; align-items: center; gap: 12px;
  opacity: .8;
}
.hero-mark::before { content: ""; width: 40px; height: 1px; background: var(--ink-300); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-500);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-300), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink-900));
  animation: scroll-cue 2s var(--ease) infinite;
}
@keyframes scroll-cue { to { top: 100%; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 32px; }
  .hero-mark { display: none; }
}

/* ============ USP STRIP ============ */
.usp-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-grid .usp {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.usp-grid .usp:last-child { border-right: 0; }
.usp .num { font-family: var(--font-display); font-style: italic; color: var(--primary); font-size: 14px; }
.usp h3 { font-family: var(--font-display); font-size: 22px; margin: 0; }
.usp p { font-size: 14px; color: var(--ink-500); margin: 0; }
@media (max-width: 900px) {
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid .usp:nth-child(2) { border-right: 0; }
  .usp-grid .usp { border-bottom: 1px solid var(--line); }
}

/* ============ TWO-COL FEATURE ============ */
.feature-2col {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.feature-2col .visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--mint-50) 0%, var(--primary-50) 100%);
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.feature-2col .visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.6), transparent 50%);
}
.feature-2col .visual .badge {
  position: absolute; bottom: 32px; left: 32px;
  background: var(--ink-900); color: var(--paper);
  padding: 16px 20px; border-radius: var(--r-md);
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; line-height: 1.3;
}
.feature-2col .visual .badge .num { display: block; font-size: 48px; font-style: normal; color: var(--mint); }
.feature-2col ul.checklist { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 12px; }
.feature-2col ul.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--ink-700);
}
.feature-2col ul.checklist li::before {
  content: ""; flex: 0 0 24px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--mint-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B6E99' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  margin-top: 2px;
}
@media (max-width: 900px) { .feature-2col { grid-template-columns: 1fr; gap: 40px; } }

/* ============ SPECIALISATIES GRID ============ */
.spec-header { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 56px; flex-wrap: wrap; }
.spec-header .right { max-width: 420px; }
.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 240px;
  position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--ease), background var(--t-med), color var(--t-med), border-color var(--t-med);
}
.spec-card .sp-num { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--ink-300); }
.spec-card h3 { margin: 24px 0 8px; font-size: 24px; }
.spec-card p { font-size: 14px; color: var(--ink-500); margin: 0; }
.spec-card .sp-icon { margin-top: auto; align-self: flex-end; opacity: .4; transition: opacity var(--t-med); }
.spec-card:hover { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); transform: translateY(-4px); }
.spec-card:hover h3 { color: var(--mint); }
.spec-card:hover p { color: var(--paper-2); }
.spec-card:hover .sp-icon { opacity: 1; color: var(--mint); }
.spec-card:hover .sp-num { color: var(--mint); }
@media (max-width: 900px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .spec-grid { grid-template-columns: 1fr; } }

/* ============ TEAM PREVIEW (marquee-ish) ============ */
.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 20px;
  position: relative; overflow: hidden;
  transition: transform var(--t-med) var(--ease);
}
.team-card:hover { transform: translateY(-6px); }
.team-card .avatar {
  flex: none; width: 100%; aspect-ratio: 1; min-height: 0; overflow: hidden;
  display: grid; place-items: center; border-radius: 50%;
  font-family: var(--font-display); font-style: italic; font-size: 96px;
  color: var(--ink-900); opacity: .15;
}
.team-card.has-photo .avatar { opacity: 1; }
.team-card.has-photo .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card .info h4 { font-family: var(--font-display); font-size: 22px; color: var(--ink-900); margin: 0 0 4px; text-transform: none; letter-spacing: -.01em; font-weight: 400; }
.team-card .info span { font-size: 13px; color: var(--ink-500); }
.team-card .days { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-700); margin-top: 8px; }
@media (max-width: 1000px) { .team-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-row { grid-template-columns: 1fr; } }

/* ============ TEAM HORIZONTAL SCROLL (home page) ============ */
.team-scroll-wrap { position: relative; }
.team-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 24px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-300) transparent;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.team-scroll::-webkit-scrollbar { height: 6px; }
.team-scroll::-webkit-scrollbar-track { background: transparent; }
.team-scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; }
.team-scroll .team-card {
  flex: 0 0 calc((100% - 48px) / 4);
  scroll-snap-align: start;
}
.team-scroll-btn {
  position: absolute;
  top: calc(50% - 16px);
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-900);
  box-shadow: var(--sh-1);
  cursor: pointer;
  z-index: 2;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), color var(--t-fast);
}
.team-scroll-btn:hover { background: var(--ink-900); color: var(--paper); transform: translateY(-50%) scale(1.05); }
.team-scroll-btn.prev { left: -20px; }
.team-scroll-btn.next { right: -20px; }
.team-scroll-btn:disabled { opacity: 0; pointer-events: none; }

@media (max-width: 1100px) {
  .team-scroll .team-card { flex: 0 0 calc((100% - 32px) / 3); }
}
@media (max-width: 800px) {
  .team-scroll .team-card { flex: 0 0 calc((100% - 16px) / 2); }
  .team-scroll-btn.prev { left: -8px; }
  .team-scroll-btn.next { right: -8px; }
}
@media (max-width: 520px) {
  .team-scroll .team-card { flex: 0 0 78%; }
  .team-scroll-btn { display: none; }
}

/* ============ STATS / COUNTERS ============ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat .n { font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); line-height: 1; color: var(--ink-900); }
.stat .n em { color: var(--primary); font-style: italic; }
.stat .label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); margin-top: 8px; }
@media (max-width: 800px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ============ MAP / LOCATION ============ */
.location-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: stretch;
}
.location-info { padding: 16px 0; }
.location-info .row { padding: 24px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 24px; }
.location-info .row:last-child { border-bottom: 0; }
.location-info .row dt { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-500); padding-top: 4px; }
.location-info .row dd { margin: 0; color: var(--ink-900); font-size: 16px; line-height: 1.6; }
.location-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 480px;
  background: var(--paper-2);
}
.location-map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; }
/* Geblokkeerde-kaart placeholder (cookie-consent) */
.map-consent {
  width: 100%; height: 100%; min-height: 480px;
  display: grid; place-items: center;
  padding: 32px; text-align: center;
  background: var(--paper-2);
}
.map-consent-inner {
  max-width: 340px;
  display: grid; gap: 16px; justify-items: center;
  color: var(--ink-500);
}
.map-consent-inner svg { color: var(--primary); }
.map-consent-inner p { margin: 0; font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

/* ============ TEAM PAGE ============ */
.team-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.chip.is-active { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.team-grid .team-card { aspect-ratio: auto; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ============ SPECIALISATIES PAGE ============ */
.spec-page-grid {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.spec-nav {
  position: sticky; top: calc(var(--header-h) + 24px);
  display: grid; gap: 4px;
  font-size: 14px;
}
.spec-nav a {
  padding: 10px 14px;
  border-radius: var(--r-md);
  color: var(--ink-500);
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
}
.spec-nav a:hover { color: var(--ink-900); }
.spec-nav a.is-active { color: var(--ink-900); border-left-color: var(--primary); background: var(--paper-2); }
.spec-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.spec-section:first-child { border-top: 0; padding-top: 0; }
.spec-section .num {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; color: var(--primary);
  margin-bottom: 16px;
}
.spec-section .visual {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--mint-50), var(--primary-50));
  position: relative; overflow: hidden;
}
.spec-section .visual .icon-big {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--primary-700);
  opacity: .4;
}
.spec-section .visual .icon-big svg { width: 56%; height: 56%; }
@media (max-width: 1000px) {
  .spec-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .spec-nav { position: static; display: flex; flex-wrap: wrap; overflow-x: auto; }
  .spec-section { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ FORMS PAGE ============ */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 720px;
  margin-inline: auto;
  box-shadow: var(--sh-1);
}
.form-card h2 { font-size: 36px; margin-bottom: 8px; }
.form-card .sub { color: var(--ink-500); margin-bottom: 32px; }
.form-section { padding: 24px 0; border-top: 1px solid var(--line); }
.form-section:first-of-type { border-top: 0; padding-top: 0; }
.form-section h3 { font-size: 18px; font-family: var(--font-body); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 20px; }
@media (max-width: 700px) { .form-card { padding: 32px 24px; } }

/* ===== Multi-step form ===== */
.steps {
  display: flex; gap: 4px;
  margin-bottom: 40px;
  counter-reset: step;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.steps .step {
  flex: 1; min-width: 90px;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 20px;
  position: relative;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.steps .step::before {
  content: ""; position: absolute; top: 8px; left: 0; right: 0;
  height: 2px; background: var(--line);
}
.steps .step.is-active::before, .steps .step.is-done::before { background: var(--primary); }
.steps .step .num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper); border: 2px solid var(--line);
  position: absolute; top: -3px; left: 0;
  display: grid; place-items: center;
  font-size: 11px; color: var(--ink-500);
}
.steps .step.is-active .num { background: var(--primary); border-color: var(--primary); color: var(--paper); }
.steps .step.is-done .num { background: var(--primary); border-color: var(--primary); color: var(--paper); }
.steps .step.is-active { color: var(--primary-700); font-weight: 600; }
.step-panel { display: none; }
.step-panel.is-active { display: block; animation: fade-up .35s var(--ease); }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line);
}
.summary-list {
  display: grid; gap: 12px;
  background: var(--paper-2);
  border-radius: var(--r-md);
  padding: 24px;
}
.summary-list .row {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 16px; padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary-list .row:last-child { border-bottom: 0; }
.summary-list .row dt { color: var(--ink-500); }
.summary-list h4 { font-family: var(--font-display); font-size: 18px; text-transform: none; letter-spacing: -.01em; color: var(--ink-900); margin: 16px 0 8px; font-weight: 400; }
.summary-list h4:first-child { margin-top: 0; }
@media (max-width: 600px) {
  .summary-list .row { grid-template-columns: 1fr; gap: 4px; }
  .steps .step { font-size: 0; }
  .steps .step.is-active { font-size: 11px; }
}

.radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-group label {
  flex: 1; min-width: 100px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  transition: all var(--t-fast);
}
.radio-group label:has(input:checked) { border-color: var(--primary); background: var(--primary-50); color: var(--primary-700); }
.radio-group input { accent-color: var(--primary); }
.date-row { display: grid; grid-template-columns: 80px 1fr 100px; gap: 8px; }

/* ============ EMERGENCY ============ */
.emergency-hero {
  background: linear-gradient(180deg, #FEF2E5 0%, var(--paper) 100%);
  padding: calc(var(--header-h) + 80px) 0 80px;
}
.emergency-hero h1 em { color: var(--warn); }
.emergency-card {
  background: var(--white);
  border-left: 4px solid var(--warn);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  display: grid; gap: 16px;
  margin: 32px 0;
}
.emergency-card .phone-big {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 64px);
  color: var(--ink-900); line-height: 1;
}

/* ============ MISSION / VISION ============ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.mv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
}
.mv-card .big-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 80px; line-height: 1; color: var(--primary);
  opacity: .25;
  position: absolute; top: 24px; right: 32px;
}
.mv-card h3 { font-size: 28px; margin-bottom: 16px; }
@media (max-width: 800px) { .mv-grid { grid-template-columns: 1fr; } }

/* ============ GALLERY ============ */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
  margin-top: 48px;
}
.gallery .tile {
  border-radius: var(--r-md);
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t-med) var(--ease); }
.gallery .tile:hover img { transform: scale(1.04); }
.gallery .tile.t1 { grid-column: span 4; grid-row: span 2; }
.gallery .tile.t2 { grid-column: span 2; grid-row: span 2; }
.gallery .tile.t3 { grid-column: span 2; grid-row: span 2; }
.gallery .tile.t4 { grid-column: span 2; grid-row: span 2; }
.gallery .tile.t5 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery .tile { grid-column: span 1 !important; grid-row: span 1 !important; } }

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,31,44,.6);
  display: grid; place-items: center;
  padding: 24px;
  z-index: 70;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-fast), visibility var(--t-fast);
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 520px; width: 100%;
  position: relative;
  transform: translateY(16px); transition: transform var(--t-med) var(--ease);
}
.modal-backdrop.is-open .modal { transform: none; }
.modal h3 { font-size: 28px; margin-bottom: 8px; }
.modal .bio-photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  border: 3px solid var(--mint);
}
.modal .close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px; height: 36px;
  padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-700);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.modal .close:hover { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); }
.modal .close:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--ink-900);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(125,211,192,.3), transparent);
}
.cta-band h2 { color: var(--paper); }
.cta-band h2 em { color: var(--mint); }
.cta-band p { color: var(--paper-2); max-width: 50ch; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; position: relative; }
@media (max-width: 800px) { .cta-band { padding: 40px 32px; grid-template-columns: 1fr; } }

/* ============ PRIVACY PAGE ============ */
.legal-block {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.legal-block:first-of-type { border-top: 0; padding-top: 0; }
.legal-block h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 24px; }
.legal-block h3 {
  font-size: 18px; font-family: var(--font-body); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink-500);
  margin: 32px 0 12px;
}
.legal-block p { color: var(--ink-700); margin-bottom: 16px; line-height: 1.7; }
.legal-block ul {
  margin: 0 0 16px; padding-left: 0; list-style: none;
  display: grid; gap: 8px;
}
.legal-block ul li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--ink-700); line-height: 1.6;
}
.legal-block ul li::before {
  content: ""; flex: 0 0 6px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary);
  margin-top: 11px;
}
.legal-block a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

/* ============ VACATURE PAGE ============ */
.vac-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--sh-1);
}
.vac-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 32px; margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.vac-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.vac-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: var(--mint-50);
  color: var(--primary-700);
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: .02em;
}
.vac-body .lead { max-width: 70ch; margin-bottom: 40px; }
.vac-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.vac-grid h3 { font-size: 22px; margin-bottom: 16px; color: var(--ink-900); }
.vac-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.vac-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; line-height: 1.6; color: var(--ink-700);
  padding-left: 0;
}
.vac-list li::before {
  content: ""; flex: 0 0 22px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--primary-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B6E99' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
  margin-top: 3px;
}
@media (max-width: 800px) { .vac-grid { grid-template-columns: 1fr; gap: 32px; } .vac-card { padding: 32px 24px; } }

/* Apply card */
.apply-card {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin: 32px 0 24px;
  overflow: hidden;
}
.apply-card > div {
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--line);
}
.apply-card > div:last-child { border-right: 0; }
.apply-label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 4px;
}
.apply-card strong { font-size: 18px; color: var(--ink-900); font-weight: 600; }
.apply-role { font-size: 14px; color: var(--ink-500); }
.apply-mail { color: var(--primary); font-weight: 500; word-break: break-word; }
.apply-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
@media (max-width: 800px) {
  .apply-card { grid-template-columns: 1fr; }
  .apply-card > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .apply-card > div:last-child { border-bottom: 0; }
}

/* ============ RESPONSIVE FIXES (tablet/mobile) ============ */

/* Iframes always responsive */
iframe { max-width: 100%; }

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: clamp(40px, 7vw, 84px); }
  .feature-2col { gap: 48px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .location-info .row { grid-template-columns: 100px 1fr; gap: 16px; }
  .location-map { min-height: 380px; }
  .location-map iframe { min-height: 380px; }
}

/* Smaller tablet / large phone (≤768px) */
@media (max-width: 768px) {
  .container, .container-narrow { width: min(100% - 32px, var(--container)); }
  .page-hero { padding: calc(var(--header-h) + 48px) 0 64px; }
  .form-card { padding: 32px 20px; }
  .form-card h2 { font-size: 28px; }
  .location-info .row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .location-info .row dt { padding-top: 0; }
  .location-map { min-height: 320px; }
  .location-map iframe { min-height: 320px; }

  /* Spoed-card inline dl rows stack */
  .emergency-card dl > div { grid-template-columns: 1fr !important; gap: 2px !important; }
  .emergency-card dl dt { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }

  /* Eerste-hulp grid stacks */
  section .container > div[style*="grid-template-columns:1fr 1fr"],
  section .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* CTA-band actions row */
  .cta-band { padding: 32px 24px; }
  .cta-band .actions { flex-direction: column; }
  .cta-band .actions .btn { justify-content: center; }

  /* Hero CTA wraps cleanly */
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }

  /* Specialisaties side nav scrollable horizontally */
  .spec-nav { padding-bottom: 8px; }
  .spec-nav a { white-space: nowrap; }
}

/* Phone (≤480px) */
@media (max-width: 480px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: calc(var(--header-h) + 32px) 0 48px; }
  .hero h1 { font-size: clamp(36px, 10vw, 56px); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  .form-card { padding: 24px 16px; border-radius: var(--r-lg); }
  .form-card h2 { font-size: 24px; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn { width: 100%; justify-content: center; }

  .breadcrumb { font-size: 12px; }

  /* Footer stacks fully */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Notice banner shrinks padding */
  .appt-notice { padding: 14px 16px; font-size: 13.5px; gap: 10px; }

  /* Big phone numbers don't overflow */
  .emergency-card .phone-big { font-size: clamp(32px, 9vw, 48px); }
  .emergency-card { padding: 24px; }

  /* CTA-band radius softer */
  .cta-band { border-radius: var(--r-lg); padding: 28px 20px; }

  /* Location info rows */
  .location-info .row { padding: 12px 0; }

  /* Brand logo compact */
  .brand .mark { width: 32px; height: 32px; font-size: 16px; }
}

/* Very small phone (≤360px) */
@media (max-width: 360px) {
  .container, .container-narrow { width: min(100% - 24px, var(--container)); }
  .header-cta { gap: 4px; }
  .header-cta .btn-emerg, .header-cta .btn-primary { padding: 7px 10px; font-size: 12px; }
  .hero h1 { font-size: 32px; line-height: 1; }
}
