/* ═══════════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════════ */

:root {
  --color-bg-dark: #111117;
  --color-bg-darker: #0a0a0f;
  --color-bg-light: #f3f0e8;
  --color-bg-accent: #1a1a2e;

  --color-gold: #c9a84c;
  --color-gold-light: #e0c872;
  --color-gold-dark: #a68a32;

  --color-text-light: #f0ece2;
  --color-text-dark: #1a1a2e;
  --color-text-muted: #9a9a9a;
  --color-text-muted-dark: #6a6a7a;

  --color-alert: #c0392b;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1200px;
  --nav-height: 72px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  background-color: var(--color-bg-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-gold-light);
}

::selection {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav--scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

.nav__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

.nav__logo:hover {
  color: var(--color-gold-light);
}

.nav__logo-icon {
  font-size: 1.4rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__links a:hover {
  color: var(--color-gold);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--color-gold);
  color: var(--color-bg-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav__cta:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-bg-dark) !important;
  transform: translateY(-1px);
}

.nav__cta::after {
  display: none !important;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(10, 10, 15, 0.7) 0%,
      rgba(26, 26, 46, 0.6) 50%,
      rgba(10, 10, 15, 0.8) 100%
    ),
    linear-gradient(to bottom,
      #1a1a2e 0%,
      #2d1b4e 30%,
      #1a1a2e 70%,
      #111117 100%
    );
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(10, 10, 15, 0.6) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}

.hero__pre-title {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto 3rem;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold);
  transition: color 0.3s ease;
}

.hero__scroll:hover {
  color: var(--color-gold-light);
}

.hero__scroll-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-arrow {
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════ */

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section--darker {
  background: var(--color-bg-darker);
  color: var(--color-text-light);
}

.section--light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section--accent {
  background: var(--color-bg-accent);
  color: var(--color-text-light);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__chapter {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section--light .section__chapter {
  color: var(--color-gold-dark);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section__intro {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.85;
}

.section--light .section__intro {
  color: var(--color-text-muted-dark);
}

/* ═══════════════════════════════════════════
   STORY BLOCK (Section 2)
   ═══════════════════════════════════════════ */

.story-block {
  margin-bottom: 3rem;
}

.story-block__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-light);
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-columns__text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

.story-columns__text strong {
  color: var(--color-gold);
}

/* Placeholder images */
.placeholder-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.placeholder-image--church {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 60%, #111117 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.placeholder-image--ramen {
  background: linear-gradient(135deg, #4a1942 0%, #2d1b4e 50%, #1a1a2e 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.placeholder-image--doolhof {
  background: linear-gradient(135deg, #1a1a2e 0%, #222240 50%, #2d1b4e 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.placeholder-image--corpus {
  background: linear-gradient(135deg, #2d1b1b 0%, #1a1a2e 60%, #111117 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.placeholder-image--orgel {
  background: linear-gradient(135deg, #1b2d1b 0%, #1a1a2e 60%, #111117 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.placeholder-image--altaar {
  background: linear-gradient(135deg, #2d2d1b 0%, #1a1a2e 60%, #111117 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.placeholder-image::before {
  content: '🏛️';
  font-size: 3rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  font-style: normal;
}

/* ═══════════════════════════════════════════
   TIMELINE (Section 3)
   ═══════════════════════════════════════════ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--color-gold-dark) 5%,
    var(--color-gold-dark) 95%,
    transparent 100%
  );
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline__item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 2rem);
  text-align: right;
}

.timeline__item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 2rem);
  text-align: left;
}

.timeline__date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}

.timeline__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.timeline__card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.timeline__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.timeline__card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

.timeline__card--alert {
  border-color: rgba(192, 57, 43, 0.3);
  background: rgba(192, 57, 43, 0.08);
}

.timeline__card--alert:hover {
  border-color: rgba(192, 57, 43, 0.5);
}

.timeline__card-cta {
  color: var(--color-gold) !important;
  opacity: 1 !important;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   TREASURES (Section 4)
   ═══════════════════════════════════════════ */

.treasures {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.treasure {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.treasure--reverse {
  grid-template-columns: 1.2fr 1fr;
}

.treasure--reverse .treasure__image {
  order: 2;
}

.treasure--reverse .treasure__content {
  order: 1;
}

.treasure__content {
  padding: 1rem 0;
}

.treasure__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.treasure__year {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.treasure__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.treasure__content em {
  color: var(--color-gold-light);
}

/* ═══════════════════════════════════════════
   VISION (Section 5)
   ═══════════════════════════════════════════ */

.vision-statement {
  text-align: center;
  margin-bottom: 3rem;
}

.vision-statement__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 1rem;
  border: none;
  padding: 0;
}

.vision-statement__cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.vision-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vision-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.vision-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.vision-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--color-gold);
}

.vision-card__icon svg {
  width: 100%;
  height: 100%;
}

.vision-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.vision-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════
   FUNDRAISER (Section 6)
   ═══════════════════════════════════════════ */

.fundraiser {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.fundraiser__goal {
  margin-bottom: 2rem;
}

.fundraiser__goal-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.fundraiser__goal-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-gold);
}

.progress-bar__track {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  border-radius: 6px;
  transition: width 1.5s var(--ease-out-expo);
}

.progress-bar__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.progress-bar__current {
  font-weight: 500;
  color: var(--color-gold);
  font-style: italic;
}

/* Budget cards */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.budget-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.budget-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.budget-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-gold);
}

.budget-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════
   HELP CARDS (Section 7)
   ═══════════════════════════════════════════ */

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.help-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.help-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--color-gold);
}

.help-card__icon svg {
  width: 100%;
  height: 100%;
}

.help-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.help-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.btn--primary:hover {
  background: var(--color-gold-dark);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-gold-dark);
  border: 2px solid var(--color-gold);
  padding: 0.625rem 1.625rem;
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

/* Share buttons */
.help-card__share {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  padding: 0;
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.share-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   STICHTING (Section 6)
   ═══════════════════════════════════════════ */

.stichting-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.stichting-main p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.stichting-main strong {
  color: var(--color-gold);
}

.stichting-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stichting-name__icon {
  font-size: 1.8rem;
  color: var(--color-gold);
}

.stichting-name h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-gold);
}

.stichting-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold-dark);
  margin: 2rem 0;
  opacity: 0.5;
}

.stichting-subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}

.stichting-values {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.stichting-values__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.stichting-values__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stichting-values__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.stichting-values__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.stichting-values__list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0.15rem;
}

.stichting-values__list p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* Fundraiser on light section */
.section--light .fundraiser__goal-label {
  color: var(--color-text-muted-dark);
}

.section--light .fundraiser__goal-amount {
  color: var(--color-gold-dark);
}

.section--light .progress-bar__track {
  background: rgba(0, 0, 0, 0.08);
}

.section--light .progress-bar__labels {
  color: var(--color-text-muted-dark);
}

.section--light .progress-bar__current {
  color: var(--color-gold-dark);
}

.section--light .budget-card {
  background: #fff;
  border-color: #e0ddd4;
}

.section--light .budget-card__title {
  color: var(--color-gold-dark);
}

.section--light .budget-card p {
  color: var(--color-text-muted-dark);
}

@media (max-width: 900px) {
  .stichting-layout {
    grid-template-columns: 1fr;
  }

  .stichting-values {
    position: static;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  background: var(--color-bg-darker);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  font-size: 1.8rem;
  color: var(--color-gold);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.footer__address {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.footer__contact a {
  font-size: 0.95rem;
  color: var(--color-gold);
}

.footer__bottom {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* Hero-specific stagger */
.hero .fade-in:nth-child(1) { transition-delay: 0.3s; }
.hero .fade-in:nth-child(2) { transition-delay: 0.6s; }
.hero .fade-in:nth-child(3) { transition-delay: 0.9s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .story-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .treasure {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treasure--reverse .treasure__image {
    order: 0;
  }

  .treasure--reverse .treasure__content {
    order: 0;
  }

  /* Timeline: single column */
  .timeline::before {
    left: 20px;
  }

  .timeline__item,
  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    flex-direction: column;
    padding-left: 52px;
    padding-right: 0;
    text-align: left;
  }

  .timeline__date {
    left: 20px;
    transform: translateX(-50%);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }

  .timeline__card {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s var(--ease-out-expo);
    z-index: 1000;
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    font-size: 1.1rem;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .budget-grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .section__title {
    font-size: 1.8rem;
  }
}
