  /* Schriften: selbst gehostet (liegen unter /calendar/fonts/ttf – keine Google-Server) */
  @font-face { font-family: 'Inter'; font-weight: 300; font-display: swap; src: url(/calendar/fonts/ttf/Inter-Light.ttf) format('truetype'); }
  @font-face { font-family: 'Inter'; font-weight: 400; font-display: swap; src: url(/calendar/fonts/ttf/Inter-Regular.ttf) format('truetype'); }
  @font-face { font-family: 'Inter'; font-weight: 500; font-display: swap; src: url(/calendar/fonts/ttf/Inter-Medium.ttf) format('truetype'); }
  @font-face { font-family: 'Inter'; font-weight: 700; font-display: swap; src: url(/calendar/fonts/ttf/Inter-Bold.ttf) format('truetype'); }
  @font-face { font-family: 'Montserrat'; font-weight: 200; font-display: swap; src: url(/calendar/fonts/ttf/Montserrat-ExtraLight.ttf) format('truetype'); }

  :root {
    --navy: #0f1b2d; --navy-2: #16263d; --navy-3: #1f3352;
    --yellow: #ffc838; --yellow-2: #f5b400; --yellow-soft: #fff4d1;
    --cream: #faf7f2; --paper: #ffffff; --ink: #161b24; --muted: #5f6975; --line: #e8e3da;
    --red: #e0473a; --green: #2f8f5b;
    --radius: 20px; --radius-sm: 12px;
    --shadow: 0 12px 34px rgba(15, 27, 45, .12);
    --container: 1160px;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.015em; }
  h1 { font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 700; }
  h2 { font-size: clamp(1.75rem, 3.3vw, 2.6rem); font-weight: 700; }
  h3 { font-size: 1.25rem; font-weight: 700; }
  p { margin: 0 0 1em; }
  .display { font-family: 'Montserrat', 'Inter', sans-serif; font-weight: 200; text-transform: uppercase; letter-spacing: .28em; }
  .eyebrow { display: inline-flex; align-items: center; gap: .5em; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: var(--yellow); padding: .45em 1em; border-radius: 999px; margin-bottom: 1.1rem; }
  .eyebrow.ghost { background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(8px); }
  .muted { color: var(--muted); }
  .container { width: min(var(--container), 100% - 32px); margin-inline: auto; }
  section { padding: clamp(60px, 8vw, 110px) 0; }
  .section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 52px); }
  .section-head p { font-size: 1.12rem; color: var(--muted); }
  .center { text-align: center; margin-inline: auto; }
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* Buttons */
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; padding: .95em 1.6em; border-radius: 999px; font-weight: 700; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-size: 1rem; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; white-space: nowrap; }
  .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
  .btn-primary { background: var(--yellow); color: var(--navy); }
  .btn-primary:hover { background: var(--yellow-2); }
  .btn-dark { background: var(--navy); color: #fff; }
  .btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
  .btn-outline.light { border-color: rgba(255,255,255,.7); color: #fff; }
  .btn-sm { padding: .6em 1.1em; font-size: .92rem; }
  .btn-xs { padding: .45em .9em; font-size: .85rem; }

  /* Header */
  header.site { position: sticky; top: 0; z-index: 50; background: rgba(250,247,242,.88); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
  .nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 700; color: var(--navy); }
  .brand .mark { width: 40px; height: 40px; border-radius: 12px; background: var(--navy); color: var(--yellow); display: grid; place-items: center; font-family: 'Montserrat', sans-serif; font-weight: 200; font-size: 1.25rem; }
  .brand small { display: block; font-weight: 400; font-size: .72rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
  .nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
  .nav ul a { text-decoration: none; font-weight: 500; font-size: .9rem; color: var(--navy); white-space: nowrap; }
  .nav ul a:hover { color: var(--yellow-2); }
  .nav ul a.partner-link { color: var(--yellow-2); }
  .nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--navy); }
  @media (max-width: 1120px) {
    .nav ul { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 16px; gap: 14px; border-bottom: 1px solid var(--line); }
    .nav.open ul { display: flex; }
    .nav-toggle { display: block; }
    .nav > .btn { display: none; }
  }

  /* Hero */
  .hero { position: relative; color: #fff; padding: clamp(80px, 10vw, 140px) 0 clamp(70px, 8vw, 120px); overflow: hidden; background: var(--navy); }
  .hero .bg { position: absolute; inset: 0; background: url(/landingpage/assets/wettbewerb/dortmunder-hafen.jpg) center 40% / cover no-repeat; }
  .hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,27,45,.94) 0%, rgba(15,27,45,.82) 45%, rgba(15,27,45,.35) 100%), linear-gradient(to top, rgba(15,27,45,.9), transparent 45%); }
  .hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; }
  .hero h1 em { font-style: normal; color: var(--yellow); }
  .hero .lead { font-size: 1.2rem; color: rgba(255,255,255,.86); max-width: 580px; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
  .trust { font-size: .88rem; color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; max-width: 620px; }
  .trust strong { color: #fff; font-weight: 500; }
  .live { display: inline-flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); border-radius: 14px; padding: 12px 16px; margin-top: 22px; font-size: .92rem; }
  .live b { color: var(--yellow); font-size: 1.1rem; }
  .live .dot { width: 8px; height: 8px; border-radius: 50%; background: #58d68d; box-shadow: 0 0 0 4px rgba(88,214,141,.25); }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

  /* Kalender-Mockup */
  .calendar-mock { background: #fff; color: #111; border-radius: 10px; box-shadow: 0 40px 80px rgba(0,0,0,.45); padding: 6.5% 6% 5%; aspect-ratio: 210 / 297; max-width: 420px; margin-inline: auto; transform: rotate(-2.5deg); position: relative; }
  .calendar-mock .photo { aspect-ratio: 4 / 3; border-radius: 3px; overflow: hidden; margin: 0 4% 8%; background: #ddd; }
  .calendar-mock .photo img { width: 100%; height: 100%; object-fit: cover; }
  .calendar-mock .credit { position: absolute; right: 8%; top: 4%; font-size: .6rem; color: #fff; background: rgba(0,0,0,.45); padding: 3px 8px; border-radius: 999px; }
  .calendar-mock .title { display: flex; justify-content: space-between; align-items: baseline; margin: 0 2% 3%; }
  .calendar-mock .title .display { font-size: clamp(1rem, 2.6vw, 1.5rem); letter-spacing: .3em; }
  .calendar-mock .title span:last-child { font-weight: 300; font-size: .85rem; }
  .calendar-mock table { width: 100%; border-collapse: collapse; font-size: clamp(.45rem, 1.2vw, .62rem); }
  .calendar-mock th { font-weight: 500; letter-spacing: .12em; font-size: .78em; padding: .5em 0; border: 1px solid #ddd; text-transform: uppercase; }
  .calendar-mock td { border: 1px solid #ddd; height: 2.6em; text-align: right; vertical-align: top; padding: .35em .5em; font-weight: 300; }
  .calendar-mock .we { color: #ff3131; }
  .calendar-mock th.we { font-weight: 700; }
  .sticker { position: absolute; left: -6%; bottom: 8%; background: var(--yellow); color: var(--navy); font-weight: 700; padding: 12px 16px; border-radius: 14px; transform: rotate(-6deg); box-shadow: var(--shadow); font-size: .95rem; line-height: 1.25; }
  .sticker small { display: block; font-weight: 500; font-size: .78rem; }

  /* Stats */
  .stats { background: var(--paper); border-bottom: 1px solid var(--line); padding: 30px 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .stat { text-align: center; padding: 8px; }
  .stat b { display: block; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--navy); line-height: 1.1; }
  .stat span { color: var(--muted); font-size: .93rem; }
  @media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

  /* Grids & cards */
  .grid { display: grid; gap: 22px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }
  @media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
  .card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
  .card.dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #fff; }
  .step { position: relative; }
  .step-no { width: 46px; height: 46px; border-radius: 14px; background: var(--navy); color: var(--yellow); display: grid; place-items: center; font-weight: 700; font-size: 1.15rem; margin-bottom: 14px; }
  .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--yellow-soft); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 12px; }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
  @media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
  .check { list-style: none; padding: 0; margin: 0 0 1.5em; }
  .check li { position: relative; padding-left: 32px; margin-bottom: .7em; }
  .check li::before { content: "✓"; position: absolute; left: 0; top: .1em; width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); color: var(--navy); font-weight: 700; font-size: .8rem; display: grid; place-items: center; }
  .note { background: var(--yellow-soft); border: 1px solid #ffe6a3; border-radius: var(--radius-sm); padding: 14px 18px; font-size: .95rem; }

  /* Share loop / Phone mockup */
  .phone { width: 250px; aspect-ratio: 9 / 18.5; border-radius: 34px; background: #111; padding: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.35); margin-inline: auto; position: relative; }
  .phone .screen { border-radius: 26px; overflow: hidden; height: 100%; position: relative; background: #000; }
  .phone .screen img { width: 100%; height: 100%; object-fit: cover; }
  .phone .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,27,45,.92) 0%, rgba(15,27,45,.2) 50%, rgba(15,27,45,.35) 100%); color: #fff; padding: 22px 18px; display: flex; flex-direction: column; justify-content: flex-end; }
  .phone .overlay .tag { align-self: flex-start; background: var(--yellow); color: var(--navy); font-weight: 700; font-size: .68rem; padding: 4px 10px; border-radius: 999px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
  .phone .overlay h4 { font-size: 1.05rem; line-height: 1.2; margin: 0 0 6px; }
  .phone .overlay p { font-size: .75rem; margin: 0 0 12px; color: rgba(255,255,255,.85); }
  .phone .overlay .vote { background: #fff; color: var(--navy); border-radius: 999px; text-align: center; font-weight: 700; font-size: .8rem; padding: 8px; }
  .phone .top { position: absolute; top: 14px; left: 18px; right: 18px; display: flex; justify-content: space-between; font-size: .7rem; color: #fff; }
  .loop { list-style: none; padding: 0; margin: 0; counter-reset: loop; }
  .loop li { position: relative; padding: 0 0 22px 56px; counter-increment: loop; }
  .loop li::before { content: counter(loop); position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); color: var(--navy); font-weight: 700; display: grid; place-items: center; }
  .loop li::after { content: ""; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: var(--line); }
  .loop li:last-child::after { display: none; }
  .loop li b { display: block; color: var(--navy); margin-bottom: 4px; }
  .loop li span { color: var(--muted); font-size: .97rem; }

  /* Gallery */
  .gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
  .gallery figure { margin: 0; position: relative; border-radius: 16px; overflow: hidden; background: #ddd; }
  .gallery figure.tall { grid-row: span 2; }
  .gallery figure.wide { grid-column: span 2; }
  .gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .gallery figure:hover img { transform: scale(1.04); }
  .gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 40px 14px 12px; background: linear-gradient(to top, rgba(15,27,45,.9), transparent); color: #fff; display: flex; justify-content: space-between; align-items: flex-end; gap: 8px; font-size: .88rem; }
  .gallery figcaption b { display: block; font-size: .95rem; }
  .gallery figcaption small { color: rgba(255,255,255,.75); }
  .vote-btn { background: #fff; color: var(--navy); border: 0; border-radius: 999px; padding: 7px 12px; font-weight: 700; font-size: .82rem; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: transform .15s ease, background .15s ease; }
  .vote-btn:hover { background: var(--yellow); transform: translateY(-1px); }
  .vote-btn.voted { background: var(--yellow); }
  .rank { position: absolute; top: 12px; left: 12px; background: rgba(15,27,45,.8); color: #fff; font-size: .75rem; font-weight: 700; padding: 5px 9px; border-radius: 999px; backdrop-filter: blur(6px); }
  .rank.top { background: var(--yellow); color: var(--navy); }
  @media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } .gallery figure.wide { grid-column: span 2; } }
  @media (max-width: 480px) { .gallery { grid-auto-rows: 150px; } }

  /* Goal */
  .goal { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%); color: #fff; }
  .goal h2, .goal h3 { color: #fff; }
  .goal .muted { color: rgba(255,255,255,.72); }
  .progress { background: rgba(255,255,255,.12); border-radius: 999px; height: 18px; overflow: hidden; margin: 14px 0 8px; }
  .progress > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--yellow), #ffd968); border-radius: 999px; transition: width 1.2s ease; }
  .progress-label { display: flex; justify-content: space-between; font-size: .95rem; }

  /* Timeline */
  .timeline { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .timeline li { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 18px 16px; }
  .timeline li b { display: block; color: var(--navy); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .4em; }
  .timeline li.active { border-color: var(--yellow); background: var(--yellow-soft); }
  @media (max-width: 1000px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 600px) { .timeline { grid-template-columns: 1fr 1fr; } }

  /* Rückblick */
  .pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .pages img { border-radius: 10px; box-shadow: 0 10px 24px rgba(15,27,45,.18); border: 1px solid var(--line); }
  .pages figure { margin: 0; }
  .pages figcaption { font-size: .82rem; color: var(--muted); margin-top: 8px; text-align: center; }
  .press { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
  .press img { border-radius: 10px; box-shadow: 0 10px 24px rgba(15,27,45,.15); }
  .press .quote { font-size: 1.15rem; font-weight: 500; color: var(--navy); border-left: 4px solid var(--yellow); padding-left: 16px; margin: 1em 0; }
  @media (max-width: 800px) { .press { grid-template-columns: 1fr; } .pages { grid-template-columns: repeat(3, 1fr); gap: 8px; } }

  /* Partner teaser */
  .partner-teaser { background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
  .partner-teaser h2 { color: #fff; }
  .partner-teaser ul { list-style: none; padding: 0; margin: 0 0 20px; }
  .partner-teaser li { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.85); }
  .partner-teaser li:first-child { border-top: 0; }
  .tiers { display: grid; gap: 10px; }
  .tiers div { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; }
  .tiers b { color: var(--yellow); }
  @media (max-width: 800px) { .partner-teaser { grid-template-columns: 1fr; } }

  /* FAQ */
  details { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 6px 22px; margin-bottom: 12px; }
  summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; font-size: 1.4rem; color: var(--yellow-2); font-weight: 300; }
  details[open] summary::after { content: "–"; }
  details p { padding-bottom: 14px; color: var(--muted); }

  /* Form */
  form.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  form.contact .full { grid-column: 1 / -1; }
  label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
  input, select, textarea { width: 100%; font: inherit; padding: 12px 14px; border: 1px solid #d5cfc4; border-radius: 10px; background: #fff; }
  textarea { min-height: 120px; resize: vertical; }
  .upload { border: 2px dashed #d5cfc4; border-radius: 12px; padding: 18px; text-align: center; color: var(--muted); font-size: .92rem; background: #fff; }
  @media (max-width: 640px) { form.contact { grid-template-columns: 1fr; } }

  /* Footer */
  footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 48px 0 32px; font-size: .92rem; }
  footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
  footer h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
  footer a { color: #fff; text-decoration: none; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer li { margin-bottom: .5em; }
  .partners { display: flex; flex-wrap: wrap; gap: 10px; }
  .partners span { border: 1px dashed rgba(255,255,255,.35); border-radius: 8px; padding: 8px 12px; font-size: .85rem; }
  .legal { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }
  @media (max-width: 800px) { footer .cols { grid-template-columns: 1fr; } }

  /* Mobile sticky CTA */
  .sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; display: none; gap: 8px; }
  .sticky-cta .btn { flex: 1; box-shadow: var(--shadow); }
  @media (max-width: 700px) { .sticky-cta { display: flex; } body { padding-bottom: 76px; } }
  /* erst nach dem Hero einblenden (JS setzt .show) */
  .sticky-cta { transform: translateY(130%); transition: transform .35s ease; }
  .sticky-cta.show { transform: none; }
  .toast { position: fixed; left: 50%; bottom: 96px; transform: translateX(-50%) translateY(20px); background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 999px; font-size: .9rem; opacity: 0; transition: all .3s ease; z-index: 60; pointer-events: none; max-width: calc(100% - 32px); text-align: center; }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* Presse-Ausriss: als Teaser beschnitten, voller Artikel per Klick */
  .press > a { display: block; position: relative; max-height: 520px; overflow: hidden; border-radius: 10px; }
  .press > a::after { content: "Artikel in voller Größe öffnen ↗"; position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 14px 14px; background: linear-gradient(to top, #fff 30%, rgba(255,255,255,0)); color: var(--navy); font-weight: 700; font-size: .9rem; text-align: center; }
  .press > a img { box-shadow: none; }
  @media (max-width: 600px) {
    .gallery figcaption { flex-direction: column; align-items: flex-start; padding: 34px 10px 10px; gap: 6px; }
    .gallery figcaption b { font-size: .88rem; }
    .vote-btn { padding: 6px 10px; font-size: .78rem; }
  }
  @media (max-width: 480px) { .brand small { display: none; } }

  /* ---- v3: Herzensprojekte, Spendentopf, Danke-Screen, Stimmung ---- */
  .hero-main .bg { background-image: url(/landingpage/assets/wettbewerb/phoenixsee-regenbogen-2.jpg); background-position: center 30%; }
  .hero-main .bg::after { background: linear-gradient(100deg, rgba(15,27,45,.95) 0%, rgba(15,27,45,.85) 42%, rgba(15,27,45,.25) 100%), linear-gradient(to top, rgba(15,27,45,.92), transparent 50%); }
  .nav ul { gap: 16px; }
  .nav ul a { font-size: .88rem; }

  .mood { padding-bottom: clamp(40px, 6vw, 80px); }
  .mood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .mood-grid figure { margin: 0; position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; background: #ddd; }
  .mood-grid figure:nth-child(2), .mood-grid figure:nth-child(4) { margin-top: 28px; }
  .mood-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
  .mood-grid figure:hover img { transform: scale(1.05); }
  .mood-grid figcaption { position: absolute; inset: auto 0 0 0; padding: 40px 14px 12px; background: linear-gradient(to top, rgba(15,27,45,.85), transparent); color: #fff; font-size: .9rem; font-weight: 500; }
  @media (max-width: 800px) { .mood-grid { grid-template-columns: repeat(2, 1fr); } .mood-grid figure:nth-child(2), .mood-grid figure:nth-child(4) { margin-top: 0; } }

  .pot { margin: 22px 0 14px; }
  .pot-bar { display: flex; height: 44px; border-radius: 999px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); }
  .pot-bar i { display: grid; place-items: center; font-style: normal; font-weight: 700; font-size: .95rem; color: var(--navy); }
  .pot-bar .a { background: #ffd968; } .pot-bar .b { background: var(--yellow); } .pot-bar .c { background: #ffe9a8; }
  .pot-legend { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
  .pot-legend li { display: grid; grid-template-columns: 14px 1fr; gap: 12px; align-items: start; }
  .pot-legend li i { width: 14px; height: 14px; border-radius: 4px; margin-top: 6px; }
  .pot-legend .a { background: #ffd968; } .pot-legend .b { background: var(--yellow); } .pot-legend .c { background: #ffe9a8; }
  .pot-legend b { display: block; color: #fff; margin-bottom: 2px; }
  .pot-legend span { color: rgba(255,255,255,.72); font-size: .95rem; grid-column: 2; }

  .thanks { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow); max-width: 420px; margin-inline: auto; }
  .thanks-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
  .thanks-head small { color: var(--muted); }
  .thanks > p { font-weight: 700; color: var(--navy); margin: 0 0 12px; }
  .thanks-btn { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; margin-bottom: 10px; text-decoration: none; color: var(--navy); font-weight: 700; font-size: .95rem; background: #fff; transition: transform .15s ease, border-color .15s ease; }
  .thanks-btn:hover { transform: translateY(-1px); border-color: var(--yellow-2); }
  .thanks-btn.primary { background: var(--yellow); border-color: var(--yellow); }
  .thanks-btn small { font-weight: 400; color: var(--muted); font-size: .78rem; }
  .thanks-btn.primary small { color: var(--navy); }
  .thanks-foot { font-size: .8rem; color: var(--muted); text-align: center; border-top: 1px solid var(--line); padding-top: 10px; margin-top: 4px; }

  .project { display: flex; flex-direction: column; }
  .project-head { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }
  .project-head .icon { margin: 0; flex: 0 0 48px; }
  .project-head h3 { margin: 0; font-size: 1.1rem; }
  .project > p { flex: 1; }
  .project-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 12px; font-size: .92rem; }
  .project-foot a { color: var(--navy); font-weight: 700; text-decoration: none; }
  .project-foot b { color: var(--navy); font-size: 1.05rem; }
  .project-cta { border-style: dashed; border-color: var(--yellow-2); background: var(--yellow-soft); }

  .hospiz { background: var(--paper); border-top: 1px solid var(--line); }
  .hospiz-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
  .hospiz-img img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 900px) { .hospiz-img { aspect-ratio: 4 / 3; } }

  /* ---- v4: Drei Wege, Weitersagen, Termine ---- */
  .ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .way { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
  .way .icon { font-size: 1.5rem; }
  .way h3 { font-size: 1.3rem; margin: 6px 0 8px; }
  .way p { flex: 1; }
  .way .btn { margin-top: 6px; }
  @media (max-width: 900px) { .ways { grid-template-columns: 1fr; } }
  .card.dark .step-no { background: var(--yellow); color: var(--navy); }
  .card.dark h3 { color: #fff; }
  .goal .pot-legend span { color: rgba(255,255,255,.72); }
  .share-row { display: flex; flex-wrap: wrap; gap: 12px; }
  .share-preview { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; align-items: end; }
  .share-preview img { border-radius: 14px; box-shadow: var(--shadow); }
  .dates { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .dates li { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: .9rem; color: var(--muted); }
  .dates li b { display: block; color: var(--navy); font-size: .95rem; margin-bottom: 2px; }
  @media (max-width: 900px) { .dates { grid-template-columns: repeat(2, 1fr); } }
  .quote-box { background: var(--yellow-soft); border-left: 4px solid var(--yellow); border-radius: 0 12px 12px 0; padding: 14px 18px; font-size: 1.02rem; color: var(--navy); }
  .quote-box small { display: block; color: var(--muted); font-size: .85rem; margin-top: 6px; }

  /* v5: Kalenderblatt-Mockups 2027 (Wettbewerbsfotos statt alter Kalenderseiten) */
  .sheets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
  .sheet { background: #fff; color: #111; border-radius: 8px; box-shadow: 0 14px 34px rgba(15,27,45,.16); border: 1px solid var(--line); padding: 7% 6% 6%; aspect-ratio: 210/297; display: flex; flex-direction: column; }
  .sheet .ph { aspect-ratio: 4/3; border-radius: 3px; overflow: hidden; background: #ddd; margin: 0 3% 9%; }
  .sheet .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .sheet .ti { display: flex; justify-content: space-between; align-items: baseline; margin: 0 2% 5%; }
  .sheet .ti b { font-family: 'Montserrat', 'Inter', sans-serif; font-weight: 200; text-transform: uppercase; letter-spacing: .3em; font-size: clamp(.7rem, 1.4vw, 1rem); }
  .sheet .ti span { font-weight: 300; font-size: .65rem; }
  .sheet .grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; flex: 1; }
  .sheet .grid i { display: block; border: 1px solid #e6e6e6; border-radius: 2px; min-height: 8px; }
  .sheet .grid i:nth-child(7n), .sheet .grid i:nth-child(7n-1) { background: #fff4f4; border-color: #f3d4d4; }
  .sheet figcaption, .sheets figcaption { font-size: .82rem; color: var(--muted); margin-top: 8px; text-align: center; }
  .sheets figure { margin: 0; }
  .sheets figure:nth-child(2) { transform: translateY(18px); }
  @media (max-width: 800px) { .sheets { gap: 8px; } .sheets figure:nth-child(2) { transform: none; } }
  /* Fakten-Leiste im Hero (keine Live-Zahlen) */
  .live.facts { font-size: .9rem; }
  .live.facts b { font-size: 1.05rem; margin-right: 2px; }
  /* Rückblick 2026 */
  .origin { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: start; margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
  .origin .old { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
  .origin .old img { border-radius: 8px; border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(15,27,45,.12); }
  .origin .old figure { margin: 0; }
  .origin .old figcaption { font-size: .78rem; color: var(--muted); margin-top: 6px; text-align: center; }
  @media (max-width: 800px) { .origin { grid-template-columns: 1fr; } }
  .origin .quote { font-size: 1.1rem; font-weight: 500; color: var(--navy); border-left: 4px solid var(--yellow); padding-left: 16px; margin: 1em 0; }
  .origin h3 { font-size: 1.35rem; margin: 8px 0 10px; }

  /* v6: einheitliche Navigation auf allen Seiten, Zielgruppen-Leiste, Seiten-Navigation */
  .nav ul a[aria-current="page"] { color: var(--navy); font-weight: 700; box-shadow: inset 0 -2px 0 var(--yellow); padding-bottom: 2px; }
  .audience { background: var(--cream); border-bottom: 1px solid var(--line); }
  .audience .container { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  .audience .lbl, .subnav .lbl { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-right: 6px; font-weight: 600; }
  .audience a { text-decoration: none; color: var(--navy); font-size: .86rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--navy); white-space: nowrap; background: #fff; }
  .audience a:hover { background: var(--navy); color: #fff; }
  .audience a[aria-current="page"] { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
  .subnav { background: var(--paper); border-bottom: 1px solid var(--line); }
  .subnav .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-top: 12px; padding-bottom: 12px; }
  .subnav a { text-decoration: none; font-size: .84rem; font-weight: 600; color: var(--navy); background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; white-space: nowrap; }
  .subnav a:hover { border-color: var(--navy); background: #fff; }
  @media (max-width: 600px) { .audience .long { display: none; } .audience .lbl, .subnav .lbl { width: 100%; margin: 0 0 2px; } .audience a { font-size: .8rem; padding: 6px 11px; } .subnav a { font-size: .8rem; padding: 5px 10px; } }
