@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

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

:root {
  --brand: #942f38;
  --brand-dark: #7d2831;
  --brand-light: #f5e6e8;
  --green-50: #f0fdf4;
  --green-200: #bbf7d0;
  --green-600: #16a34a;
  --gray-50: #f9fafb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #171717;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ================================
   PAGE WRAPPER
================================ */
.page-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #fff1f2 100%);
}

/* ================================
   NAVIGATION
================================ */
.main-nav {
  background: var(--brand);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .nav-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: -0.5rem;
}
.nav-logo {
  height: 6rem;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-site-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.25;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  color: white;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
  padding-bottom: 0.125rem;
}
.nav-links a:hover { color: #fecaca; }
.nav-links a.active {
  color: #fecaca;
  border-bottom: 2px solid #fecaca;
  padding-bottom: 0.25rem;
}

.nav-mobile-btn {
  display: flex;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
  line-height: 0;
}
.nav-mobile-btn:hover { color: #fecaca; }
@media (min-width: 768px) { .nav-mobile-btn { display: none; } }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--brand-dark);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  z-index: 50;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.visible { display: block; }
.mobile-menu.open { opacity: 1; transform: translateY(0); }

.mobile-menu-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu-inner a {
  color: white;
  font-weight: 500;
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, opacity 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateX(-1rem);
}
.mobile-menu-inner a:last-child { border-bottom: none; }
.mobile-menu-inner a:hover, .mobile-menu-inner a.active { color: #fecaca; }
.mobile-menu.open .mobile-menu-inner a { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-menu-inner a:nth-child(1) { transition-delay: 0ms; }
.mobile-menu.open .mobile-menu-inner a:nth-child(2) { transition-delay: 50ms; }
.mobile-menu.open .mobile-menu-inner a:nth-child(3) { transition-delay: 100ms; }
.mobile-menu.open .mobile-menu-inner a:nth-child(4) { transition-delay: 150ms; }
.mobile-menu.open .mobile-menu-inner a:nth-child(5) { transition-delay: 200ms; }
.mobile-menu.open .mobile-menu-inner a:nth-child(6) { transition-delay: 250ms; }

/* ================================
   PAGE LOAD ANIMATIONS
================================ */
.anim {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1s ease, transform 1s ease;
}
body.loaded .anim { opacity: 1; transform: translateY(0); }
body.loaded .d1 { transition-delay: 0.3s; }
body.loaded .d2 { transition-delay: 0.5s; }
body.loaded .d3 { transition-delay: 0.7s; }
body.loaded .d4 { transition-delay: 0.8s; }
body.loaded .d5 { transition-delay: 0.9s; }
body.loaded .d6 { transition-delay: 1.0s; }
body.loaded .d7 { transition-delay: 1.2s; }

/* ================================
   LAYOUT
================================ */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn-brand {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover { background: var(--brand-light); }
.btn-outline-dark {
  background: transparent;
  color: #9f1239;
  border-color: #9f1239;
}
.btn-outline-dark:hover { background: #fff1f2; }
.btn-disabled {
  background: #9ca3af;
  color: white;
  border-color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.8;
}

/* ================================
   CARDS
================================ */
.card {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e5e5;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-xl); }
.card-no-hover:hover { box-shadow: var(--shadow-lg); }
.card-brand-light { background: var(--brand-light); border-color: var(--brand-light); }
.card-green { background: var(--green-50); border-color: var(--green-200); }
.card-gray { background: var(--gray-50); border-color: #e5e7eb; }
.card-no-border { border: none; }

.card-header { padding: 1.5rem 1.5rem 0; text-align: center; }
.card-content { padding: 1rem 1.5rem 1.5rem; }
.card-header + .card-content { padding-top: 0.75rem; }

/* ================================
   ICON CIRCLE
================================ */
.icon-circle {
  width: 4rem;
  height: 4rem;
  background: var(--brand-light);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

/* ================================
   TYPOGRAPHY
================================ */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.25;
}
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 1024px) { .page-title { font-size: 3rem; } }

.text-brand { color: var(--brand); }
.text-gray { color: var(--gray-600); }
.text-sm { font-size: 0.875rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.italic { font-style: italic; }

/* ================================
   BACK LINK
================================ */
.back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-weight: 500;
  transition: color 0.2s;
  padding: 2rem 1rem 0;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .back-link { padding: 2rem 1.5rem 0; } }
@media (min-width: 1024px) { .back-link { padding: 2rem 2rem 0; } }
.back-link:hover { color: var(--brand-dark); }

/* ================================
   HERO (home page)
================================ */
.hero-section { padding: 5rem 1rem; }
@media (min-width: 640px) { .hero-section { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .hero-section { padding: 5rem 2rem; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }

.hero-highlight { color: var(--brand); font-weight: 900; }

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btns { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }

.hero-logo-wrap { display: flex; justify-content: center; }
.hero-logo {
  width: 20rem;
  height: auto;
  opacity: 0.9;
}

/* ================================
   EMERGENCY BANNER
================================ */
.emergency-banner {
  background: var(--brand-light);
  color: var(--brand);
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) { .emergency-banner { padding: 1.5rem 1.5rem; } }
@media (min-width: 1024px) { .emergency-banner { padding: 1.5rem 2rem; } }

.emergency-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .emergency-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

.emergency-left { display: flex; align-items: center; gap: 0.75rem; }
.emergency-title { font-weight: 700; font-size: 1.125rem; }
.emergency-note { font-size: 0.875rem; margin-top: 0.125rem; }
.emergency-right { text-align: center; }
@media (min-width: 768px) { .emergency-right { text-align: right; } }

.emergency-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  display: block;
}
.emergency-phone:hover { text-decoration: underline; }
.emergency-names { font-size: 0.875rem; color: var(--brand); }

/* ================================
   SERVICES SECTION
================================ */
.services-section {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
}
@media (min-width: 640px) { .services-section { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .services-section { padding: 5rem 2rem; } }

.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
}
.services-content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}
.services-header { text-align: center; margin-bottom: 4rem; }

.grid-4 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: none;
  transition: box-shadow 0.3s;
  text-align: center;
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.service-card-desc { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; }

/* ================================
   MEMBERSHIP SECTION
================================ */
.membership-section {
  padding: 5rem 1rem;
  background: var(--gray-50);
}
@media (min-width: 640px) { .membership-section { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .membership-section { padding: 5rem 2rem; } }

.membership-header { text-align: center; margin-bottom: 4rem; }
.membership-wrap { max-width: 72rem; margin: 0 auto; }

.membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
}
@media (min-width: 1024px) {
  .membership-grid {
    grid-template-columns: 2fr 1fr;
    padding: 3rem;
  }
}

.membership-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.benefit-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--brand);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.125rem;
}
.benefit-text { color: var(--gray-700); line-height: 1.6; }

.membership-img-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.membership-img {
  width: 100%;
  max-width: 20rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

/* ================================
   GALLERY SECTION
================================ */
.gallery-section {
  padding: 0 1rem 4rem;
  background: var(--gray-50);
}
@media (min-width: 640px) { .gallery-section { padding: 0 1.5rem 4rem; } }
@media (min-width: 1024px) { .gallery-section { padding: 0 2rem 4rem; } }

.gallery-wrap { max-width: 72rem; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

.gallery-item { position: relative; overflow: hidden; border-radius: 0.5rem; box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  pointer-events: none;
}
.gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ================================
   CONTACT SECTION (home)
================================ */
.contact-section {
  padding: 5rem 1rem;
}
@media (min-width: 640px) { .contact-section { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .contact-section { padding: 5rem 2rem; } }

.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-wrap { max-width: 42rem; margin: 0 auto; }

.emergency-card {
  background: var(--brand-light);
  border-color: var(--brand-light);
  margin-bottom: 2rem;
}
.emergency-card-header {
  padding: 1.5rem 1.5rem 0.5rem;
  text-align: center;
}
.emergency-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand);
}
.emergency-card-content { padding: 0.75rem 1.5rem 1.5rem; text-align: center; }

.big-phone {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 0.5rem;
}
.big-phone:hover { text-decoration: underline; }

.contact-cta { text-align: center; }

/* ================================
   FOOTER
================================ */
footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 1rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    text-align: left;
  }
}

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo { height: 2rem; width: auto; filter: brightness(0) invert(1); }
.footer-name { font-weight: 600; }
.footer-tagline { color: var(--gray-400); font-size: 0.875rem; }

.footer-right { text-align: center; }
@media (min-width: 768px) { .footer-right { text-align: right; } }
.footer-right p { color: var(--gray-400); font-size: 0.875rem; }
.footer-dev { color: var(--gray-500); font-size: 0.75rem; margin-top: 0.5rem; }

/* ================================
   SUBPAGE SECTIONS
================================ */
.subpage-header {
  padding: 3rem 1rem;
  text-align: center;
}
@media (min-width: 640px) { .subpage-header { padding: 3rem 1.5rem; } }
@media (min-width: 1024px) { .subpage-header { padding: 3rem 2rem; } }

.subpage-header .page-title { margin-bottom: 1rem; }
.subpage-header .section-subtitle { margin: 0 auto; }

.section-pad {
  padding: 3rem 1rem;
}
@media (min-width: 640px) { .section-pad { padding: 3rem 1.5rem; } }
@media (min-width: 1024px) { .section-pad { padding: 3rem 2rem; } }

.section-pad-lg {
  padding: 5rem 1rem;
}
@media (min-width: 640px) { .section-pad-lg { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .section-pad-lg { padding: 5rem 2rem; } }

.section-center { text-align: center; }
.section-inner { max-width: 80rem; margin: 0 auto; }
.section-inner-lg { max-width: 72rem; margin: 0 auto; }
.section-inner-md { max-width: 56rem; margin: 0 auto; }

/* ================================
   BOARD PAGE
================================ */
.board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .board-grid { grid-template-columns: 1fr 2fr; } }

.board-photo { width: 100%; border-radius: 0.5rem; display: block; }
.board-photo-caption {
  color: var(--gray-600);
  font-style: italic;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .members-grid { grid-template-columns: 1fr 1fr; } }

.member-card { text-align: center; }
.member-name { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem; }
.member-role { font-weight: 500; color: var(--brand); margin-bottom: 1rem; font-size: 0.9375rem; }

.member-contacts { display: flex; flex-direction: column; gap: 0.75rem; text-align: left; }
.member-contact-row { display: flex; align-items: flex-start; gap: 0.5rem; }
.member-contact-row svg { color: var(--brand); flex-shrink: 0; margin-top: 0.125rem; width: 1rem; height: 1rem; }
.member-contact-row a {
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: color 0.2s;
  word-break: break-all;
}
.member-contact-row a:hover { color: var(--brand); }
.member-contact-row span { font-size: 0.875rem; color: var(--gray-600); }

.directors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .directors-grid { grid-template-columns: 1fr 1fr; } }

.director-note { font-size: 0.875rem; color: var(--gray-600); margin-top: 1rem; }

/* ================================
   CTA SECTION
================================ */
.cta-section { padding: 3rem 1rem; text-align: center; }
@media (min-width: 640px) { .cta-section { padding: 3rem 1.5rem; } }
@media (min-width: 1024px) { .cta-section { padding: 3rem 2rem; } }

.cta-inner { max-width: 56rem; margin: 0 auto; }
.cta-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.cta-text { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; }
.cta-btns { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .cta-btns { flex-direction: row; } }

/* ================================
   CONTACT PAGE
================================ */
.contact-persons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .contact-persons-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-person-card { text-align: center; }
.person-name { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem; }
.person-role { font-weight: 500; color: var(--brand); font-size: 0.9375rem; }
.person-desc { color: var(--gray-600); margin: 1rem 0; }
.phone-link { color: var(--brand); font-weight: 500; display: block; transition: color 0.2s; }
.phone-link:hover { color: var(--brand-dark); }
.phone-link-alt { color: var(--gray-600); font-size: 0.875rem; display: block; transition: color 0.2s; margin-top: 0.25rem; }
.phone-link-alt:hover { color: var(--brand); }

.email-card-content { padding: 2rem; text-align: center; }
.email-icon { margin: 0 auto 1rem; }
.email-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.email-desc { color: var(--gray-600); margin-bottom: 1.5rem; }
.email-link { font-size: 1.25rem; font-weight: 600; color: var(--brand); }
.email-link:hover { color: var(--brand-dark); }

/* ================================
   LIDMAATSCHAP PAGE
================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.contribution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) { .contribution-grid { grid-template-columns: 1fr 1fr; } }

.contribution-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  margin-bottom: 0.5rem;
}

.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-item svg { color: var(--brand); flex-shrink: 0; margin-top: 0.125rem; }
.check-item span { color: var(--gray-700); }

.buy-in-text { color: var(--gray-700); text-align: center; margin-bottom: 1rem; }
.buy-in-example {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.buy-in-example p { color: var(--gray-600); margin-bottom: 0.5rem; }
.buy-in-benefit { color: var(--green-600); font-weight: 600; font-size: 1.125rem; }

.contact-person-card-inner { text-align: center; }
.cp-name { font-size: 1.25rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.cp-role { font-weight: 500; color: var(--brand); margin-bottom: 1rem; }
.cp-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  display: block;
  margin-bottom: 1rem;
}
.cp-phone:hover { color: var(--brand-dark); text-decoration: underline; }
.cp-note { color: var(--gray-600); }

/* ================================
   RUSTPLAATS PAGE
================================ */
.cemetery-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .cemetery-images { grid-template-columns: 1fr 1fr; } }

.cemetery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}
.cemetery-img-wrap img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.cemetery-img-wrap:hover img { transform: scale(1.05); }
.cemetery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}
.cemetery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
}
.cemetery-caption h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.125rem; }
.cemetery-caption p { font-size: 0.875rem; color: rgba(255,255,255,0.9); }

.location-card-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .location-card-grid { grid-template-columns: 1fr 1fr; } }

.location-map-side {
  position: relative;
  min-height: 24rem;
  background: white;
}
.location-map-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .location-content { padding: 3rem; } }
.location-content svg { color: var(--brand); margin: 0 auto 1rem; }
@media (min-width: 1024px) { .location-content svg { margin: 0 0 1rem; } }
.location-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; text-align: center; }
@media (min-width: 1024px) { .location-title { text-align: left; } }
.location-address { font-size: 1.125rem; color: var(--brand); margin-bottom: 1rem; text-align: center; }
@media (min-width: 1024px) { .location-address { text-align: left; } }
.location-description { color: var(--gray-700); line-height: 1.6; text-align: center; }
@media (min-width: 1024px) { .location-description { text-align: left; } }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.improvements-list { display: flex; flex-direction: column; gap: 1rem; }
.improvements-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.improvements-item svg { color: var(--green-600); flex-shrink: 0; margin-top: 0.125rem; }
.improvements-item span { color: var(--gray-700); }

/* ================================
   WENSENLIJST PAGE
================================ */
.why-card-content {
  padding: 2rem;
  text-align: center;
}
.why-title { font-size: 1.875rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.why-desc { font-size: 1.125rem; color: var(--gray-700); line-height: 1.6; }

.process-list { display: flex; flex-direction: column; gap: 1.5rem; }
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
}
.process-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--brand);
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.process-step-title { font-size: 1.25rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.5rem; }
.process-step-desc { color: var(--gray-600); }

.download-card-content { padding: 2rem; text-align: center; }
.download-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.download-desc { color: var(--gray-600); margin-bottom: 1.5rem; }

.support-card { text-align: center; }
.support-title { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.support-desc { color: var(--gray-700); line-height: 1.6; margin-bottom: 1.5rem; }

/* ================================
   SVG ICON HELPERS
================================ */
.icon-brand-sm { display: inline-flex; color: var(--brand); }
.icon-green-sm { display: inline-flex; color: var(--green-600); }
.icon-gray-sm { display: inline-flex; color: var(--gray-400); }

/* Inline SVG sizing in icon circles */
.icon-circle svg { width: 2rem; height: 2rem; }

/* Centers */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin helpers */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
