@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0f1f3d;
  --navy-light: #1a3260;
  --red: #c0392b;
  --red-light: #e74c3c;
  --cream: #f8f5f0;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --border: #e2e5ea;
  --green: #16a34a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── HEADER ──────────────────────────────────────────────── */
header {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.3px;
}
.logo-text span { color: #e88080; }

nav { display: flex; gap: 2rem; align-items: center; }
nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
nav a:hover { color: white; text-decoration: none; }
nav .cta {
  background: var(--red);
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px 2rem;
  font-size: 0.82rem;
  margin-top: 60px;
}
footer a { color: rgba(255,255,255,0.5); }
footer a:hover { color: white; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a5f 100%);
  padding: 80px 2rem 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: #e88080;
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white; line-height: 1.15;
  margin-bottom: 16px; font-weight: 700;
}
.hero h1 em { font-style: normal; color: #e88080; }
.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem; font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ─── SEARCH ──────────────────────────────────────────────── */
.search-box {
  background: white; border-radius: 16px; padding: 8px;
  max-width: 620px; margin: 0 auto;
  display: flex; gap: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative; z-index: 1;
}
.search-field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--gray-light); border-radius: 10px;
}
.search-field input {
  border: none; background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--navy);
  width: 100%; outline: none;
}
.search-field input::placeholder { color: var(--gray); }
.search-btn {
  background: var(--red); color: white; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.search-btn:hover { background: var(--red-light); }

.hero-stats {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 28px; flex-wrap: wrap;
}
.stat-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.82rem;
}
.stat-pill strong { color: white; }

/* ─── CONTAINER ───────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ─── SECTIE HEADER ───────────────────────────────────────── */
.sectie-header { text-align: center; margin: 60px 0 32px; }
.sectie-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  margin-bottom: 8px;
}
.sectie-header p { color: var(--gray); font-size: 1rem; }

/* ─── PROVINCIES GRID ─────────────────────────────────────── */
.provincies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 60px;
}
.provincie-card {
  background: white; border-radius: 12px;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: var(--navy);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.provincie-card:hover {
  border-color: var(--red); color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(192,57,43,0.1);
  text-decoration: none;
}
.provincie-naam { font-weight: 500; font-size: 0.95rem; }
.provincie-count {
  background: var(--gray-light);
  color: var(--gray);
  padding: 3px 10px; border-radius: 12px;
  font-size: 0.8rem; font-weight: 500;
}

/* ─── ARTS CARDS (homepage featured) ─────────────────────── */
.arts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
}
.arts-card {
  background: white; border-radius: 14px;
  padding: 20px; border: 1.5px solid var(--border);
  transition: all 0.2s; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 12px;
}
.arts-card:hover {
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(192,57,43,0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.arts-card-header { display: flex; align-items: center; gap: 14px; }
.arts-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; flex-shrink: 0;
}
.arts-naam { font-weight: 600; font-size: 1rem; }
.arts-specialisme { color: var(--gray); font-size: 0.82rem; margin-top: 2px; }
.arts-adres { color: var(--gray); font-size: 0.85rem; }
.arts-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.arts-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto;
}
.arts-tel { color: var(--gray); font-size: 0.85rem; }
.btn-afspraak {
  background: var(--red); color: white;
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.btn-afspraak:hover { background: var(--red-light); text-decoration: none; }

/* ─── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 12px;
  font-size: 0.75rem; font-weight: 500;
}
.badge-conv    { background: #dcfce7; color: #15803d; }
.badge-partial { background: #fef9c3; color: #a16207; }
.badge-none    { background: #fee2e2; color: #b91c1c; }
.badge-afspraak { background: #dbeafe; color: #1d4ed8; }

/* ─── PAGE HEADER (gemeente/detail) ──────────────────────── */
.page-header {
  background: var(--navy);
  padding: 40px 2rem 50px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb a:hover { color: white; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: white; font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700; position: relative; z-index: 1;
}
.page-header p { color: rgba(255,255,255,0.65); margin-top: 8px; position: relative; z-index: 1; }
.page-header-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 16px; position: relative; z-index: 1;
}

/* ─── FILTERS ─────────────────────────────────────────────── */
.filters-bar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 12px 2rem;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 16px; border-radius: 20px;
  border: 1.5px solid var(--border);
  background: none; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; cursor: pointer;
  color: var(--gray); transition: all 0.15s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: white; border-color: var(--navy);
}

/* ─── GEMEENTE LIJST ──────────────────────────────────────── */
.arts-list { display: flex; flex-direction: column; gap: 12px; }
.arts-list-item {
  background: white; border-radius: 12px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  border: 1.5px solid var(--border);
  transition: all 0.2s; text-decoration: none; color: inherit;
}
.arts-list-item:hover {
  border-left: 4px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-decoration: none;
}
.arts-list-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
}
.arts-list-info { flex: 1; min-width: 0; }
.arts-list-naam { font-weight: 600; font-size: 1rem; }
.arts-list-sub { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }
.arts-list-badges { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.arts-list-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-tel {
  padding: 9px 16px; border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white; color: var(--navy);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.btn-tel:hover { border-color: var(--navy); text-decoration: none; }

/* ─── PAGINERING ──────────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin: 32px 0; list-style: none;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem; color: var(--navy); text-decoration: none;
  transition: all 0.15s;
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .active span, .pagination li.active a {
  background: var(--red); color: white; border-color: var(--red);
}

/* ─── DETAIL PAGINA ───────────────────────────────────────── */
.detail-layout {
  max-width: 800px; margin: 0 auto;
  padding: 32px 2rem 60px;
  display: flex; flex-direction: column; gap: 20px;
}
.card {
  background: white; border-radius: 14px;
  padding: 28px; border: 1.5px solid var(--border);
}
.card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}

/* Hero card */
.arts-hero-card { padding: 28px; }
.arts-hero-header {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 20px;
}
.arts-hero-avatar {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
}
.arts-hero-naam {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; line-height: 1.2;
}
.arts-hero-sub { color: var(--gray); font-size: 0.9rem; margin: 6px 0 12px; }
.arts-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-light); color: var(--gray);
  padding: 6px 12px; border-radius: 20px; font-size: 0.82rem;
}
.arts-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: white;
  padding: 12px 22px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--red-light); text-decoration: none; }
.btn-secondary {
  background: white; color: var(--navy);
  padding: 12px 22px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  border: 1.5px solid var(--border);
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { border-color: var(--navy); text-decoration: none; }

/* Contact grid */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.contact-label { font-size: 0.78rem; color: var(--gray); margin-bottom: 2px; }
.contact-value { font-weight: 500; font-size: 0.9rem; }
.contact-value a { color: var(--navy); }
.contact-value a:hover { color: var(--red); }

/* Openingsuren */
.uren-table { width: 100%; border-collapse: collapse; }
.uren-table tr { border-bottom: 1px solid var(--border); }
.uren-table tr:last-child { border-bottom: none; }
.uren-table td { padding: 9px 0; font-size: 0.88rem; }
.uren-table .dag { color: var(--gray); width: 100px; }
.uren-table .vandaag td { font-weight: 600; color: var(--navy); }
.dag-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.open-dot { background: #16a34a; }
.gesloten-dot { background: #9ca3af; }

/* Specialisaties tags */
.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-tag {
  background: rgba(192,57,43,0.08);
  color: var(--red);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.85rem;
}

/* Praktijkinfo grid */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-item { }
.info-label { font-size: 0.78rem; color: var(--gray); margin-bottom: 4px; }
.info-value { font-weight: 500; font-size: 0.9rem; }

/* Kaart */
.map-wrap {
  border-radius: 10px; overflow: hidden;
  height: 240px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--gray); font-size: 0.88rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* Foto */
.praktijk-foto {
  width: 100%; height: 180px; border-radius: 10px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gray); gap: 8px; font-size: 0.85rem;
  border: 2px dashed var(--border);
}

/* Tarieven */
.tarief-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.tarief-row:last-of-type { border-bottom: none; }
.tarief-label-small { color: var(--gray); font-size: 0.82rem; display: block; margin-top: 2px; }
.tarief-prijs { font-weight: 600; font-size: 1rem; }
.tarief-eigen { color: var(--green); font-weight: 500; font-size: 0.85rem; }

/* Reviews */
.rating-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.rating-big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; }
.rating-stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 4px; }
.rating-count { font-size: 0.82rem; color: var(--gray); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--gray); }
.rating-bar-row span:first-child { width: 14px; text-align: right; }
.bar-track { flex: 1; height: 6px; background: var(--gray-light); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: #f59e0b; border-radius: 3px; }
.bar-count { width: 20px; }
.review-list { display: flex; flex-direction: column; gap: 20px; }
.review-item { padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; font-weight: 600;
}
.reviewer-name { font-weight: 500; font-size: 0.9rem; }
.reviewer-date { font-size: 0.78rem; color: var(--gray); }
.review-stars { color: #f59e0b; font-size: 0.95rem; }
.review-text { font-size: 0.88rem; color: #374151; line-height: 1.7; }
.add-review-btn {
  width: 100%; margin-top: 20px;
  border: 1.5px dashed var(--border); background: none;
  padding: 13px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--gray); cursor: pointer; transition: all 0.15s;
}
.add-review-btn:hover { border-color: var(--red); color: var(--red); }

/* Review formulier */
.review-form { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.review-form.open { display: block; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.star-rating { display: flex; gap: 4px; font-size: 1.8rem; cursor: pointer; color: #d1d5db; }
.star-rating .star:hover, .star-rating .star.selected { color: #f59e0b; }
.btn-submit {
  background: var(--red); color: white; border: none;
  padding: 11px 24px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-light); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 16px 0;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-question:hover { color: var(--red); }
.faq-icon { color: var(--red); font-size: 1.1rem; transition: transform 0.2s; }
.faq-answer { font-size: 0.88rem; color: var(--gray); line-height: 1.75; padding-bottom: 16px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Nearby */
.nearby-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nearby-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: 10px; border: 1.5px solid var(--border);
  text-decoration: none; color: inherit; transition: all 0.2s;
}
.nearby-card:hover { border-color: var(--red); text-decoration: none; }
.nearby-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; font-weight: 600;
}
.nearby-naam { font-weight: 500; font-size: 0.88rem; }
.nearby-sub { font-size: 0.78rem; color: var(--gray); }

/* Info strip */
.info-strip {
  background: var(--navy);
  padding: 40px 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; text-align: center;
}
.info-strip-item { color: white; }
.info-strip-icon { font-size: 1.8rem; margin-bottom: 10px; }
.info-strip-title { font-weight: 600; margin-bottom: 6px; }
.info-strip-text { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* SEO tekst */
.seo-tekst {
  background: white; border-radius: 14px;
  padding: 28px; margin: 32px 0;
  border: 1.5px solid var(--border);
}
.seo-tekst h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 12px; }
.seo-tekst p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; }

/* Zoekresultaten autocomplete */
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: white; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden; z-index: 200; display: none;
}
.search-result-item {
  padding: 12px 16px; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--gray-light); }
.search-result-icon { color: var(--gray); }

/* Responsief */
@media (max-width: 768px) {
  header { padding: 0 1rem; }
  nav { gap: 1rem; }
  nav a:not(.cta) { display: none; }
  .container { padding: 0 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; gap: 20px; }
  .arts-list-actions { flex-direction: column; gap: 6px; }
  .arts-hero-avatar { width: 64px; height: 64px; font-size: 1.5rem; }
  .arts-hero-naam { font-size: 1.4rem; }
  .detail-layout { padding: 16px 1rem 40px; }
}

@media (max-width: 600px) {
  .provincies-grid { grid-template-columns: 1fr 1fr; }
  .arts-grid { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; }
}
