/* =====================================================
   UITVAARTMUZIEK.BE – Hoofdstijlblad
   Kleurpalet gebaseerd op de originele Wix-site:
   teal/mint achtergrond, wit, donker charcoal tekst
   ===================================================== */

/* ---------- CSS Variabelen ---------- */
:root {
  --teal-donker:  #2a4442;   /* header titel, donkere tekst */
  --teal-midden:  #3a7269;   /* accent, links, actieve nav */
  --teal-licht:   #5a9085;   /* subtitels, secundaire elementen */
  --mint-bg:      #d4e8e3;   /* sectie-achtergrond (mint) */
  --mint-licht:   #eaf3f0;   /* alternatief, zeer licht */
  --wit:          #ffffff;
  --tekst:        #2a3535;   /* body tekst */
  --tekst-licht:  #4a5e5c;   /* secundaire tekst */
  --rand:         #c8ddd8;   /* randen */
  --schaduw:      rgba(42, 68, 66, 0.08);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  background: var(--mint-licht);
  color: var(--tekst);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  color: var(--teal-donker);
  margin-top: 0;
}

a, a:visited {
  color: var(--teal-midden);
  text-decoration: none;
  transition: color 0.18s;
}
a:hover { color: var(--teal-donker); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ---------- HEADER ---------- */
.site-header {
  background: var(--wit);
  border-bottom: 1px solid var(--rand);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--schaduw);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  gap: 24px;
}

/* Branding: logo */
.site-branding { flex-shrink: 0; }

.site-logo-link { display: block; text-decoration: none !important; line-height: 0; }

.site-logo {
  height: 56px;
  width: auto;
  display: block;
}

.site-title-link { text-decoration: none !important; }

.site-title {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal-donker);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.site-tagline {
  display: block;
  font-size: 0.85rem;
  color: var(--teal-licht);
  font-style: italic;
  font-weight: 300;
  margin-top: 2px;
}

/* Navigatie */
.hoofdmenu { flex-shrink: 0; }

.menu-list {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.menu-list li { display: inline; }

.menu-list a {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--tekst);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  letter-spacing: 0.3px;
}

.menu-list a:hover,
.menu-list .current-menu-item > a,
.menu-list .current_page_item > a {
  color: var(--teal-midden);
  border-bottom-color: var(--teal-midden);
  text-decoration: none;
}

/* Dropdown submenu */
.menu-list li { position: relative; }

.menu-list li > ul.sub-menu {
  /* Geen display:none — gebruik visibility/opacity zodat er geen hover-gap is */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;          /* direct aansluitend, geen gap */
  left: 0;
  background: var(--wit);
  border-top: 2px solid var(--teal-midden);
  box-shadow: 0 8px 28px var(--schaduw);
  min-width: 230px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 200;
  border-radius: 0 0 6px 6px;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.menu-list li:hover > ul.sub-menu,
.menu-list li.open > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-list li > ul.sub-menu li { display: block; width: 100%; }

.menu-list li > ul.sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-bottom: none;
  color: var(--tekst);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.menu-list li > ul.sub-menu a:hover {
  background: var(--mint-licht);
  color: var(--teal-midden);
  border-bottom: none;
}

/* Pijltje naast menu-item met submenu */
.menu-list li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 0.75em;
  opacity: 0.6;
}

/* Hamburger (mobiel) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-donker);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO: gesplitste lay-out ---------- */
.hero-split {
  display: flex;
  min-height: 480px;
  background: var(--mint-bg);
}

.hero-foto {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.hero-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-tekst {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  background: var(--wit);
}

.hero-condoleance {
  font-size: 0.95rem;
  color: var(--teal-licht);
  font-style: italic;
  margin: 0 0 16px 0;
}

.hero-heading {
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal-donker);
  margin: 0 0 28px 0;
  line-height: 1.1;
}

.hero-tekst p {
  color: var(--tekst);
  font-size: 0.97rem;
  margin: 0 0 14px 0;
  max-width: 480px;
}

/* ---------- SECTIES (content blokken) ---------- */
.sectie {
  padding: 80px 40px;
}

.sectie-licht { background: var(--mint-licht); }
.sectie-wit   { background: var(--wit); }
.sectie-mint  { background: var(--mint-bg); }

.sectie-inhoud {
  max-width: 860px;
  margin: 0 auto;
}

.sectie h2 {
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal-donker);
  margin-bottom: 20px;
}

.sectie p {
  font-size: 0.97rem;
  color: var(--tekst);
  margin: 0 0 16px 0;
}

.sectie-sub {
  color: var(--teal-licht) !important;
  font-style: italic;
  margin-bottom: 36px !important;
}

/* ---------- CONTACTSECTIE ---------- */
.sectie-contact-wrap {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  max-width: 1000px;
}

.contact-info { flex: 1; }

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-gegevens {
  list-style: none;
  padding: 0;
  margin: 28px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-gegevens li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
}

.contact-icoon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.contact-gegevens a {
  color: var(--teal-midden);
  font-weight: 400;
}

/* Formulier */
.contact-formulier { flex: 1; }

.formulier-rij {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.formulier-rij label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--teal-donker);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.formulier-rij input,
.formulier-rij textarea {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--tekst);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  width: 100%;
}

.formulier-rij input:focus,
.formulier-rij textarea:focus {
  border-color: var(--teal-midden);
  box-shadow: 0 0 0 3px rgba(58, 114, 105, 0.12);
}

.formulier-rij textarea { resize: vertical; min-height: 120px; }

.btn-verstuur,
a.btn-verstuur,
a.btn-verstuur:link,
a.btn-verstuur:visited {
  background: var(--teal-midden);
  color: var(--wit);
  border: none;
  border-radius: 4px;
  padding: 14px 36px;
  font-size: 0.97rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-verstuur:hover,
a.btn-verstuur:hover,
a.btn-verstuur:focus  { background: var(--teal-donker); color: var(--wit); text-decoration: none; }
.btn-verstuur:active { transform: scale(0.98); }

.formulier-melding {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.formulier-melding.succes {
  background: #e6f4f0;
  border: 1px solid var(--teal-midden);
  color: var(--teal-donker);
}
.formulier-melding.fout {
  background: #fdf0f0;
  border: 1px solid #c97a7a;
  color: #7a2020;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--teal-donker);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 40px;
}

.footer-merk {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}

.footer-beschrijving {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0 0 14px;
  font-size: 0.87rem;
}

.footer-contact-klein a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  line-height: 1.8;
  font-size: 0.87rem;
  transition: color 0.15s;
}
.footer-contact-klein a:hover { color: #fff; }

.footer-kolom h4 {
  color: rgba(255,255,255,0.9);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 14px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 40px;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: #fff; }

/* ---------- PAGINATITEL (generieke pagina's) ---------- */
.pagina-header {
  text-align: center;
  padding: 72px 40px 40px;
  background: var(--wit);
}

.pagina-header h1 {
  font-size: 2.8rem;
  font-weight: 300;
  margin: 0 0 10px 0;
}

.pagina-header .pagina-sub {
  font-size: 1.05rem;
  color: var(--teal-midden);
  font-style: italic;
  margin: 0;
}

/* ---------- PAGINA-HEADER VARIANTEN ---------- */
.pagina-header-groot { padding: 80px 40px 52px; }
.pagina-header-groot h1 { font-size: 3.2rem; }

.sectie-intro-groot {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--tekst-licht);
}

/* ---------- CTA-SECTIE ---------- */
.sectie-cta {
  background: var(--teal-donker);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 72px 40px;
}
.sectie-cta h2 { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.sectie-cta p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

.btn-secundair,
a.btn-secundair,
a.btn-secundair:link,
a.btn-secundair:visited {
  display: inline-block;
  background: var(--wit);
  color: var(--teal-donker);
  border: 2px solid var(--teal-midden);
  border-radius: 4px;
  padding: 13px 32px;
  font-size: 0.97rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-secundair:hover,
a.btn-secundair:hover,
a.btn-secundair:focus { background: var(--teal-midden); color: var(--wit); text-decoration: none; }
.sectie-cta .btn-secundair,
.sectie-cta a.btn-secundair,
.sectie-cta a.btn-secundair:link,
.sectie-cta a.btn-secundair:visited { background: transparent; border-color: rgba(255,255,255,0.6); color: #fff; }
.sectie-cta .btn-secundair:hover,
.sectie-cta a.btn-secundair:hover { background: rgba(255,255,255,0.15); color: #fff; }
.sectie-cta .btn-verstuur { background: var(--teal-licht); }
.sectie-cta .btn-verstuur:hover { background: var(--teal-midden); }

/* ---------- HOE-KIEZEN PAGINA ---------- */
.hoogtepunten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.hoogtepunt {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 8px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.hoogtepunt:hover { box-shadow: 0 6px 24px var(--schaduw); transform: translateY(-3px); }

.hoogtepunt-nummer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--rand);
  line-height: 1;
  margin-bottom: 10px;
}
.hoogtepunt h3 { font-size: 1rem; color: var(--teal-donker); margin-bottom: 8px; }
.hoogtepunt p  { font-size: 0.88rem; color: var(--tekst-licht); margin: 0; }

/* Repertoire */
.repertoire-kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-top: 28px;
}
.repertoire-categorie h3 { font-size: 1rem; color: var(--teal-midden); margin-bottom: 12px; border-bottom: 1px solid var(--rand); padding-bottom: 8px; }
.repertoire-lijst { list-style: none; padding: 0; margin: 0; }
.repertoire-lijst li { padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid var(--mint-licht); color: var(--tekst); }
.repertoire-lijst li::before { content: '♩ '; color: var(--teal-licht); }

/* Factoren */
.factoren-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.factor-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 0.93rem;
}
.factor-icoon { font-size: 1.3rem; flex-shrink: 0; }

/* Hoe werken stappen */
.hoe-werken-stappen { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.stap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--mint-licht);
  border-left: 3px solid var(--teal-midden);
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
}
.stap-nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--teal-midden);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}
.stap p { margin: 4px 0 0; font-size: 0.92rem; color: var(--tekst-licht); }

/* ---------- VERLOOP PAGINA ---------- */
.faq-blok {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rand);
}
.faq-blok:last-child { border-bottom: none; }
.faq-blok h2 { font-size: 1.35rem; color: var(--teal-donker); margin-bottom: 10px; }

.liturgie-tabel-wrap { overflow-x: auto; margin-top: 28px; }
.liturgie-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.liturgie-tabel th {
  background: var(--teal-donker);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
}
.liturgie-tabel td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--mint-licht);
  vertical-align: top;
}
.liturgie-tabel tr:nth-child(even) td { background: var(--mint-licht); }
.liturgie-tabel tr:hover td { background: var(--mint-bg); }

/* ---------- MUZIEK & ROUW PAGINA ---------- */
.artikel-kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.artikel-item {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 8px;
  padding: 24px 22px;
}
.artikel-item h3 { font-size: 1.05rem; color: var(--teal-donker); margin-bottom: 10px; }
.artikel-item p  { font-size: 0.9rem; color: var(--tekst-licht); margin: 0; }

.culturen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.cultuur-item {
  background: var(--mint-licht);
  border-left: 3px solid var(--teal-midden);
  border-radius: 0 6px 6px 0;
  padding: 20px 18px;
}
.cultuur-item h3 { font-size: 1rem; color: var(--teal-donker); margin-bottom: 8px; }
.cultuur-item p  { font-size: 0.88rem; color: var(--tekst-licht); margin: 0; }

/* ---------- PLAYLIST TIPS PAGINA ---------- */
.tips-lijst { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.tip-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rand);
  align-items: flex-start;
}
.tip-item:last-child { border-bottom: none; }
.tip-nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--rand);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}
.tip-inhoud h3 { font-size: 1.1rem; color: var(--teal-donker); margin-bottom: 8px; }
.tip-inhoud p  { font-size: 0.93rem; color: var(--tekst-licht); margin: 0; }

.voordelen-live { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 28px; }
.voordeel {
  display: flex;
  gap: 14px;
  background: var(--mint-licht);
  border-radius: 8px;
  padding: 20px 18px;
}
.voordeel-icoon { font-size: 1.6rem; flex-shrink: 0; }
.voordeel strong { display: block; color: var(--teal-donker); margin-bottom: 4px; font-size: 0.95rem; }
.voordeel p { font-size: 0.88rem; color: var(--tekst-licht); margin: 0; }

/* ---------- VERLOOP PAGINA: plechtigheid-kaarten ---------- */
.plechtigheid-kaarten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.plechtigheid-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.plechtigheid-kaart:hover {
  box-shadow: 0 6px 24px var(--schaduw);
  transform: translateY(-3px);
}
.plechtigheid-kaart--accent {
  border-color: var(--teal-midden);
  border-width: 2px;
  background: var(--mint-licht);
}
.plechtigheid-icoon { font-size: 2rem; margin-bottom: 12px; }
.plechtigheid-kaart h3 { font-size: 1.1rem; color: var(--teal-donker); margin-bottom: 10px; }
.plechtigheid-kaart p  { font-size: 0.9rem; color: var(--tekst-licht); margin-bottom: 10px; }
.plechtigheid-locatie  { font-size: 0.82rem !important; color: var(--teal-licht) !important; margin: 0 !important; }

.vergelijk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 28px;
}
.vergelijk-kolom h3 { font-size: 1rem; color: var(--teal-donker); margin-bottom: 14px; }

.check-lijst {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.check-lijst li {
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--tekst);
}
.check-lijst li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-midden);
  font-weight: 700;
}

.faq-blok h3 { font-size: 1.1rem; color: var(--teal-donker); margin-bottom: 8px; }

@media (max-width: 700px) {
  .vergelijk-grid { grid-template-columns: 1fr; gap: 20px; }
  .plechtigheid-kaarten { grid-template-columns: 1fr; }
}

/* ---------- HOMEPAGE: preview secties ---------- */
.homepage-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.homepage-link-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 8px;
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: block;
}
.homepage-link-kaart:hover {
  box-shadow: 0 6px 24px var(--schaduw);
  transform: translateY(-3px);
  border-color: var(--teal-midden);
  text-decoration: none;
  color: inherit;
}
.homepage-link-kaart h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-donker);
  margin-bottom: 8px;
}
.homepage-link-kaart p  { font-size: 0.9rem; color: var(--tekst-licht); margin: 0; }

/* ---------- TARIEVEN TOELICHTING (homepage preview) ---------- */
.tarief-toelichting {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
  text-wrap: balance;
  font-size: 0.92rem;
  color: var(--tekst-licht);
  line-height: 1.7;
  font-style: italic;
}

/* ---------- GETUIGENISSEN ---------- */
.getuigenissen-lijst {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.getuigenis-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 32px 36px 28px;
  position: relative;
  transition: box-shadow 0.2s;
}
.getuigenis-kaart:hover {
  box-shadow: 0 6px 28px var(--schaduw);
}
.getuigenis-kaart--pro {
  border-left: 4px solid var(--teal-midden);
  background: var(--mint-licht);
}

.getuigenis-aanhalingsteken {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--rand);
  line-height: 0.6;
  margin-bottom: 12px;
  user-select: none;
}

.getuigenis-tekst {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--tekst);
  font-style: italic;
  margin: 0 0 20px 0;
}

.getuigenis-auteur {
  border-top: 1px solid var(--rand);
  padding-top: 14px;
}
.getuigenis-naam {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--teal-donker);
}
.getuigenis-detail {
  font-size: 0.85rem;
  color: var(--teal-licht);
  margin-top: 2px;
}

/* Homepage getuigenissen preview (3-koloms) */
.getuigenissen-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.getuigenis-preview {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 8px;
  padding: 24px 22px;
  border-top: 3px solid var(--teal-midden);
}

.getuigenis-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  color: var(--tekst);
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.getuigenis-preview-naam {
  font-size: 0.82rem;
  color: var(--teal-licht);
  font-style: normal;
}

/* Getuigenissen blok (over-ons & begrafenisondernemers pagina) */
.getuigenis-blok {
  background: var(--mint-licht);
  border-left: 4px solid var(--teal-midden);
  border-radius: 0 8px 8px 0;
  padding: 28px 32px;
  margin-top: 28px;
}
.getuigenis-groot .getuigenis-tekst {
  font-size: 1.08rem;
  line-height: 1.85;
}
.getuigenis-naam {
  font-size: 0.9rem;
  color: var(--teal-licht);
  margin-top: 14px;
  font-style: normal;
}

.tekst-centreer { text-align: center; }

/* ---------- PRIVACYBELEID ---------- */
.privacy-inhoud { max-width: 720px; }
.privacy-datum  { font-size: 0.85rem; color: var(--teal-licht); font-style: italic; margin-bottom: 36px; }
.privacy-inhoud h2 { font-size: 1.3rem; margin-top: 36px; margin-bottom: 10px; color: var(--teal-donker); border-bottom: 1px solid var(--rand); padding-bottom: 6px; }
.privacy-inhoud h2:first-of-type { margin-top: 0; }
.privacy-inhoud p  { font-size: 0.95rem; color: var(--tekst); margin-bottom: 14px; }
.privacy-lijst {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.privacy-lijst li {
  padding: 7px 0 7px 20px;
  position: relative;
  font-size: 0.93rem;
  color: var(--tekst);
  border-bottom: 1px solid var(--mint-licht);
}
.privacy-lijst li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal-licht);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .header-inner { padding: 16px 24px; }

  .hero-split { flex-direction: column; min-height: auto; }
  .hero-foto  { height: 280px; }
  .hero-tekst { padding: 36px 28px; }
  .hero-heading { font-size: 2.2rem; }

  .sectie { padding: 52px 24px; }
  .sectie-cta { padding: 52px 24px; }
  .pagina-header-groot { padding: 52px 24px 36px; }
  .pagina-header-groot h1 { font-size: 2.4rem; }

  .sectie-contact-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px 28px;
  }
  .footer-kolom:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .site-title  { font-size: 1.5rem; }
  .site-tagline { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 18px 20px; }
  .footer-kolom:first-child { grid-column: auto; }
  .footer-bottom { padding: 14px 18px; }

  .hoogtepunten-grid { grid-template-columns: 1fr 1fr; }
  .tip-item { gap: 16px; }
  .tip-nr { font-size: 2rem; min-width: 36px; }
  .liturgie-tabel { font-size: 0.82rem; }
  .liturgie-tabel th, .liturgie-tabel td { padding: 9px 10px; }
  .pagina-header-groot h1 { font-size: 1.8rem; }

  .hamburger { display: flex; }

  .hoofdmenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wit);
    border-top: 1px solid var(--rand);
    box-shadow: 0 6px 24px var(--schaduw);
    padding: 16px 0;
    z-index: 99;
  }
  .hoofdmenu.open { display: block; }

  .menu-list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .menu-list li { width: 100%; }
  .menu-list a {
    display: block;
    padding: 14px 28px;
    border-bottom: none;
    border-top: 1px solid var(--mint-licht);
    font-size: 1rem;
  }

  /* Mobiel: submenu via visibility omschakelen */
  .menu-list li > ul.sub-menu {
    position: static;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s, max-height 0.25s, visibility 0.2s;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--teal-midden);
    margin-left: 28px;
    padding: 0;
    border-radius: 0;
    pointer-events: none;
  }
  .menu-list li.open > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    max-height: 400px;
    pointer-events: auto;
  }
  .menu-list li > ul.sub-menu a {
    padding: 10px 16px;
    font-size: 0.92rem;
    border-top: 1px solid var(--mint-licht);
  }

  .header-inner { position: relative; }

  .hero-foto  { height: 220px; }
  .hero-tekst { padding: 28px 20px; }
  .hero-heading { font-size: 1.9rem; }

  .sectie { padding: 40px 18px; }

  .footer-links { flex-direction: column; gap: 10px; }
}

/* ---------- Vertrouwens-badges (homepage hero) ---------- */
.vertrouwens-badges {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.vertrouwens-badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--rand);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--tekst);
  box-shadow: 0 2px 6px var(--schaduw);
}
.vertrouwens-badge-icoon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mint-bg);
  color: var(--teal-donker);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.vertrouwens-badge-tekst {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.vertrouwens-badge-tekst strong {
  font-weight: 600;
  color: var(--teal-donker);
  font-size: 0.95rem;
}
@media (max-width: 720px) {
  .vertrouwens-badges { gap: 10px; }
  .vertrouwens-badges li { padding: 8px 12px; font-size: 0.82rem; flex: 1 1 100%; }
}

/* ---------- Snelle-respons-belofte (contactformulier) ---------- */
.respons-belofte {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  padding: 14px 18px;
  background: var(--mint-licht);
  border-left: 3px solid var(--teal-midden);
  border-radius: 4px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--tekst);
}
.respons-belofte-icoon {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--teal-midden);
  flex-shrink: 0;
  padding-top: 2px;
}
.respons-belofte strong { color: var(--teal-donker); font-weight: 600; }

/* ---------- Formulier: AVG-checkbox ---------- */
.formulier-rij--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 18px;
}
.formulier-rij--checkbox input[type="checkbox"] {
  margin: 4px 0 0;
  flex-shrink: 0;
  accent-color: var(--teal-midden);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.formulier-rij--checkbox label {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--tekst);
  cursor: pointer;
  margin: 0;
}
.formulier-rij--checkbox label a {
  color: var(--teal-midden);
  text-decoration: underline;
}

/* ---------- Footer: wettelijke vermeldingen ---------- */
.footer-wettelijk {
  background: rgba(0, 0, 0, 0.12);
  padding: 12px 24px;
  text-align: center;
}
.footer-wettelijk p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}
.footer-wettelijk strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
@media (max-width: 600px) {
  .footer-wettelijk p { font-size: 0.74rem; }
}

/* ---------- Tarieven (homepage) ---------- */
.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 32px 0 8px;
}
.tarief-kaart {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 32px 26px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px var(--schaduw);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tarief-kaart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px var(--schaduw);
}
.tarief-kaart--aanbevolen {
  border-color: var(--teal-midden);
  background: var(--mint-licht);
}
.tarief-aanbevolen-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-midden);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.tarief-bezetting {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal-donker);
  margin: 0 0 14px;
}
.tarief-prijs {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 2px;
}
.tarief-btw {
  font-size: 0.74rem;
  color: var(--tekst-licht);
  font-style: italic;
  text-align: center;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.tarief-vanaf {
  font-size: 0.82rem;
  color: var(--tekst-licht);
  font-style: italic;
}
.tarief-bedrag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--teal-donker);
  line-height: 1;
}
.tarief-beschrijving {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--tekst);
  margin: 0;
}
.tarief-toelichting {
  text-align: center;
  font-size: 0.88rem;
  color: var(--tekst-licht);
  font-style: italic;
  margin: 18px auto 0;
  max-width: 640px;
}
@media (max-width: 900px) {
  .tarieven-grid { grid-template-columns: 1fr; gap: 24px; }
  .tarief-kaart { padding: 28px 22px 24px; }
}

/* Tarieven-pagina specifiek: volledig overzicht (6 kaarten, wrappen) */
.tarieven-grid--volledig {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .tarieven-grid--volledig { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tarieven-grid--volledig { grid-template-columns: 1fr; }
}

/* ---------- Tarieven-pagina: principe-blok (3 cijfers) ---------- */
.tarief-principe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.tarief-principe {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
}
.tarief-principe-cijfer {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--teal-midden);
  line-height: 1;
  margin-bottom: 10px;
}
.tarief-principe h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: var(--teal-donker);
}
.tarief-principe p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--tekst);
  margin: 0;
}
@media (max-width: 720px) {
  .tarief-principe-grid { grid-template-columns: 1fr; gap: 16px; }
  .tarief-principe-cijfer { font-size: 2.2rem; }
}

/* ---------- Tarieven-pagina: 'Wat is inbegrepen' ---------- */
.inbegrepen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
  margin-top: 28px;
}
.inbegrepen-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.inbegrepen-vink {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint-bg);
  color: var(--teal-donker);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 2px;
}
.inbegrepen-item h3 {
  font-size: 1.1rem;
  margin: 0 0 6px;
  color: var(--teal-donker);
}
.inbegrepen-item p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--tekst);
  margin: 0;
}
@media (max-width: 720px) {
  .inbegrepen-grid { grid-template-columns: 1fr; gap: 18px; }
}
