:root {
  --ink: #163b63;
  --text: #283640;
  --muted: #66747d;
  --paper: #fffdf8;
  --cream: #fff4df;
  --teal: #139aa0;
  --teal-dark: #08777d;
  --aqua: #72c8c7;
  --green: #73a942;
  --coral: #ef6672;
  --yellow: #f6b21a;
  --blue: #3f83c5;
  --line: rgba(22, 59, 99, 0.13);
  --shadow: 0 18px 50px rgba(22, 59, 99, 0.12);
  --radius: 26px;
  --radius-small: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: ui-rounded, "Avenir Next", Avenir, "Trebuchet MS", system-ui, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 36px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
}

.brand-wordmark { display: grid; width: max-content; line-height: 1; }
.brand-wordmark strong {
  font-size: 1.52rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.brand-wordmark > span {
  margin-top: 7px;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.brand-wordmark small { display: flex; align-items: center; gap: 8px; margin-top: 7px; line-height: 1; }
.brand-wordmark small i { width: 40px; height: 4px; background: var(--ink); border-radius: 999px; }
.brand-wordmark small span { font-size: .66rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.brand-wordmark small em { font-size: .66rem; font-style: normal; font-weight: 850; letter-spacing: .03em; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px;
  border-radius: 10px;
}

.nav-toggle svg { width: 30px; height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  padding: 10px 13px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
}

.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: rgba(19, 154, 160, 0.1);
  color: var(--teal-dark);
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(239, 102, 114, 0.25);
}

.nav-links .nav-cta:hover { background: #dc5260; color: #fff; }
.nav-links.simple-nav { display: flex; position: static; box-shadow: none; border: 0; padding: 0; }

main { overflow: hidden; }

.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.hero {
  position: relative;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 92% 12%, rgba(246,178,26,.24) 0 6%, transparent 6.2%),
    radial-gradient(circle at 83% 28%, rgba(239,102,114,.18) 0 8%, transparent 8.2%),
    linear-gradient(145deg, #fffdf8 5%, #eefafa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -34px;
  height: 68px;
  background: var(--paper);
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 66px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 4px;
  background: var(--yellow);
  border-radius: 99px;
}

h1, h2, h3 { color: var(--ink); line-height: 1.12; margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(2.75rem, 6vw, 5.4rem); letter-spacing: -.045em; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.035em; }
h3 { margin-bottom: 10px; font-size: 1.35rem; }

.hero h1 .green { color: var(--green); }
.hero h1 .coral { color: var(--coral); }

.lead { max-width: 720px; font-size: clamp(1.08rem, 2vw, 1.28rem); color: #465660; }
.hero .lead { max-width: 650px; margin-bottom: 30px; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row.centered { justify-content: center; margin-top: 32px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--coral); box-shadow: 0 10px 24px rgba(239,102,114,.25); }
.button-primary:hover { background: #dc5260; }
.button-secondary { color: var(--ink); background: #fff; border-color: rgba(22,59,99,.14); box-shadow: 0 8px 20px rgba(22,59,99,.07); }
.button-teal { color: #fff; background: var(--teal); box-shadow: 0 10px 24px rgba(19,154,160,.24); }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .95rem; }

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
}

.logo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(22,59,99,.08);
  border-radius: 42% 58% 44% 56% / 54% 40% 60% 46%;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.logo-card img { width: 100%; border-radius: 24px; }
.hero-speech {
  position: absolute;
  top: 18px;
  left: 12px;
  z-index: 4;
  display: grid;
  gap: 1px;
  padding: 13px 18px 12px;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(19,154,160,.28);
  border-radius: 20px 20px 20px 7px;
  box-shadow: 0 12px 28px rgba(22,59,99,.12);
  transform: rotate(-2deg);
}
.hero-speech::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -10px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-right: 2px solid rgba(19,154,160,.28);
  border-bottom: 2px solid rgba(19,154,160,.28);
  transform: rotate(45deg);
}
.hero-speech strong { color: var(--teal-dark); font-size: 1.03rem; line-height: 1.2; }
.hero-speech span { color: var(--muted); font-size: .82rem; line-height: 1.35; }
.float-dot { position: absolute; border-radius: 50%; }
.dot-a { width: 75px; height: 75px; top: 3%; right: 0; background: var(--yellow); }
.dot-b { width: 48px; height: 48px; bottom: 9%; left: 4%; background: var(--coral); }
.dot-c { width: 26px; height: 26px; top: 25%; left: 0; background: var(--blue); }

.section { padding: 90px 0; }
.section-soft { background: #eff9f8; }
.section-cream { background: var(--cream); }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: center; }
.intro-identity {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 30px 34px 34px;
  text-align: center;
  background: linear-gradient(145deg, #effafa, #fffaf0);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}
.intro-identity::before { content: ""; position: absolute; width: 150px; height: 150px; top: -76px; right: -48px; background: rgba(247,183,49,.18); border-radius: 50%; }
.mascot-label { display: inline-flex; padding: 6px 11px; color: var(--teal-dark); background: rgba(19,154,160,.1); border-radius: 999px; font-size: .78rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.intro-identity img { width: 205px; height: 205px; margin: 4px auto -4px; object-fit: contain; filter: drop-shadow(0 12px 10px rgba(22,59,99,.14)); }
.intro-identity h3 { margin-bottom: 8px; font-size: 1.55rem; }
.intro-identity p { margin: 0; color: var(--muted); }
.intro-copy > p:not(.eyebrow) { color: var(--muted); }
.intro-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 25px; }
.intro-point { display: flex; gap: 11px; align-items: flex-start; padding: 15px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.intro-point > span { flex: 0 0 30px; width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; font-size: .9rem; font-weight: 850; }
.intro-point strong { display: block; color: var(--ink); font-size: .95rem; }
.intro-point small { display: block; margin-top: 3px; color: var(--muted); line-height: 1.45; }

.board-section { background: linear-gradient(180deg, #fffaf1, #fffdf9); }
.board-heading { margin-bottom: 34px; }
.board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.board-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 300px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(22,59,99,.08);
}
.board-portrait {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(145deg, #daf3f2, #effafa);
  overflow: hidden;
}
.board-portrait::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -52px;
  bottom: -48px;
  background: rgba(19,154,160,.12);
  border-radius: 50%;
}
.board-portrait-yellow { background: linear-gradient(145deg, #fff0c7, #fff9e9); }
.board-portrait-yellow::before { background: rgba(247,183,49,.2); }
.board-portrait img {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 25px rgba(22,59,99,.16);
}
.board-photo-david { object-position: 50% 24%; }
.board-photo-andreas { object-position: 50% 18%; }
.board-copy { display: flex; flex-direction: column; justify-content: center; padding: 30px; }
.board-role {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--teal-dark);
  background: rgba(19,154,160,.1);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.board-copy h3 { margin-bottom: 11px; font-size: 1.55rem; }
.board-copy p { margin: 0; color: var(--muted); }
.board-quote {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid rgba(19,154,160,.35);
}
.board-quote p {
  font-style: italic;
  line-height: 1.65;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(22,59,99,.07);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--teal);
  border-radius: 22px 18px 24px 16px;
  transform: rotate(-3deg);
}
.card-icon svg { width: 32px; height: 32px; transform: rotate(3deg); }
.card:nth-child(2) .card-icon { background: var(--yellow); }
.card:nth-child(3) .card-icon { background: var(--coral); }
.card p { margin-bottom: 0; color: var(--muted); }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-grid-page { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 1040px; margin: 0 auto; }
.project {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(22,59,99,.08);
}
.project-visual {
  min-height: 230px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
}
.project:nth-child(2) .project-visual { background: linear-gradient(135deg, var(--yellow), #ffcf64); }
.project:nth-child(3) .project-visual { background: linear-gradient(135deg, var(--coral), #f59da5); }
.project-visual svg { width: 88px; height: 88px; opacity: .92; }
.project-st-martin-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #163b63, #3f83c5) !important;
}
.project-st-martin-visual::before,
.project-st-martin-visual::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff4b5;
  border-radius: 50%;
  box-shadow: 76px 30px 0 #fff4b5, 150px -8px 0 #fff4b5, 215px 40px 0 #fff4b5;
  opacity: .8;
}
.project-st-martin-visual::before { top: 34px; left: 32px; }
.project-st-martin-visual::after { right: 34px; bottom: 48px; transform: scale(.65); }
.project-st-martin-visual .project-raphi {
  position: relative;
  z-index: 2;
  width: 215px;
  height: 215px;
  margin: 0;
  filter: drop-shadow(0 12px 15px rgba(0,0,0,.2));
}
.project-body { flex: 1; padding: 26px; }
.status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--teal-dark);
  background: rgba(19,154,160,.11);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.status.done { color: #8e3a43; background: rgba(239,102,114,.12); }
.status.ordered { color: #745700; background: rgba(247,183,49,.2); }
.project-body p { color: var(--muted); }
.project-title { font-size: 1.65rem; }
.project-cta { margin-top: 42px; text-align: center; }

.project-photo-visual { padding: 12px; background: #f4f9f9 !important; }
.project-photo { width: 100%; height: 206px; object-fit: contain; }
.project-secret-visual {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #dfeceb !important;
}
.project-secret-visual .project-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: blur(18px) saturate(.45) contrast(.8);
  image-rendering: pixelated;
  transform: scale(1.18);
}
.project-secret-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(0deg, rgba(22,59,99,.12) 0 14px, rgba(255,255,255,.08) 14px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 14px, rgba(22,59,99,.1) 14px 28px);
  backdrop-filter: blur(7px);
}
.secret-stamp {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
}
.secret-stamp span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: rgba(22,59,99,.9);
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(22,59,99,.25);
  font-size: 1.8rem;
  font-weight: 900;
}
.secret-stamp strong {
  padding: 7px 13px;
  background: rgba(22,59,99,.9);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(22,59,99,.2);
  font-size: .9rem;
}
.project-secret-body { min-height: 230px; }
.secret-redactions { display: grid; gap: 11px; margin-top: 2px; }
.secret-redactions span {
  height: 18px;
  background: linear-gradient(90deg, rgba(22,59,99,.9), rgba(22,59,99,.7));
  border-radius: 6px;
}
.secret-redactions span:nth-child(1) { width: 78%; height: 24px; }
.secret-redactions span:nth-child(2) { width: 94%; }
.secret-redactions span:nth-child(3) { width: 86%; }
.secret-redactions span:nth-child(4) { width: 62%; }
.project-secret-body .secret-hint { margin: 18px 0 0; color: var(--teal-dark); font-size: .95rem; font-weight: 800; }
.project-product-gallery {
  height: 230px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 7px;
  padding: 8px;
  background: #eef7f7 !important;
}
.project-product-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; background: #fff; }
.project-product-overview { grid-row: 1 / 3; object-position: left center; }
.project-product-rider { object-position: 58% center; }
.project-product-wagon { object-position: 27% center; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.support-card {
  padding: 38px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}
.support-card.donate { background: linear-gradient(145deg, #fff, #fff4f5); }
.support-card.join { background: linear-gradient(145deg, #fff, #edfafa); }
.support-card p { color: var(--muted); }
.donate-flex { display: flex; align-items: center; gap: 26px; }
.qr { width: 145px; padding: 9px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.receipt-note { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.receipt-note h3 { margin-bottom: 8px; font-size: 1.2rem; }
.receipt-note p { margin-bottom: 16px; font-size: .96rem; }

.page-hero { padding: 70px 0 54px; background: linear-gradient(145deg, #eefafa, #fffdf8); text-align: center; }
.page-hero .lead { margin: 0 auto; }

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
.form-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-section { margin: 0 0 34px; padding: 0 0 32px; border: 0; border-bottom: 1px solid var(--line); }
.form-section:last-of-type { border-bottom: 0; }
.form-section legend { width: 100%; margin-bottom: 22px; color: var(--ink); font-size: 1.35rem; font-weight: 850; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-full { grid-column: 1 / -1; }
label { display: block; color: var(--ink); font-weight: 750; }
.label-note { color: var(--muted); font-size: .84rem; font-weight: 500; }
input, textarea, select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid #b9c7cc;
  border-radius: 12px;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(19,154,160,.12); }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 12px;
  text-align: center;
  background: #f8fbfb;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
}
.choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice:has(input:checked) { border-color: var(--teal); background: #eaf8f7; }
.choice strong { font-size: 1.28rem; color: var(--ink); }
.check-row { display: flex; align-items: flex-start; gap: 11px; margin: 14px 0; font-weight: 550; }
.check-row input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; }
.form-note { padding: 16px 18px; background: var(--cream); border-radius: 14px; color: #654c21; font-size: .93rem; }
.mt-16 { margin-top: 16px; }
.mt-18 { margin-top: 18px; }
.mt-20 { margin-top: 20px; }
.sidebar { position: sticky; top: 104px; }
.sidebar-box { padding: 26px; background: #eff9f8; border-radius: var(--radius); }
.sidebar-box + .sidebar-box { margin-top: 18px; background: var(--cream); }
.sidebar-box ul { margin: 0; padding-left: 20px; }
.sidebar-box p:last-child { margin-bottom: 0; }
.hp-field { position: absolute !important; left: -9999px !important; }

.legal { max-width: 840px; }
.legal h2 { margin-top: 44px; font-size: 1.7rem; }
.legal h3 { margin-top: 30px; font-size: 1.2rem; }
.legal p, .legal li { color: #45535c; }
.legal-card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-small); }
.legal-card > :first-child { margin-top: 0; }
.download-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }

.site-footer { padding: 54px 0 28px; color: #e9f4f5; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; }
.footer-logo { width: 92px; margin-bottom: 15px; background: #fff; border-radius: 16px; }
.site-footer h3 { color: #fff; font-size: 1.05rem; }
.site-footer a { color: #e9f4f5; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 7px 0; }
.contact-links li, .info-links li { margin: 10px 0; }
.contact-links a, .info-links a { display: inline-flex; align-items: center; gap: 10px; }
.footer-link-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(109, 210, 211, .18);
  border-radius: 50%;
  transition: background .2s ease, transform .2s ease;
}
.footer-link-icon svg { width: 16px; height: 16px; }
.contact-links a:hover .footer-link-icon, .info-links a:hover .footer-link-icon { background: var(--teal); transform: translateY(-1px); }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) li { margin: 10px 0; }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) a { display: inline-flex; align-items: center; gap: 10px; }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) a::before {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(109, 210, 211, .18);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) li:nth-child(1) a::before { content: "♥"; }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) li:nth-child(2) a::before { content: "≡"; }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) li:nth-child(3) a::before { content: "€"; }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) li:nth-child(4) a::before { content: "i"; }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) li:nth-child(5) a::before { content: "✓"; }
.footer-grid > div:nth-child(3) .footer-links:not(.info-links) a:hover::before { background: var(--teal); transform: translateY(-1px); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #bdd1d4; font-size: .9rem; }
.footer-bottom.compact { margin-top: 0; }

.success, .error { max-width: 760px; margin: 50px auto; padding: 30px; border-radius: var(--radius); }
.success { background: #eaf8f1; border: 1px solid #a9d9bc; }
.error { background: #fff0f1; border: 1px solid #efb2b7; }

.supporters-hero { padding: 48px 0; text-align: left; }
.supporters-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 54px;
  align-items: center;
}
.supporters-hero h1 { max-width: 800px; font-size: clamp(2.6rem, 5vw, 4.7rem); }
.supporters-hero .lead { margin: 0; }
.supporters-raphi {
  width: 290px;
  height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 15px 12px rgba(22,59,99,.15));
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.supporter-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(22,59,99,.07);
}
.supporter-logo {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 18px;
  overflow: hidden;
  background: #f8fbfb;
  border-radius: 20px;
}
.supporter-logo img {
  width: auto;
  max-width: 88%;
  max-height: 150px;
  object-fit: contain;
}
.supporter-logo-wide img { max-width: 100%; }
.supporter-card h3 { margin: 20px 4px 2px; text-align: center; font-size: 1.08rem; }

.local-support-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  align-items: center;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.local-support-cta .lead { margin-bottom: 24px; }
.local-receipt-note { margin-bottom: 22px; padding: 18px 20px; background: #eff9f9; border-left: 4px solid var(--teal); border-radius: 0 14px 14px 0; }
.local-receipt-note h3 { margin-bottom: 6px; font-size: 1.15rem; }
.local-receipt-note p { margin: 0; color: var(--muted); }
.local-support-actions { align-items: center; }
.local-support-cta > img {
  width: 245px;
  height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(22,59,99,.13));
}

/* Raphi ergänzt die vorhandenen Bildflächen, Logo und Layout bleiben unverändert. */
.raphi-hero {
  filter: drop-shadow(0 16px 14px rgba(22,59,99,.16));
}

.card-raphi {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 112px;
  height: 112px;
  object-fit: contain;
  pointer-events: none;
}

.project-raphi {
  width: 168px;
  height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 12px 10px rgba(22,59,99,.18));
}

.support-with-raphi,
.donate-with-raphi,
.project-cta-raphi {
  position: relative;
  overflow: hidden;
}

.support-with-raphi { display: flex; flex-direction: column; }
.membership-benefits { margin-top: 22px; }
.membership-benefits h3 { margin-bottom: 11px; font-size: 1.02rem; }
.membership-benefits ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.membership-benefits li { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .95rem; }
.membership-benefits li span { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.join-action { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 20px; }
.support-raphi {
  position: static;
  flex: 0 0 auto;
  width: 155px;
  margin: -28px 0 -28px;
  transform: scaleX(-1);
  pointer-events: none;
}

.donate-with-raphi h2 { padding-right: 86px; }
.donate-raphi {
  position: absolute;
  top: 18px;
  right: 16px;
  width: 102px;
  pointer-events: none;
}

.project-cta-raphi { padding-right: 210px; }
.cta-raphi {
  position: absolute;
  right: 20px;
  bottom: -18px;
  width: 190px;
  pointer-events: none;
}

.sidebar-box-raphi { padding-top: 18px; }
.sidebar-raphi {
  width: 126px;
  margin: -4px auto 6px;
  filter: drop-shadow(0 9px 8px rgba(22,59,99,.12));
}

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 96px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: center; }
}

@media (max-width: 980px) {
  .hero-grid, .intro-grid, .form-shell { grid-template-columns: 1fr; }
  .hero-art { min-height: 400px; }
  .board-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
  .cards, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .supporters-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { position: static; }
}

@media (max-width: 700px) {
  .nav-wrap { min-height: 76px; }
  .brand-wordmark strong { font-size: 1.08rem; }
  .brand-wordmark > span { margin-top: 5px; font-size: .59rem; letter-spacing: .055em; }
  .brand-wordmark small { gap: 5px; margin-top: 5px; }
  .brand-wordmark small i { width: 23px; height: 3px; }
  .brand-wordmark small span, .brand-wordmark small em { font-size: .5rem; }
  .nav-links { top: 76px; }
  .hero { padding-top: 48px; }
  .hero-grid { gap: 28px; }
  .hero-art { min-height: 330px; }
  .hero-speech { top: 2px; left: 8px; padding: 10px 14px 9px; }
  .hero-speech strong { font-size: .94rem; }
  .hero-speech span { font-size: .76rem; }
  .logo-card { width: min(86%, 360px); padding: 22px; }
  .section { padding: 66px 0; }
  .cards, .project-grid, .support-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .supporters-hero { text-align: center; }
  .supporters-hero-grid, .supporters-grid, .local-support-cta { grid-template-columns: 1fr; }
  .supporters-hero-grid { gap: 16px; }
  .supporters-hero .lead { margin: 0 auto; }
  .supporters-raphi { width: 220px; height: 220px; margin: 0 auto -12px; }
  .intro-points { grid-template-columns: 1fr; }
  .intro-identity { padding: 26px 24px 30px; }
  .board-card { grid-template-columns: 1fr; min-height: 0; }
  .board-portrait { min-height: 176px; padding: 16px; }
  .board-portrait img { width: 126px; height: 126px; border-width: 5px; }
  .board-copy { padding: 24px; }
  .board-copy h3 { font-size: 1.35rem; }
  .supporter-logo { min-height: 170px; }
  .local-support-cta { gap: 22px; padding: 26px; text-align: center; }
  .local-support-cta > img { width: 190px; height: 190px; margin: 0 auto; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: auto; }
  .donate-flex { align-items: flex-start; flex-direction: column; }
  .form-card, .support-card { padding: 24px; }
  .support-with-raphi { padding: 24px; }
  .join-action { gap: 6px; padding-top: 16px; }
  .join-action .button { padding-right: 16px; padding-left: 16px; font-size: .95rem; }
  .support-raphi { width: 105px; margin: -14px 0 -18px; }
  .donate-with-raphi h2 { padding-right: 72px; }
  .donate-raphi { top: 12px; right: 10px; width: 84px; }
  .project-cta-raphi { padding: 24px; }
  .cta-raphi { position: static; width: 135px; margin: -8px auto 8px; }
  .footer-grid { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
