/* Heal My Lambs Ministry, professional charity site
   Palette: deep forest green (trust/growth) + warm amber (hope/action) on cream */

:root {
  /* Oeganda-palet: diepgroen, terracotta, zand, goud, lichtgroen, antraciet */
  --green-900: #24482e;  /* donker diepgroen: hero, footer, koppen */
  --green-800: #2f5d3a;  /* hoofdgroen: menu-accent, stats, banden */
  --green-700: #366a43;
  --green-600: #3f7d4e;
  --green-100: #ddebd5;  /* lichtgroen: zachte blokken, updates */
  --terra: #ab5d33;      /* warm terracotta (iets dieper voor leesbare witte knoptekst, contrast ~4.8:1) */
  --terra-accent: #b86b3c; /* originele terracotta voor decoratieve accenten */
  --terra-700: #8c4a27;  /* terracotta hover */
  --amber-600: #c78f1f;  /* goud hover */
  --amber-500: #e0a72e;  /* goudgeel: hoop/zon, subtiele accenten */
  --amber-100: #f3e3c1;  /* licht goud: labels op donkere vlakken */
  --cream: #f6efe6;      /* zacht zand: achtergrond */
  --cream-2: #efe4d4;    /* iets dieper zand: tint-secties */
  --card: #ffffff;
  --ink: #263238;        /* antraciet: tekst */
  --muted: #6c6258;
  --line: #e7dccb;
  --ring: rgba(47, 93, 58, 0.38);
  --shadow-sm: 0 1px 2px rgba(31, 26, 23, 0.05), 0 2px 8px rgba(31, 26, 23, 0.05);
  --shadow-md: 0 10px 30px rgba(18, 55, 38, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 55, 38, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1160px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-600); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; color: var(--green-900); letter-spacing: -0.01em; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: #3b444a; line-height: 1.6; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(48px, 8vw, 92px) 0; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-sans); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600); margin-bottom: .7rem;
}
.skip-link { position: absolute; left: -999px; top: 0; background: var(--green-800); color:#fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55em; justify-content: center;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 8px 20px rgba(156,85,44,.30); }
.btn-primary:hover { background: var(--terra-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(156,85,44,.40); }
.btn-solid { background: var(--green-700); color: #fff; }
.btn-solid:hover { background: var(--green-600); color:#fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: rgba(28,90,63,.28); }
.btn-ghost:hover { background: var(--green-100); color: var(--green-800); }
.btn-light { background: #fff; color: var(--green-800); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 30px; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,246,239,.92); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
  background: radial-gradient(120% 120% at 30% 20%, var(--green-600), var(--green-800));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-serif); font-weight: 600; font-size: 1.14rem; color: var(--green-900); letter-spacing: -.01em; }
.brand-text span { font-size: .74rem; color: var(--muted); letter-spacing: .01em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: #3b332c; font-weight: 600; font-size: .96rem; padding: 9px 13px; border-radius: 10px; }
.nav a:hover { background: var(--cream-2); color: var(--green-800); }
.nav a.active { color: var(--green-800); background: var(--green-100); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--green-800); }

/* Hero */
.hero { position: relative; overflow: hidden; background: var(--green-900); color: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-media::after { content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(90% 80% at 12% 100%, rgba(184,107,60,.34) 0%, rgba(184,107,60,0) 55%),
    linear-gradient(180deg, rgba(36,72,46,.55) 0%, rgba(36,72,46,.48) 40%, rgba(28,56,36,.88) 100%),
    linear-gradient(90deg, rgba(36,72,46,.72) 0%, rgba(36,72,46,.15) 62%); }
.hero-inner { position: relative; z-index: 2; padding: clamp(80px, 13vw, 150px) 0 clamp(56px, 9vw, 104px); max-width: 720px; }
.hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero .lead { color: rgba(255,255,255,.94); }
.hero-quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem,3vw,1.9rem); color: var(--amber-100); margin: 0 0 1rem; }
.hero .btn-row { margin-top: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 600; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); padding: 8px 14px; border-radius: 999px; }
.hero-badge svg { display: none; }
.hero-badge { padding: 8px 16px; }

/* Stats strip */
.stats { background: var(--green-800); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; }
.stat { text-align: center; padding: 6px 8px; }
.stat b { display: block; font-family: var(--font-serif); font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 600; color: #fff; line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: .9rem; color: rgba(255,255,255,.82); }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.14); }

/* Generic layout helpers */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* Cards */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-top: 6px; }
.card p:last-child { margin-bottom: 0; }
/* Redactioneel kicker-streepje i.p.v. template-icoonvierkant */
.card-icon { display: block; width: 38px; height: 3px; border-radius: 3px; background: var(--terra); margin: 4px 0 18px; box-shadow: none; }
.card-icon svg { display: none; }
.card.center .card-icon { margin-left: auto; margin-right: auto; }

/* Media / figures */
.figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure--tall img { aspect-ratio: 4/5; }
.figure--wide img { aspect-ratio: 16/10; }
.figure-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px; color: #fff; font-size: .86rem; background: linear-gradient(transparent, rgba(15,42,29,.8)); }

/* Sections with tint */
.tint { background: var(--cream-2); }
.tint-green { background: var(--green-100); }

/* Acute nood callout */
.alert { background: linear-gradient(120deg, #fff, var(--amber-100)); border: 1px solid var(--amber-100); border-left: 5px solid var(--amber-500); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow-sm); }
.alert .tag-live { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-600); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber-500); box-shadow: 0 0 0 0 rgba(224,145,47,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(224,145,47,.55);} 70% { box-shadow: 0 0 0 12px rgba(224,145,47,0);} 100% { box-shadow: 0 0 0 0 rgba(224,145,47,0);} }

/* Lists */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 26px; color: #40382f; }
.check-list li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); }

/* News cards */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tag { align-self: flex-start; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green-700); background: var(--green-100); padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.news-card h3 { margin: 0 0 8px; }
.news-card p { color: var(--muted); font-size: .97rem; }
.news-card .read { margin-top: auto; padding-top: 12px; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; }
.news-card .read svg { width: 16px; height: 16px; transition: transform .15s ease; }
.news-card:hover .read svg { transform: translateX(3px); }

/* Donate band */
.donate-band { background: radial-gradient(120% 140% at 15% 10%, var(--green-700), var(--green-900)); color: #fff; border-radius: 24px; padding: clamp(36px, 6vw, 60px); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.donate-band h2 { color: #fff; }
.donate-band p { color: rgba(255,255,255,.9); }

/* Donation form (doneer page) */
.donate-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; color: #35302a; }
.field .hint { font-size: .84rem; color: var(--muted); margin-top: 6px; }
input, select, textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 3px var(--ring); }
textarea { min-height: 130px; resize: vertical; }
.amount-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 10px; }
.amount-chip { flex: 1 1 auto; min-width: 78px; text-align: center; padding: 12px 8px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; font-weight: 700; cursor: pointer; transition: all .15s ease; color: #35302a; }
.amount-chip:hover { border-color: var(--green-600); }
.amount-chip.selected { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.reference-box { display: flex; gap: 10px; align-items: stretch; }
.reference-box input { font-weight: 600; }
.iban-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--cream-2); border: 1px dashed var(--line); border-radius: 12px; padding: 12px 15px; font-weight: 700; letter-spacing: .02em; }
.copy-btn { background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 14px; font-weight: 600; cursor: pointer; white-space: nowrap; color: var(--green-800); transition: all .15s ease; }
.copy-btn:hover { border-color: var(--green-600); background: var(--green-100); }
.status { font-size: .88rem; color: var(--green-700); font-weight: 600; min-height: 1.2em; }
.trust-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; font-size: .95rem; }
.trust-list li { display: flex; gap: 12px; align-items: flex-start; }
.trust-list svg { display: none; }
.trust-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); flex: 0 0 auto; margin-top: .55em; }

/* Article */
.article { max-width: 760px; margin: 0 auto; }
.article .meta-top { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.article-body p { margin-bottom: 1.15rem; }
.article-body h2 { margin-top: 2rem; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--green-700); }
.give-box { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; margin-top: 36px; }

/* Founder */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: center; }
.founder .portrait { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); width: 100%; max-width: 300px; aspect-ratio: 1/1; }
.founder .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.signature { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--green-800); margin-top: 6px; }

/* Page hero (subpages) */
.page-hero { background: var(--green-900); color: #fff; padding: clamp(56px, 9vw, 92px) 0 clamp(40px,6vw,64px); position: relative; }
.page-hero .eyebrow { color: var(--amber-100); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 640px; }

/* Footer */
.footer { background: var(--green-900); color: rgba(255,255,255,.82); padding: 64px 0 28px; }
.footer a { color: rgba(255,255,255,.82); }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 40px; }
.footer h4 { font-family: var(--font-sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0 0 16px; }
.footer .brand-text strong { color: #fff; }
.footer .brand-text span { color: rgba(255,255,255,.6); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer .iban { font-weight: 700; color: #fff; letter-spacing: .02em; }
.newsletter-row { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-row input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.newsletter-row input::placeholder { color: rgba(255,255,255,.55); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.6); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .news-grid { grid-template-columns: 1fr 1fr; }
  .split, .donate-wrap, .founder { grid-template-columns: 1fr; }
  .founder .portrait { max-width: 260px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat:nth-child(3) { border-left: none; }
  .stat + .stat { border-left: 1px solid rgba(255,255,255,.14); }
  .stat:nth-child(odd) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 18px 18px; gap: 4px; box-shadow: var(--shadow-md); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .2s ease; }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 14px; font-size: 1.02rem; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn.hide-sm { display: none; }
  .grid-2, .grid-3, .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---- Beer update: accessibility, motion, mobile donate bar, FAQ ---- */

/* Visible focus for keyboard users */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 6px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .dot { animation: none; }
}

/* FAQ accordion (native details/summary) */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--green-900); font-family: var(--font-serif); font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-sans); font-size: 1.5rem; color: var(--green-600); line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq .faq-body p { margin: 0; }

/* Sticky mobile donate bar */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250,246,239,.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(18,55,38,.08);
  }
  .mobile-cta .btn { flex: 1; padding: 13px 10px; }
  body { padding-bottom: 76px; }
}

/* Mobile header refinements (Beer) */
@media (max-width: 720px) {
  .brand-text span { display: none; }
  .brand-text strong { font-size: 1rem; line-height: 1.12; }
  .brand-mark { width: 40px; height: 40px; }
  .header-actions .btn-primary { display: none; } /* sticky mobile bar handles donate */
  .header-inner { gap: 10px; }
}

/* ---- Oeganda-sfeer: geweven patroon + accenten ---- */

/* Subtiel geweven ruitpatroon voor donkere groene vlakken */
:root {
  --weave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46' viewBox='0 0 46 46'%3E%3Cg fill='none' stroke='%23e0a72e' stroke-width='1'%3E%3Cpath d='M23 3 L43 23 L23 43 L3 23 Z'/%3E%3C/g%3E%3Ccircle cx='23' cy='23' r='1.6' fill='%23e0a72e'/%3E%3C/svg%3E");
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: var(--weave); background-size: 46px 46px; opacity: .10;
}
.stats { position: relative; }
.stats::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--weave); background-size: 46px 46px; opacity: .08;
}
.stats .container { position: relative; }
.donate-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--weave); background-size: 46px 46px; opacity: .10;
}
.donate-band > * { position: relative; }
.footer { position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--terra) 0 18px, var(--amber-500) 18px 36px, var(--green-600) 36px 54px);
  opacity: .9;
}

/* Redactioneel accentstreepje bij labels */
.eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--terra); vertical-align: middle; margin-right: 10px; margin-bottom: 3px;
}
.page-hero .eyebrow::before, .hero .eyebrow::before, .donate-band .eyebrow::before { background: var(--amber-500); }

/* Warme lijn onder sectiekoppen in section-head */
.section-head h2::after {
  content: ""; display: block; width: 54px; height: 3px; border-radius: 3px;
  background: var(--terra); margin-top: 16px;
}
.section-head.center h2::after { margin-left: auto; margin-right: auto; }
.donate-band .section-head h2::after { background: var(--amber-500); }

/* Consistentie: subtiel geweven patroon ook in de subpagina-headers */
.page-hero { position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--weave); background-size: 46px 46px; opacity: .07; }
.page-hero .container { position: relative; z-index: 1; }

/* ---- Fotogalerij + lightbox ---- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.gallery-item { position: relative; padding: 0; border: 0; margin: 0; cursor: pointer; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream-2); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(18,55,38,.55)); opacity: 0; transition: opacity .25s ease; }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-item .cap { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: .9rem; font-weight: 600; text-align: left; opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.gallery-item:hover .cap, .gallery-item:focus-visible .cap { opacity: 1; transform: translateY(0); }
.gallery-item .zoom { position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; opacity: 0; transform: scale(.85); transition: all .25s ease; }
.gallery-item .zoom svg { width: 18px; height: 18px; color: var(--green-800); }
.gallery-item:hover .zoom, .gallery-item:focus-visible .zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(15,30,20,.94); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lb-figure { margin: 0; max-width: min(1100px, 92vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lb-figure img { max-width: 100%; max-height: 78vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); background: #0b1a12; }
.lb-figure figcaption { color: rgba(255,255,255,.92); font-size: .98rem; margin-top: 14px; text-align: center; font-family: var(--font-serif); font-style: italic; }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .85rem; letter-spacing: .08em; }
body.lb-lock { overflow: hidden; }
@media (max-width: 720px) {
  .lb-btn { width: 44px; height: 44px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-figure img { max-height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item img, .gallery-item::after, .gallery-item .cap, .gallery-item .zoom, .lightbox { transition: none; }
}
