/* =========================================================
   Schulförderverein Hasbergen e.V. — Website 2026
   Brandfarben aus dem neuen Logo:
   Blau   #063766
   Grün   #388F38
   Orange #E97115
   ========================================================= */

:root {
  --blue: #063766;
  --blue-2: #0b4b83;
  --blue-soft: #eaf2f8;
  --green: #388f38;
  --green-soft: #edf7ed;
  --orange: #e97115;
  --orange-soft: #fff2e8;
  --ink: #16212b;
  --muted: #61707d;
  --line: #dfe6eb;
  --paper: #ffffff;
  --canvas: #f8faf9;
  --cream: #f7f3ea;
  --shadow: 0 18px 55px rgba(6, 55, 102, .10);
  --shadow-sm: 0 10px 28px rgba(6, 55, 102, .08);
  --radius: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(233, 113, 21, .22); }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--blue); color: white; padding: 10px 16px; border-radius: 10px;
  text-decoration: none; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-white { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-blue { background: var(--blue); color: white; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 900; color: var(--blue);
}
.eyebrow::before { content:""; width: 28px; height: 3px; border-radius: 99px; background: var(--orange); }
.section-blue .eyebrow { color: white; }
.section-blue .eyebrow::before { background: #ffb57b; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin: 0 0 18px; color: var(--blue); }
h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -.02em; }
.section-blue h1, .section-blue h2, .section-blue h3 { color: white; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.7; }
.section-blue .lead { color: rgba(255,255,255,.78); }
.muted { color: var(--muted); }
.kicker { font-weight: 900; color: var(--orange); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(6,55,102,.08);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 240px; }
.brand-mark { width: 46px; height: 46px; flex: 0 0 46px; }
.brand-mark-image { display: block; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--blue); font-size: 1rem; letter-spacing: -.02em; }
.brand-copy span { color: var(--muted); font-size: .78rem; margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { text-decoration: none; font-weight: 760; color: #40505d; font-size: .94rem; padding: 10px 12px; border-radius: 11px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); background: var(--blue-soft); }
.nav-cta { background: var(--orange) !important; color: white !important; box-shadow: 0 8px 20px rgba(233,113,21,.22); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 10px; border-radius: 10px; color: var(--blue); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 9px;
  padding: 14px 20px; border-radius: 13px; border: 1px solid transparent;
  text-decoration: none; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--blue); box-shadow: 0 12px 26px rgba(6,55,102,.18); }
.btn-orange { color: white; background: var(--orange); box-shadow: 0 12px 26px rgba(233,113,21,.18); }
.btn-ghost { color: var(--blue); background: white; border-color: #cfdbe4; }
.btn-light { color: var(--blue); background: white; }
.btn-outline-light { color: white; border-color: rgba(255,255,255,.35); background: transparent; }
.btn svg { width: 18px; height: 18px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 78px 0 74px; background: linear-gradient(180deg, #fff 0%, #f6faf8 100%); }
.hero::before, .hero::after { content:""; position:absolute; border-radius:50%; filter: blur(1px); pointer-events:none; }
.hero::before { width: 430px; height: 430px; right: -180px; top: -200px; background: rgba(233,113,21,.09); }
.hero::after { width: 520px; height: 520px; left: -280px; bottom: -310px; background: rgba(56,143,56,.08); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.hero h1 { max-width: 780px; }
.hero .lead { max-width: 690px; margin-bottom: 30px; }
.hero-highlight { color: var(--green); position: relative; white-space: nowrap; }
.hero-highlight::after { content:""; position:absolute; left:0; right:0; height:8px; bottom:-4px; background:rgba(56,143,56,.16); border-radius:99px; transform:rotate(-1deg); }
.hero-note { margin-top: 25px; display:flex; gap:12px; align-items:center; color:var(--muted); font-size:.93rem; }
.hero-note-dots { display:flex; }
.hero-note-dots i { width:26px;height:26px;border-radius:50%;border:3px solid white;margin-left:-7px;box-shadow:0 2px 8px rgba(0,0,0,.1); }
.hero-note-dots i:first-child { margin-left:0;background:var(--blue); }
.hero-note-dots i:nth-child(2){background:var(--green)}
.hero-note-dots i:nth-child(3){background:var(--orange)}
.hero-art { position: relative; min-height: 520px; }
.logo-card {
  position:absolute; inset:44px 20px 44px 52px; display:flex; align-items:center; justify-content:center;
  background:white; border:1px solid rgba(6,55,102,.08); border-radius:34px; box-shadow:var(--shadow); padding:40px;
  transform:rotate(1.2deg);
}
.logo-card img { width:min(100%, 500px); max-height:100%; object-fit:contain; }
.float-card { position:absolute; z-index:2; background:white; border-radius:18px; box-shadow:var(--shadow-sm); border:1px solid rgba(6,55,102,.08); padding:14px 17px; display:flex; align-items:center; gap:12px; font-weight:850; color:var(--blue); }
.float-card .dot { width:12px;height:12px;border-radius:50%; }
.float-a { left:0; top:18px; transform:rotate(-2deg); }
.float-a .dot { background:var(--green); }
.float-b { right:0; bottom:20px; transform:rotate(2deg); }
.float-b .dot { background:var(--orange); }

.announcement { background: var(--blue); color:white; }
.announcement .container { min-height:62px; display:flex; align-items:center; justify-content:center; gap:14px; text-align:center; }
.announcement strong { color:#ffd7b8; }
.announcement a { color:white; font-weight:800; text-underline-offset:4px; }

/* Impact strip */
.impact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.impact-card { background:white; border:1px solid var(--line); border-radius:var(--radius-md); padding:27px; display:flex; gap:17px; align-items:flex-start; box-shadow:0 6px 16px rgba(6,55,102,.03); }
.impact-icon { width:54px;height:54px;flex:0 0 54px;border-radius:17px;display:grid;place-items:center; }
.impact-icon svg { width:27px;height:27px; }
.impact-card:nth-child(1) .impact-icon { color:var(--blue); background:var(--blue-soft); }
.impact-card:nth-child(2) .impact-icon { color:var(--green); background:var(--green-soft); }
.impact-card:nth-child(3) .impact-icon { color:var(--orange); background:var(--orange-soft); }
.impact-card strong { display:block; color:var(--blue); font-size:1.18rem; margin-bottom:4px; }
.impact-card span { color:var(--muted); font-size:.93rem; }

/* Projects */
.project-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.project-card { position:relative; overflow:hidden; background:white; border:1px solid var(--line); border-radius:24px; padding:28px; min-height:260px; transition:transform .22s ease, box-shadow .22s ease; }
.project-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-sm); }
.project-card::after { content:""; position:absolute; width:130px;height:130px;border-radius:50%;right:-55px;bottom:-62px;opacity:.10;background:currentColor; }
.project-card.blue { color:var(--blue); }
.project-card.green { color:var(--green); }
.project-card.orange { color:var(--orange); }
.project-icon { width:52px;height:52px;border-radius:16px;display:grid;place-items:center;margin-bottom:27px;background:currentColor; color:white; }
.project-icon svg { width:26px;height:26px; }
.project-card h3 { color:var(--blue); }
.project-card p { color:var(--muted); font-size:.95rem; }
.project-link { display:inline-flex;gap:7px;align-items:center;text-decoration:none;font-weight:850;color:var(--blue);margin-top:8px; }
.project-link svg { width:16px;height:16px; }
.project-more { display:flex;justify-content:center;margin-top:32px; }

/* Photo / Story area */
.story-grid { display:grid; grid-template-columns:.88fr 1.12fr; gap:52px; align-items:center; }
.photo-placeholder {
  min-height:470px; border-radius:30px; overflow:hidden; position:relative;
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.55), transparent 25%),
    linear-gradient(145deg, rgba(6,55,102,.96), rgba(56,143,56,.86));
  box-shadow:var(--shadow); color:white; display:flex; align-items:flex-end; padding:34px;
}
.photo-placeholder::before { content:""; position:absolute; width:190px;height:190px;border-radius:50%;background:rgba(233,113,21,.88);right:-35px;top:-28px; }
.photo-placeholder::after { content:""; position:absolute; width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,.16);left:45px;top:55px; }
.photo-placeholder-content { position:relative;z-index:2;max-width:330px; }
.photo-placeholder .mini { display:inline-block;padding:7px 11px;border-radius:99px;background:rgba(255,255,255,.16);font-weight:800;font-size:.82rem;margin-bottom:14px; }
.photo-placeholder h3 { color:white; font-size:2rem; }
.check-list { display:grid;gap:17px;margin:26px 0 0;padding:0;list-style:none; }
.check-list li { display:flex;gap:12px;align-items:flex-start; }
.check-list .check { width:25px;height:25px;border-radius:50%;background:var(--green-soft);color:var(--green);display:grid;place-items:center;flex:0 0 25px;margin-top:1px; }
.check svg { width:14px;height:14px; }

/* Membership / donation */
.support-grid { display:grid;grid-template-columns:1fr 1fr;gap:22px; }
.support-card { border-radius:30px;padding:42px;position:relative;overflow:hidden; }
.support-card.member { background:var(--blue); color:white; }
.support-card.donate { background:var(--orange-soft); border:1px solid #f4d7c0; }
.support-card h2 { font-size:clamp(2rem,3vw,3rem); }
.support-card.member h2 { color:white; }
.support-card.member p { color:rgba(255,255,255,.78); }
.support-card.donate h2 { color:#9f4300; }
.support-card .tag { display:inline-flex;align-items:center;gap:8px;font-weight:900;font-size:.86rem;margin-bottom:24px; }
.support-card.member .tag { color:#bfe3ff; }
.support-card.donate .tag { color:#a94700; }
.support-card.member::after { content:"";position:absolute;width:220px;height:220px;border-radius:50%;right:-100px;bottom:-120px;background:rgba(255,255,255,.08); }
.support-card.donate::after { content:"";position:absolute;width:200px;height:200px;border-radius:50%;right:-90px;top:-80px;background:rgba(233,113,21,.12); }
.price-line { font-size:1.02rem;font-weight:750;margin:25px 0; }
.price-line strong { font-size:1.65rem; }
.bank-box { background:white;border:1px dashed #e6b38c;border-radius:16px;padding:18px;margin:24px 0;color:#7d3b0a; }
.bank-box small { display:block;color:#9d6339;margin-bottom:5px; }
.placeholder-value { font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;letter-spacing:.03em; }

/* Board */
.board-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:18px; }
.person-card { background:white;border:1px solid var(--line);border-radius:22px;padding:25px;text-align:center; }
.avatar { width:74px;height:74px;border-radius:50%;display:grid;place-items:center;margin:0 auto 18px;color:white;font-weight:950;font-size:1.35rem; }
.person-card:nth-child(1) .avatar { background:var(--blue); }
.person-card:nth-child(2) .avatar { background:var(--green); }
.person-card:nth-child(3) .avatar { background:var(--orange); }
.person-card:nth-child(4) .avatar { background:#48718d; }
.person-card strong { display:block;color:var(--blue);font-size:1.06rem; }
.person-card span { color:var(--muted);font-size:.9rem; }

/* CTA */
.cta-box { border-radius:32px;padding:54px;display:flex;align-items:center;justify-content:space-between;gap:40px;background:linear-gradient(115deg,var(--blue),#0a4d82);color:white;overflow:hidden;position:relative; }
.cta-box::before { content:"";position:absolute;width:260px;height:260px;border-radius:50%;right:-90px;top:-130px;background:rgba(56,143,56,.45); }
.cta-box::after { content:"";position:absolute;width:190px;height:190px;border-radius:50%;right:120px;bottom:-150px;background:rgba(233,113,21,.65); }
.cta-copy, .cta-box .btn-row { position:relative;z-index:2; }
.cta-box h2 { color:white;max-width:720px;margin-bottom:10px; }
.cta-box p { color:rgba(255,255,255,.77);margin:0;max-width:670px; }

/* Subpage hero */
.page-hero { padding:78px 0 62px;background:linear-gradient(180deg,#fff,#f2f7f8);border-bottom:1px solid var(--line); }
.breadcrumbs { display:flex;gap:8px;align-items:center;color:var(--muted);font-size:.9rem;margin-bottom:25px; }
.breadcrumbs a { text-decoration:none; }
.breadcrumbs span { color:#a8b2ba; }
.page-hero h1 { font-size:clamp(2.7rem,5vw,4.7rem);max-width:900px; }
.page-hero .lead { max-width:760px; }

/* Project page detail */
.filter-row { display:flex;flex-wrap:wrap;gap:9px;margin-bottom:30px; }
.filter-btn { border:1px solid var(--line);background:white;color:var(--blue);padding:9px 13px;border-radius:99px;font-weight:800; }
.filter-btn.active, .filter-btn:hover { background:var(--blue);color:white;border-color:var(--blue); }
.project-list { display:grid;grid-template-columns:repeat(2,1fr);gap:20px; }
.project-feature { background:white;border:1px solid var(--line);border-radius:25px;overflow:hidden;display:grid;grid-template-columns:170px 1fr;min-height:220px; }
.project-visual { display:grid;place-items:center;position:relative;overflow:hidden;color:white; }
.project-visual.blue { background:linear-gradient(145deg,var(--blue),#0b5894); }
.project-visual.green { background:linear-gradient(145deg,var(--green),#56aa56); }
.project-visual.orange { background:linear-gradient(145deg,var(--orange),#f39b52); }
.project-visual svg { width:64px;height:64px;opacity:.94; }
.project-feature-body { padding:27px; }
.project-meta { font-size:.78rem;text-transform:uppercase;letter-spacing:.09em;font-weight:900;color:var(--green);margin-bottom:8px; }
.project-feature-body p { color:var(--muted);font-size:.94rem; }
.photo-tip { padding:18px 20px;border-radius:16px;background:var(--blue-soft);color:var(--blue);font-size:.9rem;margin-top:34px; }

/* About timeline */
.about-grid { display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start; }
.timeline { display:grid;gap:0; }
.timeline-item { display:grid;grid-template-columns:72px 1fr;gap:18px;position:relative;padding-bottom:35px; }
.timeline-item:not(:last-child)::before { content:"";position:absolute;left:34px;top:46px;bottom:0;width:2px;background:#dce8ef; }
.timeline-year { width:70px;height:42px;border-radius:12px;background:var(--blue-soft);color:var(--blue);font-weight:900;display:grid;place-items:center;z-index:1; }
.timeline-item p { color:var(--muted); }
.values-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:16px; }
.value-card { background:white;border:1px solid var(--line);border-radius:20px;padding:24px; }
.value-card strong { display:block;color:var(--blue);margin-bottom:8px;font-size:1.06rem; }
.value-card p { color:var(--muted);font-size:.92rem;margin:0; }

/* Forms / contact */
.contact-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:40px;align-items:start; }
.contact-card { background:var(--blue);color:white;border-radius:28px;padding:36px; }
.contact-card h2 { color:white;font-size:2.2rem; }
.contact-card p { color:rgba(255,255,255,.76); }
.contact-detail { padding:15px 0;border-top:1px solid rgba(255,255,255,.13); }
.contact-detail strong { display:block;color:white; }
.contact-detail span, .contact-detail a { color:rgba(255,255,255,.72); }
.form-card { background:white;border:1px solid var(--line);border-radius:28px;padding:36px; }
.form-grid { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.field { display:grid;gap:7px; }
.field.full { grid-column:1/-1; }
.field label { font-weight:800;color:var(--blue);font-size:.9rem; }
.field input, .field textarea { width:100%;border:1px solid #ccd7df;border-radius:12px;background:#fbfcfd;padding:12px 14px;color:var(--ink);outline:none; }
.field input:focus, .field textarea:focus { border-color:var(--blue-2);box-shadow:0 0 0 3px rgba(11,75,131,.10); }
.field textarea { min-height:150px;resize:vertical; }
.form-note { color:var(--muted);font-size:.82rem;margin-top:12px; }
.form-status { display:none;margin-top:15px;padding:12px 14px;border-radius:12px;background:var(--orange-soft);color:#8d4109;font-weight:700; }
.form-status.show { display:block; }

/* Legal */
.prose { max-width:860px; }
.prose h2 { font-size:1.75rem;margin-top:42px; }
.prose h3 { font-size:1.18rem;margin-top:30px; }
.prose p, .prose li { color:#485762; }
.placeholder-warning { border:2px solid #f0c29e;background:#fff7f0;border-radius:18px;padding:20px;color:#7e3a0a;margin-bottom:28px; }
.placeholder-warning strong { display:block;margin-bottom:6px;color:#8e3e00; }
code.inline { background:#eef3f6;border-radius:7px;padding:2px 6px; }

/* Footer */
.site-footer { background:#042b50;color:white;padding:62px 0 28px; }
.footer-grid { display:grid;grid-template-columns:1.35fr .7fr .9fr;gap:48px; }
.footer-brand { display:flex;gap:14px;align-items:center;margin-bottom:20px; }
.footer-brand .brand-mark { width:52px;height:52px;flex-basis:52px; }
.footer-brand-mark { background:#fff; border-radius:14px; padding:5px; box-shadow:0 6px 18px rgba(0,0,0,.10); }
.footer-brand strong { font-size:1.08rem; }
.footer-copy { color:rgba(255,255,255,.65);max-width:430px;font-size:.93rem; }
.footer-title { font-weight:900;margin-bottom:14px;color:white; }
.footer-links { display:grid;gap:9px; }
.footer-links a { color:rgba(255,255,255,.72);text-decoration:none;font-size:.92rem; }
.footer-links a:hover { color:white; }
.footer-bottom { margin-top:48px;padding-top:22px;border-top:1px solid rgba(255,255,255,.10);display:flex;justify-content:space-between;gap:20px;color:rgba(255,255,255,.5);font-size:.82rem; }
.brand-dots { display:flex;gap:7px;align-items:center; }
.brand-dots i { width:9px;height:9px;border-radius:50%; }
.brand-dots i:nth-child(1){background:#5ba45b}.brand-dots i:nth-child(2){background:#ef8434}.brand-dots i:nth-child(3){background:#80a3bf}

.reveal { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.reveal.in { opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 1020px) {
  .nav-toggle { display:inline-grid;place-items:center; }
  .nav-links { position:absolute;top:calc(100% + 1px);left:0;right:0;background:white;border-bottom:1px solid var(--line);padding:14px 20px 20px;display:none;flex-direction:column;align-items:stretch;box-shadow:0 18px 28px rgba(6,55,102,.08); }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 14px; }
  .brand { min-width:0; }
  .hero-grid { grid-template-columns:1fr;gap:26px; }
  .hero-art { min-height:430px; }
  .logo-card { inset:25px 8% 25px 8%; }
  .project-grid { grid-template-columns:repeat(2,1fr); }
  .board-grid { grid-template-columns:repeat(2,1fr); }
  .story-grid, .about-grid, .contact-grid { grid-template-columns:1fr; }
  .photo-placeholder { min-height:380px; }
  .project-list { grid-template-columns:1fr; }
  .support-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :first-child { grid-column:1/-1; }
}

@media (max-width: 700px) {
  :root { --header-h:68px; }
  .container { width:min(var(--max),calc(100% - 28px)); }
  .section { padding:70px 0; }
  .section-sm { padding:48px 0; }
.brand {
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.brand-copy {
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: .9rem;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  font-size: .72rem;
  line-height: 1;
}
  .hero { padding:58px 0 46px; }
  .hero h1 { font-size:clamp(2.5rem,13vw,4rem); }
  .hero-art { min-height:360px; }
  .logo-card { inset:28px 6px; padding:23px; border-radius:25px; }
  .float-card { font-size:.78rem;padding:10px 12px; }
.impact-grid,
.project-grid,
.values-grid {
  grid-template-columns: 1fr;
}

/* Vorstand auf Mobilgeräten weiterhin zweispaltig */
.board-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.person-card {
  padding: 20px 12px;
}

.avatar {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.person-card strong {
  font-size: .95rem;
  line-height: 1.25;
}

.person-card span {
  font-size: .82rem;
  line-height: 1.35;
}
  .impact-card { padding:22px; }
  .project-card { min-height:230px; }
  .support-card { padding:30px 25px; }
  .cta-box { padding:38px 27px;display:block; }
  .cta-box .btn-row { margin-top:25px; }
  .page-hero { padding:54px 0 42px; }
  .project-feature { grid-template-columns:1fr; }
  .project-visual { min-height:150px; }
  .form-card, .contact-card { padding:27px 22px; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr;gap:32px; }
  .footer-grid > :first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .announcement .container { padding:12px 0;min-height:0;display:block; }
}

/* Donation payment / GiroCode */
.donation-payment {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
}

.donation-bank {
  min-width: 0;
}

.donation-payment .bank-box {
  margin: 0;
}

.bank-label {
  display: block;
  margin-bottom: 4px;
  color: #9d6339;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bank-iban {
  display: block;
  overflow-wrap: anywhere;
  color: #7d3b0a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  letter-spacing: .025em;
  line-height: 1.5;
}

.donation-note {
  margin: 14px 0 0;
  color: #8d5a34;
  font-size: .84rem;
  line-height: 1.55;
}

.donation-qr {
  margin: 0;
  text-align: center;
}

.donation-qr-image {
  width: 100%;
  max-width: 190px;
  margin: 0 auto;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9c7ad;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(126, 62, 14, .10);
}

.donation-qr-image img {
  display: block;
  width: 100%;
  height: auto;
}

.donation-qr figcaption {
  margin-top: 10px;
  color: #8d5a34;
  font-size: .78rem;
  line-height: 1.4;
}

.donation-qr figcaption strong,
.donation-qr figcaption span {
  display: block;
}

.donation-qr figcaption strong {
  margin-bottom: 2px;
  color: #7d3b0a;
}

@media (max-width: 700px) {
  .donation-payment {
    grid-template-columns: 1fr;
  }

  .donation-qr-image {
    max-width: 180px;
  }
}
