/* ═══════════════════════════════════════════
   TANDARTS OEGSTGEEST — Stylesheet
   Palette: teal #7aa8a8 · dark teal #5a8a8a · off-white #f0ede8 · near-black #2e2e2e
════════════════════════════════════════════ */

/* ─── Custom properties ──────────────────── */
:root {
  --c-teal:        #7aa8a8;
  --c-teal-dark:   #5a8a8a;
  --c-teal-deep:   #3d6e6e;
  --c-bg:          #f0ede8;
  --c-bg-alt:      #e8e4de;
  --c-white:       #ffffff;
  --c-text:        #2e2e2e;
  --c-text-light:  #5a5a5a;
  --c-border:      #d8d3cc;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12);

  --header-h:   64px;
  --section-gap: 80px;
}

/* ─── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
textarea, input, button { font-family: inherit; }

/* ─── Media / img-fill containers ───────── */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Utilities ──────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 24px;
}
.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;
}
.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-teal-dark);
  margin-bottom: 12px;
}
.section-eyebrow--center { text-align: center; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; }
.section-title--center { text-align: center; }
.section-intro {
  max-width: 640px;
  margin: 16px auto 48px;
  text-align: center;
  color: var(--c-text-light);
  font-size: 1.05rem;
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Primary: solid teal — used in forms/cards/footer on light backgrounds */
.btn--primary {
  background: var(--c-teal);
  color: var(--c-white);
  border-color: var(--c-teal);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--c-teal-dark);
  border-color: var(--c-teal-dark);
  box-shadow: var(--shadow-md);
}

/* Hero primary: white fill with dark text — high contrast on teal overlay */
.hero__ctas .btn--primary {
  background: #ffffff !important;
  color: #2a5555 !important;
  border-color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero__ctas .btn--primary:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  color: var(--c-teal-deep);
}

.btn--outline {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--c-white);
  color: var(--c-teal-dark);
}
.btn--teal-sm {
  padding: 9px 18px;
  font-size: .875rem;
  background: var(--c-teal);
  color: var(--c-white);
  border-color: var(--c-teal);
  border-radius: var(--radius-sm);
}
.btn--teal-sm:hover {
  background: var(--c-teal-dark);
  border-color: var(--c-teal-dark);
}
.btn--white-outline {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
  padding: 14px 28px;
  font-size: 1rem;
}
.btn--white-outline:hover { background: var(--c-white); color: var(--c-teal-dark); }
.btn--full { width: 100%; justify-content: center; }

/* ─── HEADER ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--c-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--c-teal);
  transition: background .3s;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-teal-dark);
  text-decoration: none;
}
.logo-icon { width: 28px; height: 28px; color: var(--c-teal); }
.logo-text { color: var(--c-text); }
.logo--footer .logo-text { color: var(--c-white); }
.logo--footer .logo-icon { color: var(--c-teal); }

.desktop-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.desktop-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--c-teal);
  transition: right .2s;
}
.desktop-nav a:hover { color: var(--c-teal-dark); }
.desktop-nav a:hover::after { right: 0; }
.nav-spoed {
  color: var(--c-teal-dark) !important;
  font-weight: 700 !important;
}

/* ─── HAMBURGER BUTTON ───────────────────── */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY (kit) ──────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  height: 100svh;
  background: var(--c-bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}
.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}
.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--c-text);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
}
.mobile-menu__close svg { width: 28px; height: 28px; }
.mobile-menu__list { flex: 1; }
.mobile-menu__list li {
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__item {
  display: block;
  padding: 18px 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu__item:hover { color: var(--c-teal-dark); }
.mobile-menu__item--spoed { color: var(--c-teal-dark); }
.mobile-menu__footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.mobile-menu__footer p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--c-teal-dark);
}
.mobile-menu__footer svg { width: 20px; height: 20px; }
.mobile-menu__footer a { color: var(--c-teal-dark); font-size: 1.1rem; }

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 50, 50, 0.93) 0%,
    rgba(45, 85, 85, 0.84) 55%,
    rgba(10, 40, 40, 0.93) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 80px;
  max-width: 680px;
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 16px;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--c-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.92);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── ACTIE KAARTEN ──────────────────────── */
.actie-kaarten {
  background: var(--c-white);
  padding: 48px 0;
}
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card__icon-wrap {
  width: 52px; height: 52px;
  background: rgba(122,168,168,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--c-teal-dark);
}
.card__icon-wrap svg { width: 24px; height: 24px; }
.card--spoed .card__icon-wrap {
  background: rgba(90,138,138,.18);
}
.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-text);
}
.card__text {
  color: var(--c-text-light);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ─── SOCIAL PROOF ───────────────────────── */
.social-proof {
  padding: var(--section-gap) 0;
  background: var(--c-bg);
}
.reviews-header {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
}
.google-badge__stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 22px; height: 22px;
  fill: #f9b938;
}
.star--half { opacity: .5; }
.google-badge__text { text-align: left; }
.google-badge__score {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}
.google-badge__label {
  font-size: .78rem;
  color: var(--c-text-light);
  font-weight: 500;
}
.google-g { width: 32px; height: 32px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem;
  color: var(--c-teal);
  opacity: .25;
  line-height: 1;
  font-family: Georgia, serif;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-card__stars .star { width: 16px; height: 16px; }
.review-card p {
  font-size: .92rem;
  color: var(--c-text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.review-card footer { font-size: .82rem; color: var(--c-text-light); font-weight: 600; }
.review-card cite { font-style: normal; }

/* ─── OVER ONS ───────────────────────────── */
.over-ons {
  padding: var(--section-gap) 0;
  background: var(--c-white);
}
.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.over-ons__foto {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.over-ons__foto .img-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.over-ons__foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.over-ons__content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.over-ons__lead {
  color: var(--c-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.icon-list { display: flex; flex-direction: column; gap: 20px; }
.icon-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.icon-list__icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(122,168,168,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal-dark);
  margin-top: 2px;
}
.icon-list__icon svg { width: 20px; height: 20px; }
.icon-list li strong { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 2px; }
.icon-list li p { font-size: .875rem; color: var(--c-text-light); line-height: 1.5; }

/* ─── BEHANDELINGEN ──────────────────────── */
.behandelingen {
  padding: var(--section-gap) 0;
  background: var(--c-bg);
}
.behandelingen .card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card--behandeling {
  background: var(--c-white);
}
.card--behandeling-spoed .card__icon-wrap {
  background: rgba(90,138,138,.18);
  color: var(--c-teal-dark);
}

/* ─── INSCHRIJVEN ────────────────────────── */
.inschrijven {
  padding: var(--section-gap) 0;
  background: var(--c-white);
}
.inschrijven__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.inschrijven__tekst h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.inschrijven__tekst p {
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
}
.check-list svg { width: 18px; height: 18px; color: var(--c-teal-dark); flex-shrink: 0; }

/* ─── FORM CARD ──────────────────────────── */
.form-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-card--contact { background: var(--c-white); }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .85rem; font-weight: 600; color: var(--c-text); }
.form-row label span { color: var(--c-teal-dark); }
.form-row input, .form-row textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  color: var(--c-text);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(122,168,168,.2);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #aaa; }
.form-privacy { font-size: .78rem; color: var(--c-text-light); text-align: center; }

/* ─── SPOED BAND ─────────────────────────── */
.spoed-band {
  background: linear-gradient(135deg, var(--c-teal-deep) 0%, var(--c-teal-dark) 100%);
  padding: 64px 0;
}
.spoed-band__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.spoed-band__icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  flex-shrink: 0;
}
.spoed-band__icon svg { width: 28px; height: 28px; }
.spoed-band h2 { font-size: 1.5rem; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.spoed-band p { color: rgba(255,255,255,.85); line-height: 1.6; max-width: 480px; }
.spoed-band .btn--white-outline { margin-left: auto; flex-shrink: 0; }

/* ─── CONTACT ────────────────────────────── */
.contact {
  padding: var(--section-gap) 0;
  background: var(--c-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(122,168,168,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-teal-dark);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info h3 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.contact-info p { font-size: .9rem; color: var(--c-text-light); }
.contact-info a { color: var(--c-teal-dark); font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }

.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td {
  padding: 3px 0;
  font-size: .85rem;
  color: var(--c-text-light);
  vertical-align: top;
}
.hours-table td:first-child { padding-right: 16px; font-weight: 500; color: var(--c-text); white-space: nowrap; }
.hours-table--footer td { color: rgba(255,255,255,.75); }
.hours-table--footer td:first-child { color: rgba(255,255,255,.9); }

.contact-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ─── FOOTER ─────────────────────────────── */
.footer-kit {
  background: #1e3535;
  color: rgba(255,255,255,.85);
  padding-top: 64px;
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-kit__brand .logo { margin-bottom: 14px; }
.footer-kit__tagline { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-kit__col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: 16px;
}
.footer-kit__col ul li { margin-bottom: 10px; }
.footer-kit__col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
}
.footer-kit__col ul a:hover { color: var(--c-white); }
.footer-kit__col address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.footer-kit__col address svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--c-teal); }
.footer-kit__col address a { color: rgba(255,255,255,.85); }
.footer-kit__col address a:hover { color: var(--c-white); }
.footer-cta { margin-top: 16px; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-kit__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .over-ons__inner { grid-template-columns: 1fr; }
  .over-ons__foto { aspect-ratio: 16/9; }
  .inschrijven__inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }
  .desktop-nav { display: none; }
  .mobile-menu__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-grid--3 { grid-template-columns: 1fr; }
  .behandelingen .card-grid--3 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .spoed-band .btn--white-outline { margin-left: 0; width: 100%; justify-content: center; }
  .footer-kit__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .form-card { padding: 24px 18px; }
  .google-badge { flex-wrap: wrap; justify-content: center; text-align: center; }
}

/* ─── Medium breakpoint for 2-col treatment cards ── */
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .behandelingen .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Focus visible ──────────────────────── */
:focus-visible {
  outline: 2px solid var(--c-teal);
  outline-offset: 3px;
}

/* ─── Nav phone CTA ──────────────────────── */
.desktop-nav .nav-bel-btn {
  background: var(--c-teal);
  color: var(--c-white) !important;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: .875rem;
  transition: background .2s;
}
.desktop-nav .nav-bel-btn::after { display: none; }
.desktop-nav .nav-bel-btn:hover { background: var(--c-teal-dark); }

/* ─── Hero primary CTA (white fill, explicit class) ─ */
.btn--hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff;
  color: #2a5555;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: background .2s, color .2s, box-shadow .2s;
}
.btn--hero-primary:hover {
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.9);
  color: #2a5555;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
