:root {
  --ink: #171511;
  --charcoal: #24211d;
  --muted: #68645c;
  --paper: #fff9ed;
  --white: #ffffff;
  --line: #ded7c7;
  --sun: #f7bf1a;
  --sun-deep: #d88c00;
  --leaf: #5fa447;
  --blue: #355a96;
  --teal: #1f756d;
  --clay: #9d5531;
  --shadow: 0 18px 50px rgba(23, 21, 17, 0.14);
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--ink);
  text-decoration: none;
}

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

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

input.visually-hidden,
.status-panel input.visually-hidden,
.cw-newsletter input.visually-hidden {
  position: absolute;
  width: 1px;
  min-width: 0;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  min-height: var(--nav-height);
  background: rgba(255, 249, 237, 0.95);
  border-bottom: 1px solid rgba(23, 21, 17, 0.12);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1220px;
  min-height: var(--nav-height);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--ink);
}

.brand span {
  font-size: 1.1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-left: auto;
}

.nav-menu a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.nav-drop-toggle span {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 12;
  display: grid;
  min-width: 230px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(23, 21, 17, 0.14);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(23, 21, 17, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown:focus-within .nav-drop-panel,
.nav-dropdown[data-open="true"] .nav-drop-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-drop-panel a {
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink);
  white-space: nowrap;
}

.nav-drop-panel a:hover {
  background: #f4eddc;
  color: var(--ink);
}

.nav-drop-panel .coming-soon:hover {
  background: transparent;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(216, 140, 0, 0.25);
}

.btn-primary:hover {
  background: #ffd154;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: #2c2923;
}

.btn-outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-full {
  width: 100%;
}

.hero {
  min-height: 88vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 14, 10, 0.84), rgba(16, 14, 10, 0.42) 58%, rgba(16, 14, 10, 0.1)),
    url("assets/ethiopia-highlands.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 110px 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 42px;
  align-items: end;
}

.hero-copy {
  min-width: 0;
}

.hero-give-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 249, 237, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero-give-card .eyebrow {
  color: var(--blue);
}

.hero-give-card h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.hero-give-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.mini-goals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.mini-goals div {
  min-height: 92px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-goals strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
}

.mini-goals span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 5.2rem;
  line-height: 0.95;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: break-word;
}

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

.stage-strip {
  background: var(--sun);
  border-bottom: 1px solid rgba(23, 21, 17, 0.16);
}

.stage-strip-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stage-item {
  display: grid;
  gap: 3px;
}

.stage-item strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.stage-item span {
  color: rgba(23, 21, 17, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.section {
  padding: 96px 24px;
}

.section-tight {
  padding: 70px 24px;
}

.section-white {
  background: var(--white);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-sun {
  background: var(--sun);
}

.container {
  max-width: 1220px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.04;
}

.section-heading p,
.page-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-ink .section-heading p,
.section-ink .muted,
.section-ink .proof-copy {
  color: rgba(255, 255, 255, 0.74);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 64px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.image-frame.short img {
  min-height: 360px;
}

.copy-block h2 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.07;
}

.copy-block p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.feature-card,
.gift-card,
.action-card,
.faq-item,
.proof-card,
.principle-card,
.confidence-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card {
  min-height: 200px;
  padding: 24px;
}

.feature-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sun);
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
  margin-top: 44px;
}

.proof-card {
  padding: 32px;
}

.proof-card h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
}

.timeline-step strong {
  display: block;
  margin-bottom: 4px;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.confidence-card {
  min-height: 240px;
  padding: 28px;
}

.confidence-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.confidence-card p {
  margin: 0;
  color: var(--muted);
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.gift-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 26px;
  background: var(--white);
}

.gift-card.featured {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.gift-card .amount {
  margin: 0 0 8px;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 900;
}

.gift-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.gift-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.gift-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.gift-card li + li {
  margin-top: 8px;
}

.gift-card .btn {
  margin-top: auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 34px;
  align-items: start;
}

.detail-panel,
.ledger-panel,
.status-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-panel {
  padding: 30px;
}

.detail-panel h3,
.ledger-panel h3,
.status-panel h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.detail-panel p,
.status-panel p {
  margin: 0;
  color: var(--muted);
}

.detail-panel p + p {
  margin-top: 14px;
}

.compact-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.compact-list li + li {
  margin-top: 9px;
}

.status-panel {
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fbefcc;
  color: #4c3a10;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.status-panel form {
  display: grid;
  gap: 12px;
}

.status-panel label {
  display: grid;
  gap: 6px;
  color: #4e493f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-panel input,
.status-panel select,
.status-panel textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.status-panel .donation-check,
.cw-newsletter .donation-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.status-panel input[type="checkbox"],
.cw-newsletter input[type="checkbox"] {
  width: auto;
  min-height: 0;
  padding: 0;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.material-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.material-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.material-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.material-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.ledger-panel {
  overflow: hidden;
}

.ledger-row {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.ledger-row:first-child {
  border-top: 0;
}

.ledger-row strong {
  color: var(--ink);
}

.ledger-row span {
  color: var(--muted);
}

.proof-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.proof-update {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.proof-update time,
.proof-update .update-status {
  color: #6f6759;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-update h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.proof-update p {
  margin: 0;
  color: var(--muted);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.mini-stat-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-stat-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
  line-height: 1;
}

.mini-stat-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.budget-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 54px;
  align-items: center;
}

.budget-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.budget-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.budget-head span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.budget-head strong {
  font-size: 2.8rem;
  line-height: 1;
}

.budget-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.budget-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.budget-meta span {
  color: var(--muted);
  font-weight: 900;
}

.budget-bar {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee5d3;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.bar-planning {
  width: 35%;
  background: var(--blue);
}

.bar-materials {
  width: 37.5%;
  background: var(--leaf);
}

.bar-readiness {
  width: 27.5%;
  background: var(--sun-deep);
}

.budget-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.roadmap-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.roadmap-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
}

.roadmap-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.roadmap-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.packet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.packet-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.packet-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.packet-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.packet-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.packet-card .coming-soon,
.action-card .coming-soon {
  margin-top: auto;
}

.wide-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.wide-cta h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.05;
}

.wide-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.wide-cta .hero-actions {
  justify-content: flex-end;
  margin: 0;
}

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

.action-card {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.action-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.action-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.action-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.coming-soon {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.nav-drop-panel .coming-soon {
  display: block;
  min-height: auto;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
  white-space: nowrap;
  cursor: default;
}

.packet-card .coming-soon,
.action-card .coming-soon {
  color: var(--blue);
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.btn-disabled {
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: center;
}

.quote-mark {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--ink);
}

.founder-note {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.founder-meta {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  min-height: 70px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.page-hero {
  padding: calc(var(--nav-height) + 82px) 24px 72px;
  background: var(--ink);
  color: var(--white);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero .hero-actions {
  margin-top: 30px;
}

.donor-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.sticky-panel {
  position: sticky;
  top: 108px;
  padding: 28px;
  border-radius: 8px;
  background: var(--sun);
}

.sticky-panel h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.05;
}

.sticky-panel p {
  margin: 0 0 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.contact-panel {
  padding: 32px;
  border-radius: 8px;
  background: var(--sun);
}

.contact-panel h2 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  line-height: 1.05;
}

.contact-panel p {
  margin: 0 0 22px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.portal-hero {
  background:
    linear-gradient(90deg, rgba(23, 21, 17, 0.9), rgba(23, 21, 17, 0.66)),
    url("assets/biftuspark-library-story.png") center / cover no-repeat;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: stretch;
}

.portal-status {
  padding: 30px;
  border-radius: 8px;
  background: var(--sun);
}

.portal-status h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.05;
}

.portal-status p {
  margin: 0;
}

.status-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.status-list span {
  display: grid;
  gap: 2px;
  min-height: 64px;
  padding: 13px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-weight: 700;
}

.status-list strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portal-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.portal-card h3 {
  margin: 18px 0 12px;
  font-size: 1.45rem;
}

.portal-card p {
  margin: 0;
  color: var(--muted);
}

.portal-badge {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eee5d3;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-badge.is-live {
  background: var(--leaf);
  color: var(--white);
}

.portal-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}

.volunteer-form-shell {
  display: grid;
  gap: 30px;
  align-items: start;
}

.volunteer-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr minmax(220px, 1.15fr) minmax(180px, 0.9fr);
  gap: 12px;
}

.volunteer-form label,
.checkbox-fieldset {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.volunteer-form input,
.volunteer-form select {
  min-height: 44px;
  padding: 10px 11px;
}

.volunteer-form textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

.checkbox-fieldset {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkbox-fieldset legend {
  padding: 0 8px;
  font-weight: 900;
}

.checkbox-fieldset p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.checkbox-grid label,
.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-grid label {
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf7;
  align-items: center;
}

.checkbox-grid input,
.consent-row input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sun);
}

.hp-field {
  display: none !important;
}

.form-actions {
  display: grid;
  grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: var(--teal);
}

.form-status[data-state="error"] {
  color: #a33a2d;
}

.mobile-donate-bar {
  display: none;
}

.uses-list {
  display: grid;
  gap: 14px;
}

.uses-list div {
  padding: 22px;
  border-left: 6px solid var(--sun);
  background: var(--white);
}

.uses-list strong {
  display: block;
  margin-bottom: 6px;
}

.uses-list p {
  margin: 0;
  color: var(--muted);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.principle-card {
  padding: 26px;
}

.principle-card h3 {
  margin: 0 0 10px;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 24px 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 900;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-col .coming-soon {
  display: block;
  min-height: 0;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
  cursor: default;
}

.footer-col a:hover {
  color: var(--sun);
}

.footer-col .coming-soon:hover {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  max-width: 1220px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-bottom > span {
  display: block;
}

.footer-bottom > span + span {
  margin-top: 6px;
}

.muted {
  color: var(--muted);
}

.desktop-only {
  display: initial;
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 16px;
  }

  .nav-menu a {
    font-size: 0.88rem;
  }

  .nav-menu .btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    inset: var(--nav-height) 0 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 22px 24px;
    background: var(--paper);
  }

  .nav-menu[data-open="true"] {
    display: flex;
  }

  .nav-menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .nav-dropdown {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 58px;
    padding: 0;
    font-size: 1.1rem;
  }

  .nav-drop-panel {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 14px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-dropdown:hover .nav-drop-panel,
  .nav-dropdown:focus-within .nav-drop-panel,
  .nav-dropdown[data-open="true"] .nav-drop-panel {
    display: grid;
    transform: none;
  }

  .nav-drop-panel a {
    padding: 12px 0;
    border-bottom: 0;
    white-space: normal;
  }

  .nav-menu .btn {
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .stage-strip-inner,
  .hero-inner,
  .two-col,
  .proof-grid,
  .budget-layout,
  .wide-cta,
  .quote-band,
  .donor-layout,
  .contact-layout,
  .portal-layout,
  .volunteer-form-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .action-grid,
  .gift-grid,
  .principle-grid,
  .confidence-grid,
  .roadmap-grid,
  .packet-grid,
  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkbox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wide-cta .hero-actions {
    justify-content: flex-start;
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-height: 68px;
  }

  .nav {
    padding: 0 16px;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 80vh;
    background-position: center;
  }

  .hero-inner {
    padding: 92px 18px 46px;
    gap: 26px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .wide-cta .hero-actions .btn {
    max-width: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .section {
    padding: 70px 18px;
  }

  .section-tight {
    padding: 52px 18px;
  }

  .section-heading h2,
  .copy-block h2,
  .wide-cta h2,
  .hero-give-card h2 {
    font-size: 2.15rem;
  }

  .feature-grid,
  .action-grid,
  .gift-grid,
  .faq-grid,
  .principle-grid,
  .confidence-grid,
  .roadmap-grid,
  .packet-grid,
  .portal-grid,
  .form-grid,
  .checkbox-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .hero-give-card,
  .budget-panel {
    padding: 22px;
  }

  .mini-goals {
    grid-template-columns: 1fr;
  }

  .mini-goals div {
    min-height: auto;
  }

  .budget-head,
  .budget-meta {
    display: grid;
  }

  .image-frame img {
    min-height: 320px;
  }

  .wide-cta {
    padding: 28px;
  }

  .founder-note {
    font-size: 1.5rem;
  }

  body {
    padding-bottom: 76px;
  }

  .mobile-donate-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid rgba(23, 21, 17, 0.16);
    background: rgba(255, 249, 237, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-donate-bar .btn {
    min-height: 48px;
    padding: 12px 10px;
  }

  .desktop-only {
    display: none;
  }
}

/* Charity: water-inspired homepage rebuild. Uses BiftuSpark content and assets. */
.cw-home {
  background: #f8f1df;
}

.cw-home .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #ddd5c6;
}

.cw-home .brand {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.cw-home .brand img {
  width: 30px;
  height: 30px;
}

.cw-home .nav-menu a {
  color: #2c2b28;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cw-home .btn {
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cw-hero {
  position: relative;
  min-height: 820px;
  padding-top: var(--nav-height);
  overflow: hidden;
  color: var(--white);
}

.cw-hero-media {
  position: absolute;
  inset: var(--nav-height) 0 0;
  background:
    linear-gradient(90deg, rgba(20, 18, 13, 0.74), rgba(20, 18, 13, 0.28) 48%, rgba(20, 18, 13, 0.04)),
    url("assets/ethiopia-highlands.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.cw-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: calc(820px - var(--nav-height));
  margin: 0 auto;
  padding: 90px 24px 110px;
  display: grid;
  grid-template-columns: minmax(320px, 470px) 1fr;
  grid-template-rows: auto auto;
  gap: 34px 80px;
  align-content: center;
}

.cw-hero-copy {
  grid-column: 1;
  text-align: center;
}

.cw-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.55rem;
  line-height: 1.04;
  font-weight: 700;
  text-wrap: balance;
}

.donation-widget {
  grid-column: 1;
  width: min(100%, 390px);
  margin: 0 auto;
  color: var(--ink);
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.donation-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 14px 0;
  background: #f5f2ea;
}

.donation-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 4px 4px 0 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.donation-tabs .is-active {
  background: var(--sun);
  color: var(--ink);
}

.donation-label {
  margin: 20px 20px 12px;
  color: #55514a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 20px;
}

.amount-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px;
  border-radius: 4px;
  background: #e8e5dd;
  color: #45413a;
  font-weight: 900;
  text-decoration: none;
}

.amount-grid a:nth-child(4) {
  grid-column: span 3;
}

.amount-grid .is-selected {
  background: var(--sun);
  color: var(--ink);
}

.amount-grid small {
  margin-left: 3px;
  color: #7b766d;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-note {
  margin: 18px 20px;
  color: #55514a;
  font-size: 0.88rem;
}

.donation-widget .btn {
  width: calc(100% - 40px);
  margin: 0 20px 24px;
}

.cw-section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.cw-section-head .eyebrow {
  color: #4d4a43;
  letter-spacing: 0.14em;
}

.cw-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 700;
  color: #33302a;
  text-wrap: balance;
}

.cw-section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.cw-why {
  padding: 105px 24px 80px;
  background: #f8f1df;
}

.cw-story-image {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.cw-story-image img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.pill-row {
  position: absolute;
  top: 30px;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(92%, 760px);
  transform: translateX(-50%);
}

.pill-row span {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  color: #34312b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-callout {
  position: absolute;
  right: 10%;
  bottom: 11%;
  width: min(360px, 80%);
  padding: 24px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.story-callout p {
  margin: 0 0 18px;
  color: var(--muted);
}

.story-callout a,
.cw-packet-links a {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid var(--sun);
}

.cw-stat {
  padding: 92px 24px 86px;
  background: var(--white);
  text-align: center;
}

.cw-stat-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}

.cw-stat h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
  color: #33302a;
}

.cw-stat p {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cw-stat .btn {
  margin-top: 32px;
}

.pledge-box {
  margin: 50px auto 0;
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  max-width: 640px;
  border: 1px solid #d8ccb1;
  border-radius: 6px;
  background: #fbf0cd;
  text-align: left;
}

.pledge-box strong {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 8px solid var(--sun);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  text-align: center;
}

.pledge-box p {
  margin: 0;
}

.cw-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 620px;
  background: var(--sun);
}

.cw-feature-copy {
  padding: 80px max(24px, calc((100vw - 1180px) / 2)) 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  margin-left: auto;
}

.cw-feature-copy .eyebrow {
  color: #3b362d;
}

.cw-feature-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.05;
}

.cw-feature-copy p {
  margin: 20px 0 0;
  color: #34302a;
}

.cw-feature-copy .btn {
  margin-top: 30px;
  align-self: flex-start;
}

.cw-feature-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.cw-campaign,
.cw-process,
.cw-packet {
  padding: 105px 24px;
  background: #f8f1df;
}

.cw-action-cards {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cw-action-cards article {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 21, 17, 0.1);
}

.cw-action-cards img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cw-action-cards div {
  padding: 26px;
}

.cw-action-cards h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.cw-action-cards p {
  margin: 0 0 22px;
  color: var(--muted);
}

.cw-action-cards a {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid var(--sun);
}

.cw-budget {
  padding: 80px 24px;
  background: var(--white);
}

.cw-budget-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 44px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
  border: 1px solid #d8ccb1;
  border-radius: 8px;
  background: #fbf0cd;
}

.cw-budget-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.05;
}

.cw-budget-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.cw-budget-list {
  display: grid;
  gap: 14px;
}

.cw-budget-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 6px;
  background: var(--white);
}

.cw-budget-list span {
  color: var(--sun-deep);
  font-size: 1.5rem;
  font-weight: 900;
}

.cw-process {
  background: #1c1a16;
  color: var(--white);
}

.cw-process .cw-section-head h2,
.cw-process .cw-section-head p,
.cw-process .eyebrow {
  color: var(--white);
}

.cw-process-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cw-process-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cw-process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
}

.cw-process-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.cw-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cw-packet-links {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cw-packet-links a {
  min-height: 116px;
  padding: 24px;
  border: 1px solid #ddd2bc;
  border-radius: 8px;
  background: var(--white);
  text-transform: none;
}

.cw-packet-links strong,
.cw-packet-links span {
  display: block;
}

.cw-packet-links strong {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.cw-packet-links span {
  color: var(--muted);
  font-weight: 700;
}

.cw-newsletter {
  padding: 64px 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
  background: var(--sun);
}

.cw-newsletter > div,
.cw-newsletter form {
  width: min(100%, 560px);
}

.cw-newsletter > div {
  justify-self: end;
}

.cw-newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  line-height: 1.08;
}

.cw-newsletter form {
  display: grid;
  gap: 10px;
}

.cw-newsletter label {
  font-weight: 900;
}

.cw-newsletter form div {
  display: flex;
  gap: 10px;
}

.cw-newsletter input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 2px solid transparent;
  border-radius: 4px;
}

.cw-footer {
  background: #171511;
}

@media (max-width: 980px) {
  .cw-hero {
    min-height: auto;
  }

  .cw-hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 86px 24px 54px;
  }

  .cw-hero h1 {
    font-size: 3rem;
  }

  .donation-widget {
    width: min(100%, 430px);
  }

  .cw-feature-band,
  .cw-budget-card,
  .cw-newsletter {
    grid-template-columns: 1fr;
  }

  .cw-feature-copy {
    max-width: none;
    margin: 0;
    padding: 72px 24px;
  }

  .cw-action-cards,
  .cw-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cw-newsletter > div,
  .cw-newsletter form {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .cw-hero-media {
    background-position: center;
  }

  .cw-hero h1,
  .cw-section-head h2,
  .cw-stat h2,
  .cw-feature-copy h2 {
    font-size: 2.35rem;
  }

  .amount-grid,
  .cw-action-cards,
  .cw-process-grid,
  .cw-packet-links {
    grid-template-columns: 1fr;
  }

  .amount-grid a:nth-child(4) {
    grid-column: auto;
  }

  .cw-why,
  .cw-campaign,
  .cw-process,
  .cw-packet {
    padding: 76px 18px;
  }

  .cw-story-image img,
  .cw-feature-photo img {
    min-height: 460px;
  }

  .pill-row {
    position: static;
    transform: none;
    width: auto;
    padding: 18px;
    background: var(--white);
  }

  .pill-row span {
    border: 1px solid var(--line);
  }

  .story-callout {
    position: static;
    width: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .pledge-box,
  .cw-budget-list div,
  .cw-newsletter form div {
    grid-template-columns: 1fr;
    display: grid;
  }

  .pledge-box strong {
    width: 82px;
    height: 82px;
  }
}

/* Homepage parity pass: closely follows the charity: water homepage structure with original BiftuSpark content. */
.cw-reference {
  --cw-cream: #f6eedb;
  --cw-soft: #f4efe4;
  --cw-yellow: #ffd033;
  --cw-yellow-deep: #f5b900;
  --cw-text: #282620;
  --cw-muted: #706b61;
  --cw-dark: #1c211b;
  --cw-border: #ddd5c4;
  background: var(--cw-cream);
  color: var(--cw-text);
}

.cw-reference .site-header {
  min-height: 72px;
  background: #fff;
  border-bottom: 1px solid rgba(40, 38, 32, 0.1);
  backdrop-filter: none;
}

.cw-reference .cw-nav {
  max-width: 1228px;
  min-height: 72px;
  padding: 0 28px;
}

.cw-reference .cw-brand {
  gap: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
}

.cw-reference .cw-brand img {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

.cw-reference .cw-menu {
  gap: 30px;
}

.cw-reference .cw-menu a {
  color: #25231f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-reference .btn {
  min-height: 40px;
  padding: 12px 18px;
  border-radius: 2px;
  box-shadow: none;
  color: #171511;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-reference .btn-primary {
  background: var(--cw-yellow);
}

.cw-reference .btn-primary:hover {
  background: #ffe06f;
}

.cw-reference .cw-give-button {
  min-height: 30px;
  padding: 8px 14px;
}

.cw-reference-hero {
  min-height: 900px;
  padding-top: 72px;
  background: #23322d;
}

.cw-reference .cw-hero-media {
  inset: 72px 0 0;
  background:
    linear-gradient(90deg, rgba(22, 18, 12, 0.58) 0%, rgba(22, 18, 12, 0.34) 33%, rgba(22, 18, 12, 0.08) 60%, rgba(22, 18, 12, 0) 100%),
    url("assets/biftuspark-hero-student.png") center / cover no-repeat;
  transform: none;
}

.cw-reference .cw-hero-content {
  max-width: 1228px;
  min-height: calc(900px - 72px);
  padding: 116px 28px 118px;
  grid-template-columns: 430px 1fr;
  gap: 24px;
  align-content: start;
}

.cw-reference .cw-hero-copy {
  grid-column: 1;
  width: 430px;
  max-width: 100%;
  text-align: center;
}

.cw-reference .cw-hero h1 {
  margin: 0 auto;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.9rem;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}

.cw-reference .donation-widget {
  grid-column: 1;
  width: 390px;
  max-width: 100%;
  margin: 12px auto 0;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.cw-reference .donation-tabs {
  padding: 14px 14px 0;
  background: #f4f1ea;
}

.cw-reference .donation-tabs button {
  min-height: 42px;
  border-radius: 2px 2px 0 0;
  color: #565149;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.cw-reference .donation-tabs .is-active {
  background: var(--cw-yellow);
}

.cw-reference .donation-body {
  padding: 20px;
}

.cw-reference .donation-label {
  margin: 0 0 12px;
  color: #5f5a51;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.cw-reference .amount-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.cw-reference .amount-grid a {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: #e8e5dd;
  color: #413d35;
  font-size: 0.92rem;
}

.cw-reference .amount-grid a:nth-child(4) {
  grid-column: auto;
}

.cw-reference .amount-grid .is-selected {
  background: var(--cw-yellow);
}

.cw-reference .amount-grid small {
  margin-left: 4px;
  color: #665f53;
  font-size: 0.58rem;
}

.cw-reference .donation-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  margin: 16px 0 18px;
  color: #555047;
  font-size: 0.74rem;
  line-height: 1.35;
}

.cw-reference .donation-check input {
  width: 14px;
  height: 14px;
  accent-color: var(--cw-yellow);
}

.cw-reference .donation-widget .btn {
  width: 100%;
  margin: 0;
}

.cw-reference .cw-why {
  padding: 100px 28px 86px;
  background: var(--cw-cream);
}

.cw-reference .cw-section-head {
  max-width: 620px;
  margin-bottom: 42px;
}

.cw-reference .eyebrow,
.cw-reference .cw-section-head .eyebrow {
  color: #4c473f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.cw-reference .cw-section-head h2 {
  color: #3a352e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.cw-reference .cw-section-head p {
  color: #635d53;
  font-size: 0.92rem;
}

.cw-reference .cw-story-image {
  width: min(1076px, 100%);
  border-radius: 3px;
  box-shadow: none;
}

.cw-reference .cw-story-image img {
  width: 100%;
  min-height: 646px;
  object-fit: cover;
}

.cw-reference .pill-row {
  top: 24px;
  gap: 10px;
}

.cw-reference .pill-row span {
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  color: #3b3730;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.cw-reference .story-callout {
  right: 10%;
  bottom: 11%;
  width: 344px;
  padding: 24px 26px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.cw-reference .story-callout p {
  margin: 0 0 16px;
  color: #504b43;
  font-size: 0.86rem;
}

.cw-reference .story-callout a,
.cw-reference .cw-action-card a {
  color: #2b2822;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid var(--cw-yellow);
}

.cw-reference .cw-stat {
  padding: 98px 28px 96px;
  background: var(--cw-cream);
}

.cw-reference .cw-stat-inner {
  width: min(690px, 100%);
}

.cw-reference .cw-stat h2 {
  color: #3a352e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.cw-reference .cw-stat p {
  width: min(570px, 100%);
  color: #5f5a51;
  font-size: 0.92rem;
}

.cw-reference .cw-stat .btn {
  margin-top: 28px;
}

.cw-reference .pledge-box {
  max-width: 560px;
  margin-top: 48px;
  padding: 20px 24px;
  grid-template-columns: 96px 1fr;
  border: 1px solid #d8ceb6;
  border-radius: 4px;
  background: #fbefcc;
}

.cw-reference .pledge-box strong {
  width: 78px;
  height: 78px;
  border: 5px solid var(--cw-yellow);
  color: #3a352e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.cw-reference .pledge-box p {
  width: auto;
  margin: 0;
  color: #4f493f;
  font-size: 0.84rem;
}

.pledge-link {
  display: inline-block;
  margin-top: 12px;
  color: #2d2a25;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-transform: uppercase;
}

.cw-proof-band {
  padding: 78px 28px 94px;
  background: var(--cw-dark);
  color: #fff;
}

.cw-proof-inner {
  width: min(1076px, 100%);
  margin: 0 auto;
  text-align: center;
}

.cw-proof-band h2 {
  max-width: 760px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.9rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.cw-proof-line {
  height: 3px;
  margin: 78px auto 54px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

.cw-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.cw-proof-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.cw-proof-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--cw-yellow);
  color: #171511;
  font-weight: 900;
}

.cw-proof-grid h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.cw-proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cw-actions {
  padding: 94px 0 102px;
  background: #fbf0d1;
}

.cw-actions .cw-section-head {
  margin-bottom: 38px;
}

.cw-actions .cw-section-head h2 {
  font-size: 2.75rem;
}

.cw-action-rail {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-auto-columns: minmax(230px, 270px);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 24px;
  scrollbar-width: thin;
}

.cw-action-card {
  position: relative;
  display: flex;
  min-height: 336px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #e3d9c3;
  background: #fffaf0;
  color: #2d2a24;
  text-decoration: none;
  outline-offset: 4px;
  box-shadow: 0 12px 28px rgba(45, 42, 36, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cw-action-card:focus-visible {
  outline: 3px solid var(--cw-yellow);
}

.cw-action-card::after {
  content: none;
}

.cw-action-card:hover {
  border-color: #d1bf96;
  box-shadow: 0 18px 36px rgba(45, 42, 36, 0.12);
  transform: translateY(-2px);
}

.cw-action-card img {
  width: 100%;
  height: 184px;
  flex: 0 0 184px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.cw-action-card:hover img {
  transform: scale(1.035);
}

.cw-action-card .cw-action-icon {
  position: static;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 18px 18px 12px;
  border: 1px solid #d7c796;
  border-radius: 4px;
  background: #fff2c7;
  color: #5f4a19;
}

.cw-action-card .cw-action-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.cw-action-card h3 {
  position: static;
  margin: 0 18px 14px;
  color: #5a5042;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.cw-action-card a {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  border-color: var(--cw-yellow);
}

.cw-action-card .cw-card-link,
.cw-action-card .coming-soon {
  position: static;
  display: grid;
  place-items: center;
  align-self: flex-start;
  width: 34px;
  height: 34px;
  margin: auto 18px 18px;
  min-height: auto;
  border: 1px solid #d9c77b;
  border-radius: 50%;
  background: var(--cw-yellow);
  color: #2d2a24;
}

.cw-action-card .cw-card-link svg,
.cw-action-card .coming-soon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cw-rail-controls {
  display: flex;
  justify-content: center;
  gap: 82px;
  margin-top: 12px;
}

.cw-rail-controls button {
  width: 48px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #4a453d;
  font-size: 1.55rem;
  cursor: default;
}

.cw-reference .cw-newsletter {
  width: min(1076px, calc(100% - 56px));
  margin: 92px auto 102px;
  padding: 48px 54px;
  display: grid;
  grid-template-columns: 180px minmax(0, 330px) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  background: #fff;
}

.cw-mail-mark {
  display: grid;
  place-items: center;
}

.cw-mail-mark span {
  position: relative;
  display: block;
  width: 82px;
  height: 62px;
  border: 3px solid #d4c7aa;
  border-radius: 4px;
  background: #f8efcf;
}

.cw-mail-mark span::before,
.cw-mail-mark span::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 44px;
  height: 3px;
  background: #d4a41d;
}

.cw-mail-mark span::before {
  left: 3px;
  transform: rotate(32deg);
  transform-origin: left center;
}

.cw-mail-mark span::after {
  right: 3px;
  transform: rotate(-32deg);
  transform-origin: right center;
}

.cw-reference .cw-newsletter > div {
  width: auto;
  justify-self: auto;
}

.cw-reference .cw-newsletter h2 {
  color: #3a352e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.cw-reference .cw-newsletter form {
  width: auto;
  display: grid;
  gap: 14px;
}

.cw-reference .cw-newsletter label {
  display: grid;
  gap: 6px;
  color: #4e493f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cw-reference .cw-newsletter input {
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #d8d0c0;
  border-radius: 0;
  background: #fff;
}

.cw-reference .cw-newsletter .btn {
  width: 100%;
}

.cw-reference .cw-newsletter form p {
  margin: 0;
  color: #8a8377;
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: center;
}

.cw-reference .cw-footer {
  padding: 70px 28px 44px;
  background: #fff;
  color: #2d2a24;
}

.cw-reference .cw-footer-grid {
  max-width: 1076px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
}

.cw-reference .footer-col h2 {
  margin-bottom: 16px;
  color: #3b3730;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.cw-reference .footer-col a,
.cw-reference .footer-col p {
  margin-top: 9px;
  color: #6a6358;
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.cw-reference .footer-col .coming-soon {
  display: block;
  margin-top: 9px;
  color: #6a6358;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  cursor: default;
}

.cw-reference .footer-col a:hover {
  color: #222;
}

.cw-reference .footer-col .coming-soon:hover {
  color: #6a6358;
}

.cw-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.cw-socials a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin: 0;
  border: 1px solid #d5cdbd;
  border-radius: 50%;
  color: #332f28;
  font-size: 0.8rem;
  font-weight: 900;
}

.cw-reference .cw-footer-bottom {
  max-width: 1076px;
  margin-top: 46px;
  padding-top: 26px;
  display: grid;
  gap: 8px;
  border-top: 1px solid #ded6c7;
  color: #7d766b;
  font-size: 0.74rem;
}

.cw-privacy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid #d8d2c6;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
}

.cw-privacy button {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #38342e;
  font-weight: 900;
}

.cw-privacy strong {
  display: block;
  margin-bottom: 3px;
  color: #2b2822;
  font-size: 0.82rem;
}

.cw-privacy p {
  margin: 0;
  max-width: 820px;
  color: #6d665b;
  font-size: 0.72rem;
  line-height: 1.4;
}

.cw-privacy a {
  min-width: 190px;
  padding: 11px 16px;
  background: #355a96;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

body.privacy-closed .cw-privacy {
  display: none;
}

.cw-reference .mobile-donate-bar {
  display: none !important;
}

@media (max-width: 980px) {
  .cw-reference .cw-menu {
    background: #fff;
  }

  .cw-reference .cw-menu a {
    font-size: 0.86rem;
  }

  .cw-reference .cw-reference-hero {
    min-height: auto;
  }

  .cw-reference .cw-hero-media {
    background-position: 58% center;
  }

  .cw-reference .cw-hero-content {
    min-height: 760px;
    grid-template-columns: minmax(0, 420px);
    padding: 92px 24px 72px;
  }

  .cw-reference .cw-hero-copy,
  .cw-reference .donation-widget {
    width: 100%;
  }

  .cw-reference .cw-hero h1 {
    font-size: 3.15rem;
  }

  .cw-reference .cw-story-image img {
    min-height: 560px;
  }

  .cw-proof-grid,
  .cw-reference .cw-newsletter,
  .cw-reference .cw-footer-grid {
    grid-template-columns: 1fr;
  }

  .cw-reference .cw-newsletter {
    width: min(760px, calc(100% - 40px));
  }

  .cw-mail-mark {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .cw-reference .site-header,
  .cw-reference .cw-nav {
    min-height: 68px;
  }

  .cw-reference .cw-hero-media {
    inset: 68px 0 0;
    background-position: 62% center;
  }

  .cw-reference .cw-hero-content {
    min-height: 760px;
    padding: 78px 18px 46px;
  }

  .cw-reference .cw-hero h1 {
    max-width: 340px;
    font-size: 2.45rem;
  }

  .cw-reference .donation-body {
    padding: 16px;
  }

  .cw-reference .amount-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .cw-reference .cw-why,
  .cw-reference .cw-stat,
  .cw-proof-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cw-reference .cw-section-head {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .cw-reference .cw-section-head h2,
  .cw-reference .cw-stat h2,
  .cw-proof-band h2,
  .cw-actions .cw-section-head h2 {
    font-size: 1.95rem;
    line-height: 1.08;
    text-wrap: auto;
  }

  .cw-reference .cw-story-image img {
    min-height: 440px;
  }

  .cw-reference .pill-row {
    position: static;
    width: auto;
    transform: none;
    padding: 16px;
    background: #fff;
  }

  .cw-reference .story-callout {
    position: static;
    width: auto;
    box-shadow: none;
  }

  .cw-reference .pledge-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cw-reference .pledge-box strong {
    margin: 0 auto;
  }

  .cw-action-rail {
    width: calc(100% - 32px);
    grid-auto-columns: minmax(210px, 76vw);
  }

  .cw-reference .cw-newsletter {
    width: calc(100% - 32px);
    margin: 64px auto 84px;
    padding: 28px 22px;
  }

  .cw-privacy {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }

  .cw-privacy button {
    position: absolute;
    top: 8px;
    right: 10px;
  }

  .cw-privacy a {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .cw-reference .cw-section-head,
  .cw-reference .cw-stat-inner {
    max-width: calc(100vw - 36px);
  }

  .cw-reference .cw-section-head h2,
  .cw-reference .cw-stat h2,
  .cw-proof-band h2,
  .cw-actions .cw-section-head h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 1.62rem;
    line-height: 1.1;
  }

  .cw-reference .cw-section-head p,
  .cw-reference .cw-stat p,
  .cw-proof-band p {
    max-width: 330px;
    margin-inline: auto;
  }

  .cw-reference .pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .cw-reference .pill-row span {
    white-space: normal;
  }
}

/* Header dropdowns, project map proof, and legal footer refinements. */
.cw-reference .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
}

.cw-reference .nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: #25231f;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cw-reference .nav-drop-toggle span {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.cw-reference .nav-drop-panel {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 20;
  width: 238px;
  padding: 14px 0;
  border: 1px solid #ded6c7;
  background: #fff;
  box-shadow: 0 18px 45px rgba(32, 28, 20, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.cw-reference .nav-drop-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #ded6c7;
  border-left: 1px solid #ded6c7;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.cw-reference .nav-dropdown:hover .nav-drop-panel,
.cw-reference .nav-dropdown:focus-within .nav-drop-panel,
.cw-reference .nav-dropdown[data-open="true"] .nav-drop-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cw-reference .nav-drop-panel a {
  display: block;
  padding: 11px 18px;
  border: 0;
  color: #312e28;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: none;
}

.cw-reference .nav-drop-panel a:hover {
  background: #fbf0d1;
  color: #171511;
}

.cw-proof-sub {
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.cw-proof-map {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: stretch;
}

.cw-map-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background:
    radial-gradient(circle at 72% 54%, rgba(255, 208, 51, 0.28) 0 3px, transparent 4px),
    radial-gradient(circle at 34% 30%, rgba(255, 208, 51, 0.28) 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(22deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 54px),
    #22291f;
}

.cw-map-visual::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cw-map-card {
  position: absolute;
  left: 36px;
  top: 36px;
  z-index: 2;
  width: min(260px, calc(100% - 72px));
  padding: 18px;
  background: #fff;
  color: #29251f;
  text-align: left;
}

.cw-map-card p {
  margin: 0 0 7px;
  color: #686257;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cw-map-card strong,
.cw-map-card span {
  display: block;
}

.cw-map-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.05;
}

.cw-map-card span {
  margin-top: 8px;
  color: #6b655a;
  font-size: 0.78rem;
  font-weight: 800;
}

.cw-map-pin {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: var(--cw-yellow);
  color: #171511;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cw-map-pin b {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #171511;
}

.cw-pin-assela {
  right: 14%;
  top: 50%;
}

.cw-pin-worcester {
  left: 18%;
  bottom: 21%;
}

.cw-map-line {
  position: absolute;
  left: 28%;
  top: 59%;
  width: 45%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 208, 51, 0.2), rgba(255, 208, 51, 0.9));
  transform: rotate(-16deg);
  transform-origin: left center;
}

.cw-map-copy {
  padding: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
}

.cw-map-copy .eyebrow {
  color: var(--cw-yellow);
}

.cw-map-copy h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.06;
}

.cw-map-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.cw-map-copy dl {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.cw-map-copy dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cw-map-copy dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-map-copy dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.cw-proof-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.cw-proof-stats article {
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.cw-proof-stats article:last-child {
  border-right: 0;
}

.cw-proof-stats strong,
.cw-proof-stats span {
  display: block;
}

.cw-proof-stats strong {
  color: var(--cw-yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.cw-proof-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cw-legal-strip,
.cw-trust-row {
  max-width: 1076px;
  margin: 34px auto 0;
}

.cw-legal-strip {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #ded6c7;
}

.cw-currency {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #4d473d;
  font-size: 0.76rem;
  font-weight: 900;
}

.cw-currency span {
  width: 18px;
  height: 12px;
  border: 1px solid #d0c8b9;
  background:
    linear-gradient(#b22234 0 14%, #fff 14% 28%, #b22234 28% 42%, #fff 42% 56%, #b22234 56% 70%, #fff 70% 84%, #b22234 84% 100%);
  box-shadow: inset 0 0 0 4px #3c3b6e;
}

.cw-legal-strip p {
  margin: 0;
  color: #6a6358;
  font-size: 0.78rem;
}

.cw-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cw-trust-row span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #ded6c7;
  color: #4d473d;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.cw-reference .cw-privacy {
  grid-template-columns: minmax(0, 1fr) auto 24px;
}

.legal-page {
  max-width: 840px;
}

.legal-page h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.08;
}

.legal-page h2:not(:first-child) {
  margin-top: 34px;
}

.legal-page p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-page ul,
.legal-page ol {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-page li + li {
  margin-top: 8px;
}

.policy-grid,
.support-grid,
.media-grid,
.packet-summary-grid {
  display: grid;
  gap: 18px;
}

.section-heading + .policy-grid,
.section-heading + .support-grid,
.section-heading + .media-grid,
.section-heading + .packet-summary-grid {
  margin-top: 38px;
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid,
.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-card,
.support-card,
.media-card,
.packet-card-public {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-card h3,
.support-card h3,
.media-card h3,
.packet-card-public h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.policy-card p,
.support-card p,
.media-card p,
.packet-card-public p {
  margin: 0;
  color: var(--muted);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
}

.newsletter-status,
.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.newsletter-status[data-state="success"],
.form-status[data-state="success"] {
  color: #1f6d3b;
  font-weight: 800;
}

.newsletter-status[data-state="error"],
.form-status[data-state="error"] {
  color: #9a2b24;
  font-weight: 800;
}

.newsletter-preferences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.newsletter-preferences label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 800;
}

.packet-page {
  background: #f7f1e4;
}

.packet-document {
  max-width: 960px;
  margin: 0 auto;
  padding: 70px 24px;
}

.packet-sheet {
  padding: 54px;
  border: 1px solid #d8cfbc;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(23, 21, 17, 0.12);
}

.packet-sheet h1,
.packet-sheet h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

.packet-sheet h1 {
  max-width: 720px;
  font-size: 3.2rem;
}

.packet-sheet h2 {
  margin-top: 36px;
  font-size: 1.8rem;
}

.packet-sheet p {
  color: var(--muted);
}

.packet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 34px;
}

.packet-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3d382f;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.packet-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0;
}

.packet-card-public strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.packet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.paypal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf0cd;
}

.paypal-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  line-height: 1.06;
}

.paypal-panel p {
  margin: 16px 0 0;
  color: var(--muted);
}

.paypal-panel code {
  color: var(--ink);
  font-weight: 900;
}

.paypal-box {
  padding: 24px;
  border: 1px solid #d8ccb1;
  border-radius: 6px;
  background: #fff;
}

.paypal-inline {
  margin-top: 14px;
  text-align: center;
}

.paypal-inline p,
.paypal-box [data-paypal-donate] p {
  margin: 0 0 16px;
  color: #6a6358;
  font-size: 0.88rem;
}

.paypal-box .paypal-fallback {
  margin-top: 16px;
}

.paypal-hosted-form {
  display: grid;
  gap: 10px;
  width: 100%;
}

.paypal-hosted-form img {
  display: none;
}

.paypal-donate-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  background: #ffc439;
  color: #111;
  font: 900 0.92rem/1.1 Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  transition: background 160ms ease, transform 160ms ease;
}

.paypal-donate-button:hover,
.paypal-donate-button:focus-visible {
  background: #f2ba36;
  transform: translateY(-1px);
}

.paypal-donate-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.paypal-donate-button span::before {
  content: "PayPal";
  color: #003087;
  font-weight: 900;
}

[data-paypal-donate][data-paypal-state="active"] {
  display: block;
}

@media (max-width: 980px) {
  .cw-reference .nav-dropdown {
    display: block;
    min-height: 0;
  }

  .cw-reference .nav-drop-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 58px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .cw-reference .nav-drop-panel {
    position: static;
    width: auto;
    padding: 4px 0 12px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .cw-reference .nav-drop-panel::before {
    display: none;
  }

  .cw-reference .nav-drop-panel a {
    padding: 10px 0;
    border-bottom: 0;
    font-size: 0.9rem;
  }

  .cw-proof-map,
  .cw-legal-strip,
  .cw-trust-row {
    grid-template-columns: 1fr;
  }

  .policy-grid,
  .support-grid,
  .media-grid,
  .packet-summary-grid {
    grid-template-columns: 1fr;
  }

  .cw-reference .cw-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .cw-map-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 680px) {
  .cw-reference .cw-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.cw-map-visual {
  min-height: 360px;
}

  .cw-map-card {
    left: 22px;
    top: 22px;
    width: calc(100% - 44px);
  }

  .cw-pin-assela {
    right: 8%;
    top: 55%;
  }

  .cw-pin-worcester {
    left: 8%;
    bottom: 18%;
  }

  .cw-proof-stats {
    grid-template-columns: 1fr;
  }

  .cw-proof-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .cw-proof-stats article:last-child {
    border-bottom: 0;
  }

  .cw-reference .cw-privacy {
    grid-template-columns: 1fr;
  }

  .paypal-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.ethiopia-map {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.ethiopia-outline {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 2.4;
  filter: url("#mapShadow");
}

.central-focus {
  fill: rgba(255, 208, 51, 0.06);
  stroke: rgba(255, 208, 51, 0.46);
  stroke-width: 1.5;
  stroke-dasharray: 5 5;
}

.city-route,
.inset-axis {
  stroke: var(--cw-yellow);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 6 6;
}

.city-dot circle,
.inset-city circle {
  fill: var(--cw-yellow);
  stroke: #171511;
  stroke-width: 2;
}

.city-dot.featured circle,
.inset-city.featured circle {
  fill: #fff;
  stroke: var(--cw-yellow);
  stroke-width: 4;
}

.city-dot.capital circle,
.inset-city.capital circle {
  fill: #68c7d0;
  stroke: #171511;
  stroke-width: 2;
}

.city-dot text {
  fill: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  paint-order: stroke;
  stroke: rgba(28, 33, 27, 0.92);
  stroke-width: 4px;
  text-transform: uppercase;
}

.map-inset {
  filter: url("#mapShadow");
}

.inset-card {
  fill: #fff;
  stroke: #ded6c7;
  stroke-width: 1;
}

.inset-eyebrow {
  fill: #6b655a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inset-title {
  fill: #2f2a22;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.inset-city text {
  fill: #2f2a22;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.inset-city.featured text {
  fill: #171511;
  font-size: 14px;
}

.inset-note {
  fill: #6d665b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

@media (max-width: 680px) {
  .ethiopia-map {
    min-height: 500px;
  }

  .map-full {
    transform: translate(-62px, 10px) scale(0.78);
    transform-origin: center;
  }

  .map-inset {
    transform: translate(176px, 176px) scale(0.86);
  }
}

.cw-proof-map {
  grid-template-columns: 1fr;
}

.cw-map-visual {
  min-height: 560px;
}

.ethiopia-map {
  min-height: 560px;
}

.cw-map-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.cw-map-copy > .eyebrow,
.cw-map-copy > h3,
.cw-map-copy > p {
  grid-column: 1;
}

.cw-map-copy dl {
  grid-column: 2;
  margin-top: 0;
}

@media (max-width: 980px) {
  .cw-map-copy {
    grid-template-columns: 1fr;
  }

  .cw-map-copy > .eyebrow,
  .cw-map-copy > h3,
  .cw-map-copy > p,
  .cw-map-copy dl {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .cw-map-visual,
  .ethiopia-map {
    min-height: 500px;
  }
}

.route-map {
  background: transparent;
}

.map-base {
  fill: url("#mapPanel");
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
}

.map-grid path {
  fill: none;
  stroke: rgba(57, 51, 40, 0.16);
  stroke-width: 1;
}

.map-terrain path {
  fill: none;
  stroke: rgba(83, 111, 75, 0.28);
  stroke-width: 2;
}

.lake-shape {
  fill: rgba(104, 199, 208, 0.52);
  stroke: rgba(38, 106, 119, 0.55);
  stroke-width: 1;
}

.map-title-card rect,
.country-locator rect {
  fill: #fff;
  stroke: #d8ccb1;
  stroke-width: 1;
  filter: url("#mapShadow");
}

.map-kicker,
.country-locator text {
  fill: #736b5e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-title-main {
  fill: #2f2a22;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
}

.map-note-line {
  fill: #746c5f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.locator-outline {
  fill: rgba(48, 69, 47, 0.18);
  stroke: #31462f;
  stroke-width: 7;
}

.locator-focus {
  fill: rgba(255, 208, 51, 0.28);
  stroke: #d49d00;
  stroke-width: 5;
  stroke-dasharray: 12 8;
}

.route-lines path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-main {
  stroke: #d49d00;
  stroke-width: 7;
  filter: url("#mapShadow");
}

.route-secondary {
  stroke: rgba(56, 75, 54, 0.46);
  stroke-width: 3;
  stroke-dasharray: 8 8;
}

.map-city circle {
  fill: #2d3d2b;
  stroke: #fff;
  stroke-width: 3;
}

.map-city.capital circle {
  fill: #147d8b;
}

.map-city.featured circle {
  fill: #171511;
  stroke: var(--cw-yellow);
  stroke-width: 5;
}

.city-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(30, 28, 23, 0.14);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.96);
  color: #2f2a22;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(28, 25, 18, 0.12);
}

.city-label.small {
  min-height: 25px;
  padding: 5px 8px;
  font-size: 10.5px;
}

.city-label.right {
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 680px) {
  .route-map {
    min-width: 680px;
  }

  .cw-map-visual {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 560px) {
  .cw-reference .cw-hero-content {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .cw-reference .cw-hero-copy,
  .cw-reference .donation-widget,
  .cw-reference .cw-section-head,
  .cw-reference .cw-stat-inner {
    min-width: 0;
    max-width: calc(100vw - 36px);
  }

  .cw-reference .cw-section-head h2,
  .cw-reference .cw-stat h2,
  .cw-proof-band h2,
  .cw-actions .cw-section-head h2 {
    max-width: 320px;
    margin-inline: auto;
    font-size: 1.55rem;
    line-height: 1.1;
    text-wrap: auto;
  }

  .cw-reference .cw-section-head p,
  .cw-reference .cw-stat p,
  .cw-proof-band p {
    max-width: 320px;
    margin-inline: auto;
  }

  .cw-reference .donation-check {
    grid-template-columns: 16px minmax(0, 1fr);
  }
}

@media print {
  .packet-page .site-header,
  .packet-page .site-footer,
  .packet-page .packet-actions,
  .packet-page .skip-link {
    display: none !important;
  }

  .packet-page {
    background: #fff;
  }

  .packet-document {
    max-width: none;
    padding: 0;
  }

  .packet-sheet {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .packet-sheet h1 {
    font-size: 34pt;
  }

  .packet-sheet h2 {
    break-after: avoid;
  }

  .packet-card-public {
    break-inside: avoid;
  }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .section > .container,
  .page-hero > .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.04;
    overflow-wrap: break-word;
    text-wrap: auto;
  }

  .page-hero p,
  .section-heading p,
  .detail-panel p,
  .status-panel p,
  .gift-card p,
  .confidence-card p,
  .material-card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .gift-grid,
  .confidence-grid,
  .material-grid,
  .detail-grid,
  .ledger-row,
  .proof-list,
  .mini-stat-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .gift-card,
  .confidence-card,
  .material-card,
  .detail-panel,
  .ledger-panel,
  .status-panel {
    min-width: 0;
    max-width: 100%;
  }

  .gift-card {
    min-height: 360px;
  }

  .btn,
  .hero-actions .btn,
  .status-actions .btn {
    max-width: 100%;
    white-space: normal;
  }

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

  .packet-document {
    padding: 34px 16px;
  }

  .packet-sheet {
    padding: 28px 20px;
  }

  .packet-sheet h1 {
    font-size: 2.25rem;
  }

  .cw-reference .cw-hero-content {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    padding-left: 14px;
    padding-right: 14px;
  }

  .cw-reference .cw-hero-copy,
  .cw-reference .donation-widget {
    width: 100%;
    min-width: 0;
    max-width: calc(100vw - 36px);
  }

  .cw-reference .cw-hero h1 {
    max-width: min(310px, calc(100vw - 48px));
    margin-inline: auto;
    font-size: clamp(1.82rem, 8.8vw, 2.05rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    text-wrap: auto;
  }

  .cw-reference .donation-tabs button {
    min-width: 0;
    padding-inline: 6px;
    font-size: 0.62rem;
  }

  .cw-reference .donation-widget .btn,
  .cw-reference [data-paypal-donate] form,
  .cw-reference [data-paypal-donate] input[type="image"] {
    max-width: 100%;
  }

  .cw-reference .donation-check span {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .cw-reference .pill-row {
    max-width: 100%;
    overflow: hidden;
  }

  .cw-reference .pill-row span {
    padding: 8px 12px;
    font-size: 0.62rem;
  }
}

/* BiftuSpark 100% clarity model page. */
.model-page {
  background: #f7f0df;
}

.model-hero {
  min-height: 760px;
  padding: calc(var(--nav-height) + 64px) 24px 84px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  background: #15130f;
  color: #fff;
}

.model-hero-media {
  min-height: 540px;
  overflow: hidden;
  border-radius: 2px;
}

.model-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.model-hero-copy {
  max-width: 660px;
}

.model-hero-copy h1,
.model-statement h2,
.model-copy h2,
.model-band h2,
.model-proof-copy h2,
.model-faq h2,
.model-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.model-hero-copy h1 {
  max-width: 560px;
  font-size: 5rem;
  line-height: 0.98;
}

.model-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.model-statement {
  padding: 112px 24px 104px;
  text-align: center;
  background: #f7f0df;
}

.model-statement .container {
  max-width: 920px;
}

.model-kicker {
  margin: 0 0 18px;
  color: #5d574b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-statement h2 {
  color: #312d27;
  font-size: 3.35rem;
  line-height: 1.05;
}

.model-statement p {
  max-width: 720px;
  margin: 26px auto 0;
  color: #625c51;
  font-size: 1.04rem;
}

.model-split {
  padding: 96px 24px;
}

.model-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: center;
}

.model-copy h2,
.model-band h2,
.model-proof-copy h2,
.model-faq h2 {
  color: #26231e;
  font-size: 2.85rem;
  line-height: 1.06;
}

.model-copy p,
.model-proof-copy p {
  margin: 18px 0 0;
  color: #665f55;
  font-size: 1.02rem;
}

.model-number-card {
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 42px;
  background: var(--sun);
  color: #171511;
  text-align: center;
  box-shadow: 0 22px 70px rgba(23, 21, 17, 0.16);
}

.model-number-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.2rem;
  line-height: 0.9;
}

.model-number-card span {
  margin-top: 12px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.model-number-card p {
  max-width: 250px;
  margin: 22px 0 0;
  color: #51472c;
  font-weight: 800;
}

.model-band {
  padding: 100px 24px;
  background: #f7c418;
}

.model-band-head {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.model-use-grid,
.model-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.model-use-grid article,
.model-process-grid article {
  min-height: 240px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(23, 21, 17, 0.12);
}

.model-use-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #171511;
  color: var(--sun);
  font-weight: 900;
}

.model-use-grid h3,
.model-process-grid h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
}

.model-use-grid p,
.model-process-grid p {
  margin: 16px 0 0;
  color: #676054;
}

.model-proof {
  padding: 106px 24px;
  background: #171511;
  color: #fff;
}

.model-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr);
  gap: 58px;
  align-items: center;
}

.model-proof-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.model-proof-copy h2 {
  color: #fff;
}

.model-proof-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.model-process {
  padding: 100px 24px;
  background: #f7f0df;
}

.model-process-grid article {
  border-top: 6px solid var(--sun);
}

.model-faq {
  padding: 100px 24px;
}

.model-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 58px;
}

.model-faq-list {
  display: grid;
  gap: 12px;
}

.model-faq-list details {
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.model-faq-list summary {
  cursor: pointer;
  color: #26231e;
  font-size: 1.08rem;
  font-weight: 900;
}

.model-faq-list p {
  margin: 16px 0 0;
  color: #68645c;
}

.model-cta {
  padding: 100px 24px;
  background: #171511;
  color: #fff;
  text-align: center;
}

.model-cta .container {
  max-width: 860px;
}

.model-cta h2 {
  font-size: 3.25rem;
  line-height: 1.04;
}

.model-cta .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 980px) {
  .detail-grid,
  .material-grid,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .status-panel {
    position: static;
  }

  .proof-update {
    grid-template-columns: 1fr;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .model-hero,
  .model-two-col,
  .model-band-head,
  .model-proof-layout,
  .model-faq-layout {
    grid-template-columns: 1fr;
  }

  .model-hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 42px);
  }

  .model-hero-media {
    order: 2;
  }

  .model-use-grid,
  .model-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .model-hero {
    padding: calc(var(--nav-height) + 28px) 18px 54px;
  }

  .model-hero-copy h1 {
    font-size: 3.15rem;
  }

  .model-statement,
  .model-split,
  .model-band,
  .model-proof,
  .model-process,
  .model-faq,
  .model-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .model-statement h2,
  .model-copy h2,
  .model-band h2,
  .model-proof-copy h2,
  .model-faq h2,
  .model-cta h2 {
    font-size: 2.15rem;
  }

  .model-number-card strong {
    font-size: 5.2rem;
  }
}
