/* =============================================================
   Sonnenkinder e.V. v2 - Soft Editorial Warmth
   ============================================================= */

:root {
  --sun: #E89520;
  --sun-deep: #B8730E;
  --sun-press: #8A5608; /* hover fill: white text ≥ 4.5:1 */
  --sun-soft: #F6E4C4;
  --sun-ink: #0A3A45; /* text on sun ≥ 4.5:1 */
  --teal: #0D5566;
  --teal-deep: #0A3A45;
  --ink: #243038;
  --ink-soft: #55626B;
  --ink-muted: #7A8690;
  --paper: #FFFEFB;
  --mist: #F0F3F2;
  --mist-deep: #E4EAE8;
  --line: rgba(13, 85, 102, 0.12);
  --line-strong: rgba(13, 85, 102, 0.2);
  --shadow: 0 18px 40px -22px rgba(10, 58, 69, 0.32);
  --shadow-soft: 0 8px 24px -16px rgba(10, 58, 69, 0.22);
  --font-display: "Source Serif 4", "Source Serif 4 Fallback", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Source Sans 3 Fallback", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --container: 1120px;
  --radius: 14px;
  --header-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2.5px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: rgba(232, 149, 32, 0.35); color: var(--teal-deep); }

/* Metric-matched Fallbacks: nur wenn die Webfont nach der block-Phase (~3 s) noch fehlt */
@font-face {
  font-family: "Source Serif 4 Fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 104%;
  ascent-override: 103.6%;
  descent-override: 33.5%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Source Sans 3 Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
  size-adjust: 94%;
  ascent-override: 102.4%;
  descent-override: 40%;
  line-gap-override: 0%;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--teal);
  text-wrap: balance;
}
.display {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
h2.section-title { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }
p { text-wrap: pretty; }
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 42ch;
}
.measure { max-width: 65ch; }
.num { font-variant-numeric: tabular-nums; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2rem);
}
.section { padding-block: clamp(3.5rem, 8vw, 6.25rem); }
.section.tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.section--mist { background: var(--mist-deep); }
.section--paper { background: var(--paper); }
.section--teal {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.88);
}
.section--teal h2 { color: #fff; }
.section--teal p { color: rgba(255, 255, 255, 0.75); }

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--sun);
  color: var(--sun-ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: none;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.btn:hover {
  background: var(--sun-press);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn:active { transform: scale(0.98); }
.btn.ghost {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--line-strong);
  box-shadow: none;
}
.btn.ghost:hover {
  background: var(--paper);
  color: var(--teal);
  box-shadow: var(--shadow-soft);
}
.btn.light { background: var(--paper); color: var(--teal); box-shadow: none; }
.btn.full { width: 100%; border-radius: 10px; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--teal);
  color: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: 2.5px solid #fff;
  outline-offset: 3px;
}

/* LQIP + reserved paint area before decode */
.media-frame {
  display: block;
  background-color: var(--mist-deep);
  overflow: hidden;
}
/* width nur außerhalb absolut gefüllter Hero-Medien */
.media-frame > img {
  display: block;
}
.feature-row .media-frame > img,
.field-card .media-frame > img,
.field-block .media-frame > img {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(240, 243, 242, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 254, 251, 0.94);
}
@media (prefers-reduced-transparency: reduce) {
  .site-header { backdrop-filter: none; background: var(--mist); }
}
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.7rem clamp(1.15rem, 4vw, 2rem);
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  flex: none; font-family: var(--font-display); font-weight: 600;
  color: var(--teal); letter-spacing: -0.02em;
}
.brand .mark { width: 32px; height: 32px; flex: none; }
.brand-text { font-size: 1.05rem; }
.brand-text span {
  font-family: var(--font-body);
  font-weight: 600; color: var(--ink-soft); font-size: 0.8rem;
  margin-left: 0.3rem;
}

.nav-links {
  display: flex; align-items: center; gap: 0.1rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
  padding: 0.4rem 0.7rem; border-radius: 6px;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); background: rgba(232, 149, 32, 0.16); }
.nav-links a.nav-cta {
  background: var(--sun);
  color: var(--sun-ink);
  margin-left: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}
.nav-links a.nav-cta:hover {
  background: var(--sun-press);
  color: #fff;
}

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border-radius: 8px;
  place-items: center; color: var(--teal);
  background: rgba(13, 85, 102, 0.06);
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav-links {
    display: none; position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch;
    background: var(--paper);
    padding: 0.75rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0.85rem; }
  .nav-links a.nav-cta { margin: 0.4rem 0 0; text-align: center; }
  .site-header { position: sticky; }
  .nav-inner { position: relative; }
}

/* Cinematic hero */
.hero-cinematic {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--teal-deep);
}
.hero-cinematic .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-cinematic .hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
  /* LQIP muss denselben Ausschnitt wie das Bild haben */
  background-position: center 60% !important;
  background-size: cover !important;
}
.hero-cinematic .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero-cinematic.in .hero-bg img,
.hero-cinematic .hero-bg.is-ready img {
  transform: scale(1);
}
.hero-cinematic .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 58, 69, 0.78) 0%, rgba(10, 58, 69, 0.45) 42%, rgba(10, 58, 69, 0.18) 70%, rgba(10, 58, 69, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 58, 69, 0.25) 0%, rgba(10, 58, 69, 0.15) 40%, rgba(10, 58, 69, 0.72) 100%);
  pointer-events: none;
}
.hero-cinematic .hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 12vh, 7rem) 0 clamp(2.75rem, 7vh, 4.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 34rem;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  color: var(--sun-soft);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-cinematic h1.hero-brand {
  color: var(--sun-soft);
  margin: 0;
}
.hero-cinematic .display {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.hero-cinematic .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 38ch;
}
.hero-cinematic .btn.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.hero-cinematic .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
@media (max-width: 720px) {
  .hero-cinematic { min-height: min(78vh, 680px); }
  .hero-cinematic .hero-veil {
    background:
      linear-gradient(180deg, rgba(10, 58, 69, 0.35) 0%, rgba(10, 58, 69, 0.55) 45%, rgba(10, 58, 69, 0.88) 100%);
  }
}

.section-head {
  max-width: 38rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex; flex-direction: column; gap: 0.65rem;
}
.section-head p { color: var(--ink-soft); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.feature-row.flip > :first-child { order: 2; }
.feature-row.flip > :last-child { order: 1; }
.feature-row picture,
.focus-item picture { display: block; width: 100%; }
.feature-row img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.flip > :first-child,
  .feature-row.flip > :last-child { order: unset; }
}

.prose p + p { margin-top: 0.9rem; }
.prose a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.focus-list { display: grid; gap: 1.5rem; }
.focus-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.focus-item:last-child { border-bottom: none; padding-bottom: 0; }
.focus-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px;
}
.focus-item h3 { margin-bottom: 0.35rem; }
.focus-item p { color: var(--ink-soft); }
@media (max-width: 640px) {
  .focus-item { grid-template-columns: 1fr; }
  .focus-item img { max-width: 180px; }
}

.note {
  background: var(--paper);
  border-left: 3px solid var(--sun);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-soft);
  max-width: 65ch;
}

.donate-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.donate-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.9rem;
  position: sticky; top: calc(var(--header-h) + 1rem);
  box-shadow: var(--shadow-soft);
}
.bank-box {
  background: var(--mist);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  font-size: 0.95rem; line-height: 1.7;
  border: 1px solid var(--line);
}
.bank-box strong { color: var(--teal); }
.iban-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  margin-top: 0.3rem;
}
.iban-row code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85rem;
  background: var(--paper); padding: 0.3rem 0.5rem;
  border-radius: 6px; border: 1px solid var(--line);
}
.copy-btn {
  font-size: 0.8rem; font-weight: 700; color: var(--teal);
  padding: 0.35rem 0.7rem; border-radius: 6px;
  background: rgba(232, 149, 32, 0.22);
}
.copy-btn:hover { background: rgba(232, 149, 32, 0.38); }
.copy-btn.ok { background: rgba(13, 85, 102, 0.14); }

.reason-list { display: grid; gap: 1.1rem; margin-top: 1.25rem; }
.reason h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.reason p { color: var(--ink-soft); font-size: 0.96rem; }

@media (max-width: 860px) {
  .donate-panel { grid-template-columns: 1fr; }
  .donate-card { position: static; }
}

.timeline {
  display: grid; gap: 0;
  border-left: 2px solid var(--line);
  margin-left: 0.35rem;
}
.timeline-item {
  position: relative;
  padding: 0 0 1.5rem 1.35rem;
}
.timeline-item::before {
  content: "";
  position: absolute; left: -6px; top: 0.4rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sun);
  border: 2px solid var(--mist);
}
.section--mist .timeline-item::before { border-color: var(--mist-deep); }
.timeline-item time {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--sun-deep); margin-bottom: 0.2rem;
}
.timeline-item p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 0.25rem; }

.partner-list {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0;
  color: var(--ink-soft);
}
.partner-list a {
  color: var(--teal); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  margin-right: 0.15rem;
}
.partner-list span { margin: 0 0.35rem; color: var(--ink-muted); }

.page-hero {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 1.25rem;
  position: relative;
}
.page-hero::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 1.25rem;
  background: var(--sun);
  border-radius: 2px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch; margin-top: 0.55rem;
}
.crumb { font-size: 0.88rem; color: var(--ink-soft); }
.crumb a { color: var(--teal); font-weight: 600; }

.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--teal); }
.field label .req {
  color: var(--sun-deep);
  font-weight: 700;
  margin-left: 0.15rem;
}
.field label .req-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field input,
.field select,
.field textarea {
  min-height: 48px;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 85, 102, 0.14);
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #a33;
}
.field .hint { font-size: 0.82rem; color: var(--ink-muted); }
.form-status {
  display: none; margin-top: 0.5rem;
  padding: 0.8rem 1rem; border-radius: 8px;
  background: rgba(13, 85, 102, 0.1); color: var(--teal);
  font-weight: 600; font-size: 0.95rem;
}
.form-status.show { display: block; }
.form-status.is-error { background: rgba(170, 51, 51, 0.1); color: #8a2a2a; }
/* Honeypot: für Menschen unsichtbar, Bots füllen es aus */
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 1rem; margin-top: 1.1rem; }
.contact-list dt {
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-muted); margin-bottom: 0.15rem;
}
.contact-list dd { font-weight: 600; }
.contact-list a {
  color: var(--teal);
  text-decoration: underline; text-underline-offset: 3px;
}

.legal-block {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  max-width: 720px;
}
.legal-block h2 { margin: 1.5rem 0 0.55rem; font-size: 1.15rem; }
.legal-block h2:first-child { margin-top: 0; }
.legal-block p + p { margin-top: 0.7rem; }
.legal-block p { color: var(--ink-soft); }
.legal-block a {
  color: var(--teal);
  text-decoration: underline; text-underline-offset: 3px;
}

.board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.board div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.board strong { display: block; color: var(--teal); margin-bottom: 0.15rem; }
.board span { color: var(--ink-soft); }
.board a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 600px) { .board { grid-template-columns: 1fr; } }

.site-footer {
  background: var(--teal-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(2.25rem, 4vw, 3rem) 0 1.35rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer h3 { color: #fff; font-size: 0.92rem; margin-bottom: 0.7rem; font-family: var(--font-body); }
.site-footer a {
  display: block; padding: 0.22rem 0;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer a:hover { color: #fff; }
.footer-brand {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem; color: #fff; margin-bottom: 0.45rem;
}
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  justify-content: space-between; padding-top: 1.1rem;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-cinematic .hero-bg img { transform: none; transition: none; }
}

.text-link {
  font-weight: 700; color: var(--teal);
  text-decoration: underline; text-underline-offset: 3px;
}

/* Förderbereiche: Therapie = 2/3, Stack = 1/3, Digital eigenes Raster */
.fields {
  --fields-gutter: 0.5rem;
  --wide-a: 0.9fr;
  --wide-b: 1.1fr;
  display: grid;
  grid-template-columns: minmax(0, 2fr) var(--fields-gutter) minmax(0, 1fr);
  row-gap: 0.55rem;
  column-gap: 0;
  align-items: stretch;
  justify-items: stretch;
}
.fields-stack {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.field-card.lead {
  grid-column: 1;
  width: 100%;
  max-width: none;
  min-width: 0;
  justify-self: stretch;
}
.fields-stack .field-card {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
}
.field-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  color: inherit;
}
a.field-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.field-card.lead picture,
.fields-stack .field-card picture {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.field-card.lead img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 30%;
}
.fields-stack .field-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  aspect-ratio: auto;
  object-fit: cover;
}
.field-card.lead .body {
  flex: 0 0 auto;
  width: 100%;
  padding: 1.25rem 1.3rem 1.35rem;
  gap: 0.5rem;
  box-sizing: border-box;
}
.field-card.lead h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 600;
}
.field-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, var(--wide-a)) var(--fields-gutter) minmax(0, var(--wide-b));
  column-gap: 0;
  align-items: stretch;
  height: auto;
  width: 100%;
}
.field-card.wide picture {
  grid-column: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  min-width: 0;
}
.field-card.wide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  aspect-ratio: auto;
  object-fit: cover;
}
.field-card.wide .body {
  grid-column: 3;
  justify-content: center;
  padding: 1.5rem 1.6rem;
  flex: none;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.field-card img {
  transition: transform 0.7s var(--ease);
}
a.field-card:hover img { transform: scale(1.03); }
.field-card .body {
  padding: 1.05rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 0 0 auto;
}
.field-card .kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sun-deep);
}
.field-card h3 { font-size: 1.12rem; }
.field-card .body > p:not(.kicker) {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.field-card .more {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
@media (max-width: 860px) {
  .fields {
    grid-template-columns: 1fr;
  }
  .field-card.lead,
  .fields-stack,
  .field-card.wide {
    grid-column: auto;
  }
  .fields-stack {
    display: contents;
  }
  .field-card.lead picture,
  .fields-stack .field-card picture {
    flex: none;
  }
  .field-card.lead img,
  .fields-stack .field-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .field-card.wide {
    grid-template-columns: 1fr;
  }
  .field-card.wide picture,
  .field-card.wide .body {
    grid-column: auto;
  }
  .field-card.wide img {
    min-height: 0;
    aspect-ratio: 16 / 10;
    height: auto;
  }
}

/* Soft invite (was loud sun-band) */
.sun-band {
  background:
    linear-gradient(135deg, rgba(232, 149, 32, 0.18), rgba(232, 149, 32, 0.08)),
    var(--paper);
  color: var(--teal-deep);
  padding: clamp(3.25rem, 8vw, 5.5rem) 0;
  border-block: 1px solid rgba(232, 149, 32, 0.28);
  position: relative;
}
.sun-band::before { display: none; }
.sun-band .inner { max-width: 36rem; }
.sun-band h2 {
  color: var(--teal);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}
.sun-band p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  max-width: 42ch;
  font-size: 1.05rem;
}
.sun-band .actions {
  display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem;
}
.sun-band .btn {
  background: var(--sun);
  color: var(--sun-ink);
}
.sun-band .btn:hover {
  background: var(--sun-press);
  color: #fff;
}
.sun-band .btn.ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--teal);
}
.sun-band .btn.ghost:hover { background: var(--mist); }

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--teal);
  max-width: 22ch;
  letter-spacing: -0.015em;
}
.pullquote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.partner-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}
.partner-item .favicon {
  width: 48px; height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 6px;
}
.partner-item .partner-copy { min-width: 0; }
.partner-item h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.partner-item p { color: var(--ink-soft); font-size: 0.95rem; }
.partner-item a { color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px) {
  .partner-grid { grid-template-columns: 1fr; }
}

.field-block { scroll-margin-top: calc(var(--header-h) + 1rem); }
.field-block + .field-block {
  margin-top: clamp(3rem, 6vw, 4.75rem);
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
  border-top: 1px solid var(--line);
}
.field-block .kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sun-deep);
  margin-bottom: 0.45rem;
}
