:root {
  --green-950: #073d33;
  --green-900: #084b3d;
  --green-800: #0b5d4b;
  --green-700: #13705b;
  --green-100: #dff1e9;
  --green-50: #eff8f4;
  --amber-600: #d99114;
  --amber-500: #efa91e;
  --amber-100: #fff0c7;
  --teal-500: #1ba6a0;
  --ink: #17322b;
  --muted: #60746e;
  --cream: #fbf8f0;
  --white: #ffffff;
  --line: #dce8e2;
  --danger: #ad312d;
  --success: #14725b;
  --shadow-sm: 0 10px 28px rgba(7, 61, 51, 0.08);
  --shadow-lg: 0 30px 80px rgba(7, 61, 51, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.12;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 43, 36, 0.76);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 61, 51, 0.97);
  box-shadow: 0 8px 30px rgba(4, 40, 33, 0.18);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--white);
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: none;
}

.brand-copy span {
  margin-top: 4px;
  color: #f5c85c;
  font-weight: 800;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--amber-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.footer-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 21px;
  border-radius: 999px;
  background: var(--amber-500);
  color: #2c250f;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-cta:hover,
.footer-button:hover {
  background: #ffc94f;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 40, 33, 0.98) 0%, rgba(4, 40, 33, 0.91) 32%, rgba(4, 40, 33, 0.48) 58%, rgba(4, 40, 33, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 40, 33, 0.34), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 80px;
  color: var(--white);
}

.hero-content > * {
  max-width: 660px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--amber-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffe19b;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--amber-500);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(48px, 6.4vw, 78px);
  letter-spacing: -0.035em;
}

.hero h1 em {
  color: #f6c65b;
  font-style: normal;
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--amber-500);
  color: #28220f;
  box-shadow: 0 12px 30px rgba(239, 169, 30, 0.24);
}

.button--primary:hover {
  background: #ffc64a;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.hero-content .hero-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid span {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
}

.trust-grid strong {
  color: var(--green-950);
  font-size: 14px;
}

.trust-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.section {
  padding: 110px 0;
}

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

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

.section-heading .kicker {
  margin-bottom: 14px;
}

.section-heading h2,
.story-copy h2,
.application-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.025em;
}

.section-heading p,
.story-copy .lead {
  max-width: 690px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 17px;
}

.aid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.aid-card {
  min-height: 250px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(7, 61, 51, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.aid-card:hover {
  border-color: #b9d7c9;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.aid-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: var(--green-50);
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 800;
}

.aid-card:nth-child(3n + 2) .aid-icon {
  background: #fff5d8;
  color: #9d6809;
}

.aid-card:nth-child(3n + 3) .aid-icon {
  background: #e4f5f4;
  color: #0d7772;
}

.aid-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.aid-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-section {
  overflow: hidden;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(52px, 7vw, 92px);
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap::before {
  position: absolute;
  z-index: 0;
  top: -28px;
  left: -28px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--amber-100);
  content: "";
}

.story-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 160px 24px 24px 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.story-badge {
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 28px;
  display: flex;
  min-width: 180px;
  flex-direction: column;
  padding: 19px 24px;
  border-radius: var(--radius-sm);
  background: var(--green-800);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.story-badge strong {
  color: #f7c95d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.story-badge span {
  font-size: 13px;
}

.story-copy .lead {
  margin: 0 0 30px;
}

.steps {
  display: grid;
  gap: 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
}

.steps > li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #bdd8cc;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-800);
  font-weight: 900;
}

.steps strong {
  color: var(--green-950);
  font-size: 17px;
}

.steps p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
  font-weight: 850;
}

.text-link:hover {
  color: var(--amber-600);
}

.organizations {
  background:
    radial-gradient(circle at 8% 16%, rgba(27, 166, 160, 0.08), transparent 23%),
    var(--white);
}

.independence-notice {
  display: flex;
  max-width: 940px;
  align-items: flex-start;
  gap: 15px;
  margin: -18px auto 35px;
  padding: 17px 20px;
  border: 1px solid #cce2d8;
  border-radius: 14px;
  background: var(--green-50);
}

.independence-notice span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: 800;
}

.independence-notice p {
  margin: 0;
  color: #45675e;
  font-size: 13px;
}

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

.organization-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 198px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(7, 61, 51, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.organization-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.organization-logo {
  display: grid;
  min-height: 100%;
  padding: 20px;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #f7faf8;
}

.organization-logo img {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
}

.organization-body {
  display: flex;
  flex-direction: column;
  padding: 24px 21px;
}

.organization-body h3 {
  margin-bottom: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.organization-body p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.organization-body a {
  margin-top: auto;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 850;
}

.organization-body a:hover {
  color: var(--amber-600);
}

.application-section {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
}

.application-section::before,
.application-section::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.application-section::before {
  top: -230px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(239, 169, 30, 0.07);
}

.application-section::after {
  bottom: -240px;
  left: -220px;
  width: 500px;
  height: 500px;
  background: rgba(27, 166, 160, 0.08);
}

.application-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: clamp(48px, 7vw, 92px);
}

.kicker--light {
  color: #f5ca64;
}

.application-intro {
  padding-top: 28px;
}

.application-intro h2 {
  color: var(--white);
}

.application-intro > p {
  margin-bottom: 28px;
  font-size: 17px;
}

.application-intro > ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.application-intro > ul li {
  position: relative;
  padding-left: 30px;
}

.application-intro > ul li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #f5ca64;
  content: "✓";
  font-weight: 900;
}

.application-help {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.application-help strong {
  color: #f5ca64;
}

.application-help p {
  margin: 5px 0 0;
  font-size: 13px;
}

.form-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.24);
}

.syv-form-heading {
  margin-bottom: 28px;
}

.syv-form-heading h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.syv-form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.syv-alert {
  margin-bottom: 23px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.syv-alert--success {
  border: 1px solid #aad6c6;
  background: #e8f6f0;
  color: var(--success);
}

.syv-alert--error {
  border: 1px solid #e7b8b4;
  background: #fff0ef;
  color: var(--danger);
}

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

.syv-field--full {
  grid-column: 1 / -1;
}

.syv-field label,
.syv-field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--green-950);
  font-size: 13px;
  font-weight: 800;
}

.syv-field input,
.syv-field select,
.syv-field textarea {
  width: 100%;
  border: 1px solid #cbd9d3;
  border-radius: 10px;
  outline: 0;
  background: #fbfdfc;
  color: var(--ink);
  transition: border 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.syv-field input,
.syv-field select {
  min-height: 50px;
  padding: 11px 13px;
}

.syv-field textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.syv-field input:focus,
.syv-field select:focus,
.syv-field textarea:focus {
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19, 112, 91, 0.12);
}

.syv-field small {
  display: block;
  margin-top: 5px;
  color: #788984;
  font-size: 11px;
}

.syv-required {
  color: var(--danger);
}

.syv-consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 1px;
  color: #4f6560;
  font-size: 12px;
}

.syv-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green-700);
}

.syv-consent a {
  color: var(--green-700);
  text-decoration: underline;
}

.syv-submit {
  display: inline-flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(11, 93, 75, 0.18);
  transition: background 160ms ease, transform 160ms ease;
}

.syv-submit:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}

.syv-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  background: #062e27;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
  padding-top: 74px;
  padding-bottom: 48px;
}

.brand--footer {
  margin-bottom: 18px;
}

.footer-brand > p {
  max-width: 430px;
  font-size: 14px;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.site-footer li a:hover {
  color: #f5ca64;
}

.site-footer p {
  font-size: 13px;
}

.footer-button {
  min-height: 42px;
  margin-top: 5px;
  font-size: 13px;
}

.footer-disclaimer {
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  max-width: 1020px;
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
}

.footer-disclaimer strong {
  color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #05271f;
  font-size: 11px;
}

.page-main {
  min-height: 70vh;
  padding: 160px 0 100px;
  background: var(--cream);
}

.content-shell {
  max-width: 900px;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-shell h1 {
  margin-bottom: 34px;
  font-size: clamp(38px, 6vw, 60px);
}

.entry-content h2,
.entry-content h3 {
  margin-top: 36px;
  margin-bottom: 14px;
}

.entry-content h2 {
  font-size: 28px;
}

.entry-content h3 {
  font-size: 22px;
}

.entry-content p,
.entry-content li {
  color: #4f6560;
}

@media (max-width: 1080px) {
  .aid-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .primary-nav {
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 22px 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--green-950);
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    padding: 12px 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 40, 33, 0.97), rgba(4, 40, 33, 0.8) 68%, rgba(4, 40, 33, 0.45));
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .story-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .story-image-wrap {
    max-width: 720px;
  }

  .application-intro {
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

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

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy {
    font-size: 10px;
  }

  .primary-nav {
    top: 76px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 40, 33, 0.98) 2%, rgba(4, 40, 33, 0.91) 61%, rgba(4, 40, 33, 0.58) 100%),
      linear-gradient(90deg, rgba(4, 40, 33, 0.5), rgba(4, 40, 33, 0.25));
  }

  .hero-content {
    align-self: flex-end;
    padding-top: 180px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .story-copy h2,
  .application-intro h2 {
    font-size: 38px;
  }

  .aid-grid,
  .organization-grid,
  .syv-fields,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .aid-card {
    min-height: auto;
  }

  .story-image-wrap img {
    border-radius: 90px 18px 18px 18px;
  }

  .story-badge {
    right: 12px;
    bottom: 14px;
  }

  .organization-card {
    grid-template-columns: 100px 1fr;
  }

  .organization-logo {
    padding: 15px;
  }

  .form-card {
    border-radius: 22px;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

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

