* { box-sizing: border-box; }
:root {
  --bg: #150f26;
  --bg2: #1b1330;
  --panel: #201936;
  --panel2: #241c3d;
  --gold: #f4b942;
  --gold-light: #ffe08a;
  --gold-dark: #c9871f;
  --pink: #e0538c;
  --text: #f3efe6;
  --muted: rgba(243,239,230,0.65);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- header ---------- */
header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(21,15,38,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244,185,66,0.2);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-crest { width: 28px; height: 31px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.brand-title {
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
nav.desktop-nav { display: flex; align-items: center; gap: 26px; }
nav.desktop-nav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.15s; }
nav.desktop-nav a:hover, nav.desktop-nav a.active { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)) !important;
  color: #3a2410 !important; padding: 9px 18px; border-radius: 20px; font-weight: 800 !important;
}
.menu-btn {
  display: none; background: none; border: none; color: var(--gold-light); font-size: 26px;
  cursor: pointer; padding: 4px 8px; line-height: 1;
}
.mobile-nav {
  display: none; position: fixed; inset: 60px 0 0 0; z-index: 25;
  background: rgba(21,15,38,0.98); backdrop-filter: blur(6px);
  flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 20px; font-weight: 700; color: var(--text); text-decoration: none; }
.mobile-nav a.nav-cta { padding: 12px 28px; }
@media (max-width: 780px) {
  nav.desktop-nav { display: none; }
  .menu-btn { display: block; }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative; padding: 130px 24px 100px; text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(244,185,66,0.16), transparent 60%),
    radial-gradient(circle at 85% 20%, rgba(224,83,140,0.12), transparent 45%),
    linear-gradient(160deg, var(--bg), var(--bg2) 55%, var(--bg));
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; pointer-events: none; }
.hero-content { position: relative; z-index: 2; }
.hero-crest-wrap { width: 76px; height: 82px; margin: 0 auto 24px; position: relative; }
.hero-crest-wrap svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 18px rgba(244,185,66,0.35)); }
.hero-crest-glow {
  position: absolute; inset: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,185,66,0.28), transparent 70%);
  animation: pulseGlow 3.5s ease-in-out infinite;
}
@keyframes pulseGlow { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); background: rgba(244,185,66,0.1); border: 1px solid rgba(244,185,66,0.3);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(34px, 6vw, 58px); font-weight: 800; margin: 0 0 18px;
  line-height: 1.08; letter-spacing: -0.01em;
  background: linear-gradient(100deg, var(--gold-light) 10%, var(--gold) 50%, var(--gold-light) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.tagline { font-size: 18px; color: var(--muted); max-width: 580px; margin: 0 auto 38px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- page header (subpages) ---------- */
.page-header {
  position: relative; padding: 90px 24px 60px; text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse 700px 400px at 50% -20%, rgba(244,185,66,0.14), transparent 60%),
    linear-gradient(160deg, var(--bg), var(--bg2) 55%, var(--bg));
  border-bottom: 1px solid rgba(244,185,66,0.12);
}
.page-header .eyebrow { margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; margin: 0 0 14px;
  color: var(--gold-light);
}
.page-header p { font-size: 16.5px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.6; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; font-weight: 800;
  font-size: 15px; text-decoration: none; cursor: pointer; border: none; font-family: var(--font-body);
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); color: #3a2410;
  box-shadow: 0 8px 24px rgba(232,178,61,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(232,178,61,0.5); }
.btn-outline {
  background: rgba(255,255,255,0.03); color: var(--gold-light); border: 1.5px solid rgba(244,185,66,0.4);
}
.btn-outline:hover { background: rgba(244,185,66,0.1); transform: translateY(-3px); }
.btn-small { padding: 10px 18px; font-size: 13px; border-radius: 10px; }

/* ---------- sections ---------- */
section { padding: 90px 24px; position: relative; }
section.tight { padding: 60px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-inner.narrow { max-width: 800px; }
.section-head { max-width: 620px; margin: 0 0 48px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  font-family: var(--font-display); display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
h2.section-title {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; margin: 0 0 12px; color: var(--text);
}
p.section-lead { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; }
.alt-bg { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); border-top: 1px solid rgba(244,185,66,0.1); border-bottom: 1px solid rgba(244,185,66,0.1); }

.missie-text { font-size: 18px; line-height: 1.85; color: rgba(243,239,230,0.92); max-width: 740px; }
.missie-text p { margin: 0 0 20px; }

/* ---------- cards / grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card {
  background: linear-gradient(165deg, var(--panel2), var(--panel));
  border: 1px solid rgba(244,185,66,0.16); border-radius: 18px; padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(244,185,66,0.4); box-shadow: 0 16px 34px rgba(0,0,0,0.35); }
.card .icon {
  font-size: 26px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: rgba(244,185,66,0.12);
}
.card h3 { font-family: var(--font-display); margin: 0 0 8px; font-size: 17px; font-weight: 700; color: var(--gold-light); }
.card p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.card a.card-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--gold-light); text-decoration: none; }
.card a.card-link:hover { text-decoration: underline; }

/* ---------- card media (foto-klaar: valt terug op icoon-gradient zolang er geen echte foto is) ---------- */
.card-media {
  width: 100%; height: 140px; border-radius: 12px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(244,185,66,0.18), rgba(224,83,140,0.12));
  display: flex; align-items: center; justify-content: center; font-size: 44px;
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card.clickable { cursor: pointer; }
.card.clickable:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* ---------- detail modal ---------- */
.detail-backdrop {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 7, 20, 0.72); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.detail-backdrop.open { display: flex; }
.detail-panel {
  position: relative; max-width: 560px; width: 100%; max-height: 86vh; overflow-y: auto;
  background: linear-gradient(165deg, var(--panel2), var(--panel));
  border: 1px solid rgba(244,185,66,0.3); border-radius: 20px; padding: 32px;
  animation: modalPop 0.18s ease-out;
}
@keyframes modalPop { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.detail-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: none; color: var(--text); font-size: 16px; cursor: pointer;
}
.detail-close:hover { background: rgba(255,255,255,0.16); }
.detail-media {
  width: 100%; height: 180px; border-radius: 14px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(244,185,66,0.22), rgba(224,83,140,0.16));
  display: flex; align-items: center; justify-content: center; font-size: 64px; overflow: hidden;
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-panel .tag { display: inline-block; margin-bottom: 12px; }
.detail-panel h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 14px; color: var(--gold-light); }
.detail-panel p { font-size: 15px; line-height: 1.7; color: rgba(243,239,230,0.9); margin: 0; }
.detail-panel .btn { margin-top: 20px; }

.project-card .tag {
  display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: #241a3d; background: linear-gradient(90deg, var(--gold-light), var(--gold));
  padding: 4px 12px; border-radius: 12px; margin-bottom: 14px;
}

.team-card { text-align: center; }
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 800; color: #241a3d;
  background: linear-gradient(160deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 6px 18px rgba(244,185,66,0.3);
}
.team-card.large .team-avatar { width: 88px; height: 88px; font-size: 30px; }
.team-card h3 { color: var(--text); font-size: 18px; margin: 0 0 4px; }
.team-card .rol { color: var(--gold-light); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p.bio { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin: 10px 0 0; }

/* ---------- timeline (verhaal) ---------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(244,185,66,0.1));
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -32px; top: 4px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(244,185,66,0.18);
}
.timeline-year { font-family: var(--font-display); font-weight: 800; color: var(--gold-light); font-size: 14px; letter-spacing: 0.04em; margin-bottom: 6px; }
.timeline-item h3 { font-family: var(--font-display); margin: 0 0 8px; font-size: 19px; color: var(--text); }
.timeline-item p { color: rgba(243,239,230,0.85); font-size: 15.5px; line-height: 1.75; margin: 0; }

.bronnen { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.bron-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--gold-light); text-decoration: none; padding: 10px 18px; border-radius: 20px;
  border: 1px solid rgba(244,185,66,0.35); background: rgba(244,185,66,0.06);
  transition: background 0.2s, transform 0.2s;
}
.bron-link:hover { background: rgba(244,185,66,0.16); transform: translateY(-2px); }

/* ---------- donate band ---------- */
.donate-band {
  background: linear-gradient(135deg, #2b1f10, #1a1208);
  border-top: 1px solid rgba(244,185,66,0.25); border-bottom: 1px solid rgba(244,185,66,0.25);
  text-align: center; padding: 70px 24px;
}
.donate-band h2 { font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 32px); color: var(--gold-light); margin: 0 0 14px; }
.donate-band p { color: var(--muted); font-size: 15.5px; max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }

/* ---------- contact / donate box ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }

.donate-box {
  background: linear-gradient(165deg, #2b1f10, #1a1208);
  border: 1px solid rgba(244,185,66,0.3); border-radius: 18px; padding: 32px;
}
.donate-box h3 { font-family: var(--font-display); margin: 0 0 8px; color: var(--gold-light); font-size: 19px; }
.donate-box p { color: var(--muted); font-size: 14.5px; margin: 0 0 20px; line-height: 1.6; }
.iban-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.iban {
  font-family: "Courier New", monospace; font-size: 19px; font-weight: 800;
  background: rgba(244,185,66,0.1); border: 1px dashed rgba(244,185,66,0.4);
  padding: 12px 16px; border-radius: 10px; letter-spacing: 0.03em; color: var(--gold-light);
  flex: 1; min-width: 220px;
}
.copy-btn {
  background: rgba(244,185,66,0.15); border: 1px solid rgba(244,185,66,0.35); color: var(--gold-light);
  padding: 12px 16px; border-radius: 10px; font-weight: 700; font-size: 13px; cursor: pointer;
  transition: background 0.2s;
}
.copy-btn:hover { background: rgba(244,185,66,0.28); }
.tenaam { font-size: 13px; color: var(--muted); margin-top: 10px; }

.form-box { background: var(--panel); border: 1px solid rgba(244,185,66,0.16); border-radius: 18px; padding: 32px; }
.form-box h3 { font-family: var(--font-display); margin: 0 0 8px; color: var(--gold-light); font-size: 19px; }
.form-box p.hint { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.form-box label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin: 14px 0 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-box input, .form-box textarea {
  width: 100%; padding: 11px 14px; border-radius: 9px; border: 1px solid rgba(244,185,66,0.22);
  background: rgba(255,255,255,0.04); color: var(--text); font-family: inherit; font-size: 14px;
}
.form-box input:focus, .form-box textarea:focus { outline: none; border-color: rgba(244,185,66,0.6); }
.form-box textarea { resize: vertical; }
.form-box button { margin-top: 20px; width: 100%; justify-content: center; }

/* ---------- doelen / gofundme-stijl voortgang ---------- */
.goal-card { display: flex; flex-direction: column; }
.goal-card h3 { font-size: 19px; }
.goal-progress-track {
  width: 100%; height: 14px; border-radius: 8px; background: rgba(255,255,255,0.08);
  overflow: hidden; margin: 16px 0 10px;
}
.goal-progress-fill {
  height: 100%; border-radius: 8px; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.goal-amounts { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.goal-amounts .raised { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--gold-light); }
.goal-amounts .target { font-size: 13px; color: var(--muted); }
.goal-pct { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.goal-empty { text-align: center; color: var(--muted); font-size: 14px; padding: 30px; }
.goal-note {
  font-size: 12.5px; color: var(--muted); background: rgba(244,185,66,0.06);
  border: 1px solid rgba(244,185,66,0.2); border-radius: 10px; padding: 12px 16px; margin-top: 40px;
}

footer {
  padding: 64px 24px 28px; color: var(--muted); font-size: 13.5px;
  border-top: 1px solid rgba(244,185,66,0.15);
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.32));
}
footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--gold-light); }
.footer-grid {
  max-width: 1100px; margin: 0 auto 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand svg { width: 26px; height: 29px; }
.footer-brand span {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-col p { line-height: 1.6; margin: 0; color: var(--muted); font-size: 13px; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display); color: var(--text); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-software-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 4px;
  background: rgba(244,185,66,0.1); border: 1px solid rgba(244,185,66,0.35); color: var(--gold-light) !important;
  padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: 13px;
  transition: background 0.2s, transform 0.2s;
}
.footer-software-btn:hover { background: rgba(244,185,66,0.22); transform: translateY(-2px); color: var(--gold-light) !important; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(243,239,230,0.45);
}

/* ---------- nav underline animation ---------- */
nav.desktop-nav a:not(.nav-cta) { position: relative; padding-bottom: 4px; }
nav.desktop-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: right 0.25s ease;
}
nav.desktop-nav a:not(.nav-cta):hover::after, nav.desktop-nav a.active::after { right: 0; }

/* ---------- floating decorative blobs ---------- */
.blob-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.35;
  animation: blobDrift 18s ease-in-out infinite;
}
.blob-gold { background: radial-gradient(circle, var(--gold) 0%, transparent 70%); }
.blob-pink { background: radial-gradient(circle, var(--pink) 0%, transparent 70%); animation-delay: -6s; animation-duration: 22s; }
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-24px, 18px) scale(0.94); }
}

/* ---------- staggered reveal for grid children ---------- */
.grid.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.grid.stagger.visible > * { opacity: 1; transform: translateY(0); }
.grid.stagger.visible > *:nth-child(1) { transition-delay: 0.02s; }
.grid.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.grid.stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.grid.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.grid.stagger.visible > *:nth-child(5) { transition-delay: 0.34s; }
.grid.stagger.visible > *:nth-child(6) { transition-delay: 0.42s; }

/* ---------- icon bounce on card hover ---------- */
.card .icon { transition: transform 0.3s ease; }
.card:hover .icon { transform: scale(1.12) rotate(-4deg); }

/* ---------- stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.stat-box { text-align: center; padding: 20px 10px; }
.stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4vw, 42px);
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 6px;
}
.stat-label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ---------- pull-quote ---------- */
.quote-block { position: relative; max-width: 760px; margin: 0 auto; text-align: center; padding: 20px 24px; }
.quote-mark {
  font-family: var(--font-display); font-size: 90px; line-height: 1; color: rgba(244,185,66,0.25);
  display: block; margin-bottom: -20px;
}
.quote-block blockquote {
  margin: 0; font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px); font-weight: 700;
  color: var(--gold-light); line-height: 1.4; font-style: normal;
}
.quote-block cite {
  display: block; margin-top: 18px; font-style: normal; font-size: 13.5px; color: var(--muted); font-weight: 600;
}

/* ---------- timeline dot pulse when revealed ---------- */
.timeline-item.reveal .timeline-dot { transition: box-shadow 0.6s ease, transform 0.6s ease; }
.timeline-item.reveal.visible .timeline-dot { animation: dotPulse 1.4s ease-out; }
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(244,185,66,0.5); }
  100% { box-shadow: 0 0 0 12px rgba(244,185,66,0); }
}

/* ---------- crest parallax wrapper ---------- */
.hero-crest-wrap { transition: transform 0.15s ease-out; }

/* ---------- decorative crest watermark pattern ---------- */
.crest-watermark {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='132'%3E%3Cpath d='M60 3c24 0 42 9 42 21 0 36-18 78-42 102C36 102 18 60 18 24 18 12 36 3 60 3z' fill='none' stroke='%23f4b942' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 120px 132px;
}

/* ---------- featured project card ---------- */
.card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #2b2246, var(--panel2));
  border-color: rgba(244,185,66,0.35);
}
@media (max-width: 620px) { .card.featured { grid-column: span 1; } }
