:root {
  --paper: #f7f4ee;
  --ink: #1d2524;
  --muted: #66736f;
  --green: #2d6a4f;
  --green-dark: #174434;
  --sun: #d89a28;
  --clay: #b6543a;
  --blue: #4f7e96;
  --line: rgba(29, 37, 36, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 40, 36, 0.18);
}

.confirmation-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  text-align: center;
}

.confirmation-page > div {
  max-width: 720px;
}

.confirmation-page h1 {
  margin-bottom: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

section[id],
div[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Avenir Next, Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 240px;
  height: auto;
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.build-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 56px);
  background: #fff4d8;
  border-bottom: 1px solid rgba(182, 84, 58, 0.24);
  color: #3a2a1d;
  font-size: 15px;
}

.build-note strong {
  color: var(--green-dark);
}

.build-note span {
  color: #534338;
}

.build-note em {
  font-style: normal;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: clamp(700px, 86svh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: -120px 0 0;
  background: url("assets/quo-vadis-huegel-sonnenaufgang.jpg") 82% top / cover no-repeat;
  transform: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 238, 0.42);
}

.hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: block;
  padding: clamp(28px, 4vw, 44px) 0;
}

.hero-copy {
  max-width: 900px;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.series-topic {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.series-topic span {
  color: var(--clay);
  font-family: "Rockwell Extra Bold", Rockwell, Copperplate, Georgia, serif;
  font-size: 1.08em;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 5.7vw, 78px);
  max-width: 620px;
}

.hero-series-title {
  width: min(620px, 100%);
  max-width: none;
}

.hero-series-title img {
  display: block;
  width: 100%;
  height: auto;
}

h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  max-width: 830px;
}

h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.subtitle {
  margin: 16px 0 0;
  color: var(--green-dark);
  font-size: clamp(18px, 1.55vw, 20px);
  font-weight: 750;
  line-height: 1.2;
  max-width: 860px;
}

.guiding-principle {
  max-width: 860px;
  margin: 20px 0 0;
  padding: 14px 0 14px 18px;
  border-left: 4px solid var(--green);
  color: var(--green-dark);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
}

.lead {
  margin: 18px 0 0;
  max-width: 860px;
  color: #25312f;
  font-size: clamp(18px, 1.55vw, 20px);
  font-weight: 600;
}

.lead strong {
  color: var(--green-dark);
}

.initiative-explanation {
  max-width: 900px;
}

.initiative-goal {
  max-width: 880px;
  margin: 20px 0 0;
  color: #25312f;
  font-size: clamp(18px, 1.55vw, 20px);
}

.initiative-goal strong {
  color: var(--green-dark);
}

.understanding-focus {
  max-width: 840px;
  margin-top: 22px;
  color: #25312f;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.45;
}

.understanding-focus strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: clamp(21px, 1.75vw, 23px);
}

.hero-copy > p {
  font-size: clamp(18px, 1.55vw, 20px);
  font-weight: 500;
  line-height: 1.6;
}

.hero-copy > .subtitle {
  font-size: clamp(24px, 2vw, 26px);
  font-weight: 750;
}

.hero-copy > .understanding-focus strong {
  font-size: clamp(24px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-note {
  max-width: 760px;
  margin: 22px 0 0;
  padding: 13px 18px;
  border-left: 4px solid var(--sun);
  border-radius: 0 6px 6px 0;
  background: rgba(247, 244, 238, 0.76);
  color: #202a28;
  font-size: 17px;
  font-weight: 600;
}

.hero-note strong {
  color: var(--green-dark);
}

.hero-note .free-inline {
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(29, 37, 36, 0.22);
}

.section {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 94px) 0;
}

.themes-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f9f7f2;
}

.themes-inner {
  padding-top: clamp(58px, 7vw, 82px);
  padding-bottom: clamp(58px, 7vw, 82px);
}

.themes-heading {
  max-width: 860px;
}

.themes-heading > p:last-child {
  max-width: 820px;
  color: #394743;
  font-size: 19px;
}

.theme-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(38px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.theme-path {
  padding: clamp(32px, 4vw, 48px) clamp(30px, 4vw, 54px) 8px 0;
}

.theme-path + .theme-path {
  padding-right: 0;
  padding-left: clamp(30px, 4vw, 54px);
  border-left: 1px solid var(--line);
}

.theme-path h3 {
  margin-top: 13px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
}

.theme-path > p:not(.series-topic) {
  color: #394743;
}

.theme-poverty h3 {
  color: #8c4333;
}

.theme-democracy h3 {
  color: #365f72;
}

.theme-path .text-link {
  display: inline-block;
  margin-top: 8px;
}

.anchor-alias {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.about-band {
  border-bottom: 1px solid var(--line);
  background: #fbf4e7;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.about-heading h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.about-lead {
  margin: 22px 0 0;
  color: #30403c;
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.55;
}

.about-copy {
  padding-top: 30px;
}

.about-person > p {
  color: #394743;
  font-size: 19px;
}

.about-person > p:first-child {
  margin-top: 0;
}

.about-person + .about-person {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.about-invitation {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.section-copy > p:not(.kicker) {
  color: #394743;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.contact-card,
.action-card,
.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(23, 40, 36, 0.08);
}

.updates-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e8f3eb;
}

.updates {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

.updates-heading {
  grid-column: 1 / -1;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.updates-heading h2 {
  font-size: clamp(34px, 4.2vw, 54px);
}

.updates-heading > p:last-child {
  max-width: 760px;
  margin: 12px 0 0;
  color: #394743;
  font-size: 18px;
}

.featured-updates {
  min-height: 510px;
}

.update-article {
  display: none;
  max-width: 720px;
}

.update-article.active {
  display: block;
}

.update-article time,
.update-teaser time {
  display: block;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.update-article h2 {
  margin-top: 12px;
}

.update-article > .monthly-action-label {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.1;
}

.update-article > p:not(.kicker) {
  color: #394743;
  font-size: 19px;
}

.update-quote {
  margin: 24px 0;
  padding: 22px clamp(20px, 4vw, 30px);
  border-left: 5px solid var(--green);
  background: rgba(255, 255, 255, 0.62);
}

.update-quote p {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.38;
}

.update-quote .quote-translation {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #394743;
  font-size: clamp(18px, 2.1vw, 22px);
}

.update-article > .update-source {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.update-article > .impact-statement {
  margin: 24px 0 18px;
  padding: 22px clamp(20px, 4vw, 28px);
  border-left: 5px solid var(--sun);
  background: #fff7dd;
  color: var(--green-dark);
  font-size: clamp(21px, 2.5vw, 27px);
  font-weight: 800;
  line-height: 1.4;
}

.update-cover-preview {
  width: min(250px, 72vw);
  margin: 24px 0 28px;
}

.update-cover-preview img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 16px 34px rgba(23, 40, 36, 0.18);
}

.update-cover-preview figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.update-list {
  display: grid;
  align-content: start;
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 1px solid var(--line);
}

.update-list > .kicker {
  margin-bottom: 4px;
}

.update-teaser {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.update-teaser[hidden] {
  display: none;
}

.update-teaser strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.update-teaser span {
  color: #52605c;
  font-size: 16px;
  line-height: 1.45;
}

.update-teaser-cover {
  width: 72px;
  height: auto;
  margin: 10px 0 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(23, 40, 36, 0.14);
}

.update-teaser:hover strong,
.update-teaser:focus-visible strong {
  color: var(--green);
}

.books {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f3f1ec;
}

.books-heading {
  max-width: 850px;
  padding-bottom: clamp(34px, 5vw, 52px);
}

.books-heading > p:not(.kicker) {
  max-width: 820px;
  color: #394743;
  font-size: 19px;
}

.books-heading > p.foundation-note {
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 6px solid #712d22;
  background: #a34230;
  color: var(--white);
}

.books-heading .foundation-note span {
  display: block;
  color: var(--white);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
}

.books-heading .foundation-note strong {
  display: block;
  margin: 5px 0 10px;
  color: var(--white);
  font-size: 20px;
}

.books-heading .foundation-note em {
  color: var(--white);
}

.book-briefs {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.book-brief {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: start;
  padding: clamp(34px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.book-cover-compact {
  margin: 0;
}

.book-cover-compact img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(23, 40, 36, 0.14);
}

.book-brief-copy {
  max-width: 740px;
}

.book-brief-copy h3 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.book-brief-copy > p:not(.series-topic) {
  color: #394743;
  font-size: 18px;
}

.book-brief-copy .english-note {
  margin-top: 14px;
  color: var(--muted);
}

.compact-downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 22px;
}

.compact-downloads .text-link {
  margin-top: 0;
}

.compact-downloads .button.secondary {
  border-color: #8c382a;
  color: #712d22;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}

.compact-downloads .button.secondary:hover,
.compact-downloads .button.secondary:focus-visible {
  border-color: #712d22;
  color: var(--white);
  background: #712d22;
  box-shadow: 0 10px 20px rgba(113, 45, 34, 0.24);
  transform: translateY(-2px);
}

.book-brief-copy .amazon-availability-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.paperback-offer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-top: 4px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #cbd0cc;
  border-radius: 22px;
  background: #e3e5e2;
  box-shadow: 0 14px 30px rgba(23, 40, 36, 0.1);
}

.paperback-stack {
  position: relative;
  min-height: 306px;
  margin: 0;
  isolation: isolate;
}

.paperback {
  position: absolute;
  width: 166px;
  aspect-ratio: 842 / 1264;
  margin: 0;
  border-radius: 4px 8px 8px 4px;
  background: #eee6d9;
  box-shadow: 0 22px 38px rgba(46, 32, 18, 0.24);
  transform-origin: 50% 100%;
}

.paperback::before {
  content: "";
  position: absolute;
  inset: 7px -10px 7px 9px;
  z-index: -1;
  border-radius: 2px 9px 9px 2px;
  background: repeating-linear-gradient(90deg, #faf5ec 0 2px, #d8d0c4 2px 3px);
  box-shadow: 7px 9px 14px rgba(38, 28, 17, 0.18);
}

.paperback img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.paperback.de {
  z-index: 2;
  left: 42px;
  top: 32px;
  transform: rotate(-6deg);
}

.paperback.en {
  z-index: 1;
  top: 4px;
  right: 42px;
  transform: rotate(6deg);
}

.paperback-copy .kicker {
  margin-bottom: 8px;
  color: #6e3429;
}

.paperback-copy h4 {
  margin: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.08;
}

.paperback-copy > p:not(.kicker) {
  max-width: 580px;
  margin: 14px 0 0;
  color: #394743;
  font-size: 17px;
  line-height: 1.55;
}

.paperback-actions {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.paperback-actions .button {
  justify-content: center;
  min-height: 50px;
  padding: 12px 17px;
  border: 2px solid var(--green);
  color: var(--white);
  text-align: center;
  background: var(--green);
  box-shadow: 0 7px 16px rgba(23, 40, 36, 0.18);
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}

.paperback-actions .button:hover,
.paperback-actions .button:focus-visible {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 10px 20px rgba(23, 40, 36, 0.24);
  transform: translateY(-2px);
}

.paperback-actions .button.secondary {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.paperback-actions .button.secondary:hover,
.paperback-actions .button.secondary:focus-visible {
  border-color: var(--green-dark);
  color: var(--white);
  background: var(--green-dark);
}

@media (max-width: 780px) {
  .paperback-offer {
    grid-template-columns: 1fr;
  }

  .paperback-stack {
    width: min(390px, 100%);
    min-height: 306px;
    margin: 0 auto;
  }
}

@media (max-width: 470px) {
  .paperback-offer {
    padding: 24px 18px;
  }

  .paperback-stack {
    min-height: 252px;
  }

  .paperback {
    width: 132px;
  }

  .paperback.de {
    left: 4px;
  }

  .paperback.en {
    right: 4px;
  }
}

.book-brief-copy .book-release {
  margin: 18px 0 0;
  width: fit-content;
  min-width: min(100%, 310px);
  padding: 12px 16px;
  border-left: 4px solid var(--sun);
  background: #fff1c7;
  color: var(--green-dark);
}

.book-release span,
.book-release strong {
  display: block;
}

.book-release span {
  font-size: 14px;
  font-weight: 750;
}

.book-release strong {
  margin-top: 2px;
  font-size: 23px;
  line-height: 1.2;
}

.book-brief-copy .book-digital-note {
  margin: 6px 0 0;
  color: var(--green-dark);
  font-weight: 750;
}

.button.download-ready {
  min-width: 240px;
  min-height: 50px;
  padding: 12px 18px;
  background: #a34230;
  color: var(--white);
  font-size: 16px;
  box-shadow: 0 7px 16px rgba(113, 45, 34, 0.2);
}

.button.download-ready:hover,
.button.download-ready:focus-visible {
  background: #712d22;
}

.ebook-download-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: #625a45;
  font-size: 14px;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 850;
}

.project-card .text-link {
  width: fit-content;
  padding: 10px 15px;
  border-radius: 5px;
  background: var(--clay);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.project-card .text-link:hover,
.project-card .text-link:focus-visible {
  background: #943f2d;
  transform: translateY(-1px);
}

.action {
  border-top: 1px solid var(--line);
}

.action-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.action-choice-grid.single-action {
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
}

.action-card {
  display: block;
  padding: clamp(22px, 4vw, 32px);
}

.action-card.highlighted {
  border-color: rgba(45, 106, 79, 0.32);
  background: #f4fbf6;
}

.action-card h3,
.project-card h3 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.action-card p,
.project-card p {
  color: #394743;
}

.action-card .button {
  margin-top: 8px;
}

.fund-explainer {
  margin: 24px 0 0;
  padding: 20px clamp(18px, 3vw, 26px);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
}

.fund-explainer h4 {
  margin: 0;
  color: var(--green-dark);
  font-size: 19px;
}

.fund-explainer h4:not(:first-child) {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.fund-explainer p {
  margin: 10px 0 0;
}

.fund-explainer ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: #394743;
}

.fund-explainer li + li {
  margin-top: 7px;
}

.fund-source-note {
  margin-top: 16px;
  color: var(--muted) !important;
  font-size: 14px;
}

.action-intro {
  margin-top: clamp(46px, 7vw, 76px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.project-card {
  padding: clamp(22px, 4vw, 30px);
}

.project-card.monthly-project {
  border-color: rgba(181, 58, 47, 0.42);
  box-shadow: 0 18px 40px rgba(86, 42, 34, 0.12);
}

.monthly-project-label {
  margin-bottom: 12px;
  color: #a8382f;
}

.project-card.wide {
  grid-column: 1 / -1;
}

.project-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef3ee;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.project-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.project-facts div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.project-facts dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.project-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.source-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.action-note {
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  background: #edf3ee;
  color: #2d3d38;
  font-size: 16px;
}

.action-note.caution {
  border-left-color: var(--clay);
  background: #fff1eb;
}

.trust-note {
  max-width: 820px;
  margin: 26px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--green-dark) !important;
}

.newsletter-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #e4ece4;
}

.newsletter-inner {
  width: min(1100px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 76px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.newsletter-copy h2 {
  font-size: clamp(32px, 4.2vw, 54px);
}

.newsletter-copy > p:not(.kicker) {
  max-width: 620px;
  color: #394743;
}

.newsletter {
  margin: 0;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.newsletter label {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-weight: 850;
}

.newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(29, 37, 36, 0.22);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--ink);
  font: inherit;
  background: #fbfaf7;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note a {
  color: var(--green-dark);
  font-weight: 750;
}

.newsletter-reminder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  margin-top: clamp(18px, 3vw, 34px);
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(36, 85, 65, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(23, 40, 36, 0.08);
  scroll-margin-top: 100px;
}

.newsletter-reminder h3 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.newsletter-reminder p:not(.kicker) {
  max-width: 720px;
  color: #394743;
}

.newsletter-reminder .newsletter-promise {
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 750;
}

.newsletter-reminder .newsletter {
  min-width: 0;
  width: 100%;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 26px;
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-card strong {
  color: var(--green-dark);
  font-size: 24px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a,
.back-link {
  color: var(--green-dark);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.back-to-top {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 2.5vw, 28px);
  z-index: 20;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 8px 24px rgba(23, 40, 36, 0.24);
  color: #ffffff;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--green);
}

.legal-page {
  min-height: 100vh;
  font-size: 15px;
}

.legal-header {
  position: relative;
}

.legal-main {
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 68px) 0 clamp(58px, 8vw, 88px);
}

.legal-title {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-title h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
}

.legal-title > p:last-child {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 0;
}

.legal-content section {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 7px;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.25;
}

.legal-content p {
  max-width: 720px;
  margin: 0;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.redirect-panel {
  width: min(560px, 100%);
  text-align: center;
}

.redirect-panel img {
  width: min(220px, 70%);
  height: auto;
  margin: 0 auto 34px;
}

.redirect-panel h1 {
  margin: 8px 0 16px;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.05;
}

.redirect-panel p:not(.kicker) {
  max-width: 440px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  max-width: min(460px, calc(100% - 32px));
  transform: translate(-50%, 120px);
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(23, 40, 36, 0.14);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 6px;
  }

  .site-nav a:hover {
    background: #eef3ee;
  }

  .build-note {
    align-items: flex-start;
    font-size: 14px;
  }

  .hero-inner,
  .about-inner,
  .contact,
  .action-choice-grid,
  .project-grid,
  .updates,
  .theme-paths {
    grid-template-columns: 1fr;
  }

  .theme-path {
    padding-right: 0;
  }

  .theme-path + .theme-path {
    margin-top: 30px;
    padding-top: 38px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: 78% top;
    transform: none;
  }

  .hero-bg::after {
    background: rgba(247, 244, 238, 0.48);
  }

  .status-pill {
    border-radius: 8px;
  }

  .featured-updates {
    min-height: auto;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
  }

  .newsletter-reminder {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .update-list {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .newsletter div {
    grid-template-columns: 1fr;
  }

  .project-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .book-brief {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
  }

  .button.download-ready {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .book-brief {
    grid-template-columns: 1fr;
  }

  .book-cover-compact {
    width: 118px;
  }

  .compact-downloads {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-downloads .button {
    width: 100%;
  }
}

@media (max-width: 470px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 190px;
  }

  .hero-series-title {
    width: min(460px, 100%);
  }

  .button,
  input {
    border-radius: 8px;
  }

  .project-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .back-link {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
