/* ===== Stichting Team Thomas ===== */
:root {
  --navy: #1b2a52;
  --navy-dark: #131e3d;
  --red: #d7232e;
  --red-dark: #b01c25;
  --cream: #fdf9f4;
  --white: #ffffff;
  --text: #2b3350;
  --text-soft: #5a6280;
  --radius: 20px;
  --shadow: 0 8px 30px rgba(27, 42, 82, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

h1, h2, .section-tag, .btn, .sticky-donate, .fact-card h3 {
  font-family: 'Baloo 2', 'Nunito', system-ui, sans-serif;
}

/* Zwevende sterren in de hero */
.float-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.18);
  animation: floaty 5s ease-in-out infinite;
  pointer-events: none;
}
.float-star.s1 { top: 55%; left: 12%; font-size: 1.6rem; animation-delay: 0s; }
.float-star.s2 { top: 65%; right: 14%; font-size: 2.2rem; color: rgba(215, 35, 46, 0.4); animation-delay: 1.2s; }
.float-star.s3 { top: 8%;  right: 30%; font-size: 1.2rem; animation-delay: 2.4s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(215, 35, 46, 0.35);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.22); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, #2c3f73 0%, transparent 60%),
    var(--navy);
  color: var(--white);
  text-align: center;
  padding: 4rem 1.5rem 7rem;
  overflow: hidden;
}

.hero::before {
  content: "★";
  position: absolute;
  top: 12%; left: 8%;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.12);
}
.hero::after {
  content: "★";
  position: absolute;
  top: 25%; right: 10%;
  font-size: 3rem;
  color: rgba(215, 35, 46, 0.35);
}

.hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }

.hero-logo {
  width: min(280px, 60vw);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.accent { color: #ff5560; }

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; }

/* ===== Sections ===== */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--cream); }

.container { max-width: 980px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  transform: rotate(-2deg);
  background: rgba(215, 35, 46, 0.1);
  color: var(--red);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.tag-light { background: rgba(255, 255, 255, 0.15); color: var(--white); }

.section h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-intro { color: var(--text-soft); margin-bottom: 2rem; max-width: 600px; }

/* ===== Verhaal ===== */
.story-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.photo-frame {
  flex: 0 0 280px;
  background: var(--white);
  padding: 0.9rem 0.9rem 0.6rem;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(27, 42, 82, 0.2);
  transform: rotate(-3deg);
  transition: transform 0.25s ease;
  position: relative;
}
.photo-frame:hover { transform: rotate(-1deg) scale(1.03); }
.photo-frame::before {
  content: "★";
  position: absolute;
  top: -16px; right: -10px;
  font-size: 2rem;
  color: var(--red);
  transform: rotate(15deg);
}
.photo-frame img { border-radius: 4px; }
.photo-frame figcaption {
  font-family: 'Baloo 2', 'Nunito', system-ui, sans-serif;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  padding: 0.6rem 0 0.3rem;
}

.story { flex: 1; }
.story p { margin-bottom: 1.2rem; font-size: 1.08rem; }
.story strong { color: var(--navy); }

.fact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.fact-card {
  background: var(--white);
  border: 2px solid #eef0f6;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.fact-card:nth-child(1) { transform: rotate(-1.5deg); }
.fact-card:nth-child(3) { transform: rotate(1.5deg); }
.fact-card:hover { transform: translateY(-6px) rotate(0deg) scale(1.02); }
.fact-card:nth-child(2):hover { transform: translateY(-6px) scale(1.02); }

.fact-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.fact-card h3 { color: var(--red); font-size: 1.4rem; font-weight: 900; }
.fact-card p { color: var(--text-soft); font-size: 0.95rem; }

/* ===== Media ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Doneren ===== */
.section-donate {
  position: relative;
  padding-top: 7rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 110%, #e8404a 0%, transparent 60%),
    var(--red);
  color: var(--white);
  text-align: center;
}

.donate-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  line-height: 0;
}
.donate-wave svg { width: 100%; height: 60px; }

.donate-container { max-width: 640px; }
.section-donate h2 { color: var(--white); }

.donate-text { font-size: 1.15rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.92); }

.btn-donate {
  background: var(--white);
  color: var(--red);
  font-size: 1.2rem;
  padding: 1.1rem 2.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn-donate:hover { background: #fff3f3; }

.donate-note {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.donate-note strong { color: var(--white); white-space: nowrap; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.contact-card a { color: var(--red); font-weight: 700; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { color: var(--text-soft); }

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.9rem;
}
.footer-logo { width: 80px; margin: 0 auto 1rem; opacity: 0.9; }

/* ===== Sticky doneer-knop ===== */
.sticky-donate {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  background: var(--red);
  color: var(--white);
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(215, 35, 46, 0.45);
  transition: transform 0.15s ease, opacity 0.25s ease, visibility 0.25s;
  animation: pulse 2.5s ease-in-out infinite;
}
.sticky-donate:hover { transform: scale(1.06); }
.sticky-donate.hidden { opacity: 0; visibility: hidden; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(215, 35, 46, 0.45); }
  50% { box-shadow: 0 6px 34px rgba(215, 35, 46, 0.75); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sticky-donate, .float-star { animation: none; }
}

/* ===== Mobiel ===== */
@media (max-width: 700px) {
  .story-layout { flex-direction: column; align-items: center; }
  .photo-frame { flex: none; max-width: 300px; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 3rem 1.25rem 6rem; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
}

/* ===== DreamWorks-inspired redesign ===== */
:root {
  --ink: #071a34;
  --ink-soft: #18345a;
  --midnight: #061224;
  --blue: #1b5f94;
  --sky: #d9edf8;
  --gold: #f5c85a;
  --coral: #f27b68;
  --paper: #fbf8f1;
  --white: #ffffff;
  --body-text: #1d2b3c;
  --muted: #607186;
  --line: rgba(7, 26, 52, 0.12);
  --radius: 18px;
  --dream-shadow: 0 18px 60px rgba(7, 26, 52, 0.16);
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--body-text);
  background: var(--paper);
}

h1,
h2,
h3,
.section-tag,
.btn,
.sticky-donate,
.fact-card h3,
.nav-donate {
  font-family: 'Montserrat', 'Manrope', system-ui, sans-serif;
  letter-spacing: 0;
}

.hero.site-hero {
  position: relative;
  min-height: 92vh;
  padding: 0;
  overflow: hidden;
  text-align: left;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 200, 90, 0.22), transparent 17rem),
    radial-gradient(circle at 20% 78%, rgba(27, 95, 148, 0.55), transparent 22rem),
    linear-gradient(145deg, #081a35 0%, #061224 62%, #09142a 100%);
}

.hero.site-hero::before,
.hero.site-hero::after {
  display: none;
}

.hero.site-hero > .topbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
}

.brand-link {
  display: block;
  width: clamp(230px, 24vw, 320px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.brand-link img {
  width: 100%;
  aspect-ratio: 2.65 / 1;
  object-fit: cover;
  object-position: 50% 50%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-links a {
  color: inherit;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.32);
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-links a:visited {
  color: inherit;
}

.nav-donate {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.star,
.moon,
.cloud {
  position: absolute;
  display: block;
}

.star {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
  animation: shimmer 4.5s ease-in-out infinite;
}

.star::before,
.star::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1.45rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}

.star::after {
  width: 1px;
  height: 1.45rem;
}

.star-1 { left: 12%; top: 25%; }
.star-2 { left: 47%; top: 15%; animation-delay: 1.2s; }
.star-3 { right: 13%; top: 42%; animation-delay: 2.1s; }
.star-4 { left: 28%; bottom: 26%; animation-delay: 0.6s; }

.moon {
  right: 9%;
  top: 16%;
  width: clamp(4.5rem, 9vw, 8rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8d8 0%, #f7d96f 58%, #d8a73f 100%);
  box-shadow: 0 0 80px rgba(245, 200, 90, 0.48);
}

.cloud {
  width: 18rem;
  height: 5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 1.2rem;
  border-radius: 50%;
  background: inherit;
}

.cloud::before {
  left: 3rem;
  width: 6rem;
  height: 6rem;
}

.cloud::after {
  left: 8rem;
  width: 8rem;
  height: 8rem;
}

.cloud-1 {
  left: -4rem;
  top: 38%;
}

.cloud-2 {
  right: -5rem;
  bottom: 18%;
  transform: scale(0.85);
}

@keyframes shimmer {
  0%, 100% { opacity: 0.42; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.08) rotate(45deg); }
}

.hero-inner.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1120px, calc(100% - 2rem));
  max-width: none;
  min-height: calc(92vh - 5rem);
  margin: 0 auto;
  padding: 2.5rem 0 8rem;
}

.eyebrow,
.section-tag {
  display: inline-block;
  transform: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 10ch;
  margin: 0.7rem 0 1.1rem;
  color: var(--white);
  font-size: clamp(3rem, 9vw, 6.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero-sub {
  max-width: 39rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn-primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(245, 200, 90, 0.28);
}

.btn-primary:hover {
  background: #ffd977;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-visual {
  position: relative;
  min-height: 31rem;
}

.halo {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(28rem, 88%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.94) 0%, rgba(248, 223, 138, 0.84) 36%, rgba(27, 95, 148, 0.16) 64%, transparent 72%);
  box-shadow: inset -18px -22px 55px rgba(7, 26, 52, 0.18), 0 30px 90px rgba(245, 200, 90, 0.23);
}

.portrait-card {
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: min(23rem, 90%);
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-card figcaption {
  color: var(--ink);
  background: var(--white);
  padding: 0.8rem 1rem 0.9rem;
  font-weight: 800;
  font-size: 0.92rem;
  text-align: center;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
}

.container {
  width: min(1060px, 100%);
  max-width: none;
}

.section h2 {
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
}

.section-intro {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.story {
  max-width: 42rem;
}

.story p {
  color: #26384c;
  font-size: 1.08rem;
}

.story strong {
  color: var(--ink);
  font-weight: 900;
}

.story-note {
  position: relative;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68));
  box-shadow: var(--dream-shadow);
}

.story-note::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: -0.6rem;
  width: 4rem;
  height: 1.2rem;
  border-radius: 99px;
  background: rgba(245, 200, 90, 0.75);
  transform: rotate(4deg);
}

.note-star {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.55rem rgba(245, 200, 90, 0.18);
}

.story-note h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.story-note p {
  color: var(--muted);
  font-size: 0.98rem;
}

.fact-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fact-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  box-shadow: 0 10px 30px rgba(7, 26, 52, 0.07);
  transform: none !important;
}

.fact-card:hover {
  transform: translateY(-4px) !important;
}

.fact-emoji {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fact-card h3 {
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1.1;
}

.media-section,
.section-alt {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 18%, rgba(245, 200, 90, 0.18), transparent 14rem),
    radial-gradient(circle at 86% 70%, rgba(242, 123, 104, 0.16), transparent 15rem),
    linear-gradient(150deg, #0a1c38 0%, #061224 100%);
}

.section-alt .section-tag,
.section-alt .section-intro,
.section-alt h2 {
  color: var(--white);
}

.section-alt .section-intro {
  color: rgba(255, 255, 255, 0.75);
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.video-wrap {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #030a14;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.035);
}

.section-donate {
  overflow: hidden;
  padding-top: clamp(4rem, 8vw, 7rem);
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(245, 200, 90, 0.34), transparent 13rem),
    linear-gradient(135deg, #fff7df 0%, #fbe7c7 55%, #f7d8c8 100%);
}

.donate-wave {
  display: none;
}

.section-donate h2 {
  color: var(--ink);
}

.tag-light {
  color: var(--blue);
}

.donate-text {
  color: #45596d;
}

.btn-donate {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(7, 26, 52, 0.24);
}

.btn-donate:hover {
  background: var(--ink-soft);
}

.donate-note {
  color: #596b7b;
}

.donate-note strong {
  color: var(--ink);
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 26, 52, 0.06);
}

.contact-card h3 {
  color: var(--ink);
}

.contact-card a {
  color: var(--blue);
}

.footer {
  background: var(--midnight);
}

.footer-logo {
  width: 220px;
  aspect-ratio: 2.65 / 1;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 12px;
  background: var(--white);
  opacity: 1;
}

.sticky-donate {
  color: var(--ink);
  background: var(--gold);
  font-family: 'Montserrat', 'Manrope', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(7, 26, 52, 0.25);
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .star {
    animation: none;
  }
}

@media (max-width: 920px) {
  .hero.site-hero {
    min-height: auto;
  }

  .hero.site-hero > .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-inner.hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 0 8rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 29rem;
    max-width: 31rem;
    width: 100%;
    margin: 0 auto;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-note {
    max-width: 34rem;
  }

  .fact-cards,
  .video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero.site-hero > .topbar {
    width: min(100% - 1.25rem, 1120px);
    gap: 0.65rem;
  }

  .brand-link {
    width: 185px;
    border-radius: 14px;
  }

  .nav-donate {
    min-height: 2.45rem;
    padding: 0 0.9rem;
    font-size: 0.74rem;
  }

  .hero-inner.hero-grid {
    width: min(100% - 1.25rem, 1120px);
    padding-top: 2.3rem;
    gap: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 15vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
    max-width: 18rem;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
    padding: 1rem 0 0;
  }

  .portrait-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(21rem, calc(100vw - 2.4rem));
    margin: 0 auto;
    transform: rotate(1.5deg);
  }

  .halo {
    top: 1rem;
    left: 50%;
    right: auto;
    width: min(23rem, calc(100vw - 1.5rem));
    transform: translateX(-50%);
  }

  .section {
    padding: 3.7rem 1rem;
  }

  .story p {
    font-size: 1rem;
  }
}

/* ===== Content uitbreiding ===== */
.lead-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 0 2rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(7, 26, 52, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(245, 200, 90, 0.28), transparent 8rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(7, 26, 52, 0.08);
}

.lead-panel::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: -0.55rem;
  width: 4.5rem;
  height: 1.1rem;
  border-radius: 999px;
  background: rgba(245, 200, 90, 0.78);
  transform: rotate(-4deg);
}

.lead-panel p {
  color: #26384c;
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.info-card,
.trust-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.35rem, 2.8vw, 1.9rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 26, 52, 0.07);
}

.info-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: rgba(217, 237, 248, 0.7);
}

.info-card h3,
.trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 0.35rem 0 0.75rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.18;
}

.info-card p,
.trust-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  color: #45596d;
}

.info-card a {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-card p:last-child,
.trust-card p:last-child {
  margin-bottom: 0;
}

.info-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--blue);
  font-family: 'Montserrat', 'Manrope', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.thomas-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.75)),
    linear-gradient(135deg, rgba(245, 200, 90, 0.32), rgba(217, 237, 248, 0.55));
}

.sponsor-card {
  grid-column: span 2;
}

.trust-card {
  grid-column: span 2;
  color: var(--white);
  border: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 200, 90, 0.22), transparent 10rem),
    linear-gradient(135deg, var(--ink) 0%, var(--midnight) 100%);
}

.trust-card .info-label {
  color: var(--gold);
}

.trust-card h3,
.trust-card p {
  color: var(--white);
}

.trust-card p {
  color: rgba(255, 255, 255, 0.78);
}

.btn-donate {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

@media (max-width: 920px) {
  .sponsor-card,
  .trust-card {
    grid-column: auto;
  }

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