:root {
  --ink: #14221f;
  --muted: #596a64;
  --paper: #fffaf1;
  --panel: #ffffff;
  --green: #263955;
  --green-deep: #151f31;
  --mint: #e8edf6;
  --amber: #b8945d;
  --coral: #a95d68;
  --sky: #8fb6c8;
  --plum: #57435f;
  --cream: #f4eadc;
  --line: #e2ded8;
  --shadow: 0 18px 60px rgba(20, 26, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(128, 199, 214, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(169, 93, 104, 0.14), transparent 26%),
    linear-gradient(135deg, #fffaf4 0%, #f4f7fb 52%, #f7efe8 100%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  display: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(38, 57, 85, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 14px 48px rgba(20, 34, 31, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: headerDrop 700ms ease both;
}

.brand {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(20, 26, 40, 0.14);
  transition: transform 220ms ease, filter 220ms ease;
}

.brand:hover .brand-logo {
  filter: saturate(1.08) contrast(1.04);
  transform: rotate(-8deg) scale(1.05);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.header-action {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a:hover {
  background: linear-gradient(135deg, rgba(215, 243, 228, 0.95), rgba(255, 242, 215, 0.95));
  color: var(--green-deep);
  transform: translateY(-1px);
}

.nav-links a.active {
  background: linear-gradient(135deg, var(--green), var(--plum));
  color: white;
}

.header-action {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: white;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.header-action:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 142px max(24px, calc((100vw - 1120px) / 2)) 72px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42vw, 560px);
  height: 42%;
  background:
    linear-gradient(135deg, rgba(169, 93, 104, 0.88), rgba(38, 57, 85, 0.9));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: 0.92;
}

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

.hero-image {
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 1200ms ease both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 250, 241, 0.88) 38%, rgba(255, 250, 241, 0.24) 72%, rgba(255, 250, 241, 0.08) 100%),
    linear-gradient(0deg, rgba(38, 57, 85, 0.32), rgba(169, 93, 104, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(630px, 100%);
  animation: riseIn 800ms 140ms ease both;
}

.hero-content::before {
  display: block;
  width: 86px;
  height: 6px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--sky));
  content: "";
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(169, 93, 104, 0.13), rgba(184, 148, 93, 0.15));
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 5.9rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  width: min(560px, 100%);
  color: #35413c;
  font-size: 1.18rem;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--green), var(--plum));
  color: white;
  box-shadow: 0 12px 28px rgba(33, 91, 73, 0.28);
}

.primary-button:hover {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  box-shadow: 0 18px 36px rgba(33, 91, 73, 0.34);
}

.secondary-button {
  border: 1px solid rgba(38, 57, 85, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.welcome-video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 148, 93, 0.24), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(128, 199, 214, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(6, 72, 63, 0.98), rgba(90, 70, 111, 0.94));
  color: white;
  animation: softFade 700ms ease both;
}

.welcome-video-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.welcome-video-section .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd184;
}

.welcome-video-frame {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
}

.welcome-video-frame::before {
  display: none;
}

.welcome-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--coral);
  font-weight: 850;
}

.text-link:hover {
  color: var(--green-deep);
}

.text-link::after {
  margin-left: 8px;
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-action {
  margin-top: 28px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 148px max(24px, calc((100vw - 1120px) / 2)) 88px;
  background:
    radial-gradient(circle at 86% 14%, rgba(184, 148, 93, 0.26), transparent 24%),
    linear-gradient(105deg, rgba(21, 31, 49, 0.95) 0%, rgba(87, 67, 95, 0.86) 48%, rgba(169, 93, 104, 0.16) 100%),
    url("assets/street-cats-hero.png") center / cover;
  color: white;
}

.page-hero::before {
  position: absolute;
  inset: auto max(24px, calc((100vw - 1120px) / 2)) 42px auto;
  width: 220px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--coral), var(--sky));
  content: "";
}

.page-hero.compact {
  min-height: 500px;
  padding-bottom: 86px;
}

.page-hero h1 {
  position: relative;
  width: min(840px, 100%);
  font-size: clamp(3rem, 7vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  position: relative;
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.page-hero .eyebrow {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: linear-gradient(90deg, rgba(38, 57, 85, 0.16), rgba(143, 182, 200, 0.18), rgba(169, 93, 104, 0.14));
  border-block: 1px solid var(--line);
}

.trust-strip div {
  min-height: 138px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease, background 220ms ease;
}

.trust-strip div:nth-child(1) {
  border-top: 4px solid var(--green);
}

.trust-strip div:nth-child(2) {
  border-top: 4px solid var(--amber);
}

.trust-strip div:nth-child(3) {
  border-top: 4px solid var(--coral);
}

.trust-strip div:hover {
  background: #ffffff;
  transform: translateY(-4px);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span,
.section-copy,
.impact-card p,
.donation-intro p,
.story-block p,
.route-list span,
.footer p,
.gateway-note {
  color: var(--muted);
}

.section,
.impact-band {
  padding: 98px max(24px, calc((100vw - 1120px) / 2));
}

.section:not(.story-section):not(.donation-section) {
  position: relative;
}

.section:not(.story-section):not(.donation-section)::before {
  position: absolute;
  top: 34px;
  right: max(24px, calc((100vw - 1120px) / 2));
  width: 132px;
  height: 132px;
  border: 1px solid rgba(38, 57, 85, 0.12);
  border-radius: 50%;
  content: "";
}

.section,
.impact-band,
.trust-strip,
.footer {
  animation: softFade 700ms ease both;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.two-column > div:first-child h2 {
  position: relative;
}

.two-column > div:first-child h2::after {
  display: block;
  width: 74px;
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--sky));
  content: "";
}

.section-copy {
  font-size: 1.08rem;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(169, 93, 104, 0.08), transparent 24%),
    linear-gradient(135deg, #fffaf4, #f4f7fb);
}

.founder-note .section-copy {
  padding: 30px;
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.founder-signature {
  margin: 20px 0 0;
  color: var(--plum);
  font-weight: 850;
}

.impact-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(128, 199, 214, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(237, 245, 239, 0.98), rgba(255, 242, 215, 0.96));
}

.impact-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.impact-grid.expanded .impact-card {
  min-height: 300px;
}

.impact-card,
.donation-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 250, 241, 0.98));
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.impact-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border-top: 4px solid var(--green);
}

.impact-card:nth-child(2) {
  border-top-color: var(--sky);
}

.impact-card:nth-child(3) {
  border-top-color: var(--coral);
}

.impact-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 148, 93, 0.18), rgba(169, 93, 104, 0.12));
  content: "";
}

.impact-card:hover,
.donation-panel:hover,
.contact-card:hover {
  border-color: rgba(33, 91, 73, 0.28);
  box-shadow: 0 24px 70px rgba(20, 35, 30, 0.18);
  transform: translateY(-6px);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  color: #19130b;
  font-size: 0.78rem;
  font-weight: 900;
}

.donation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 58px;
  align-items: start;
  background:
    radial-gradient(circle at 8% 22%, rgba(169, 93, 104, 0.1), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(128, 199, 214, 0.18), transparent 26%),
    #fffdf7;
}

.donation-intro {
  position: sticky;
  top: 112px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.mini-stats div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f7efe8);
}

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

.mini-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.donation-panel {
  padding: 30px;
  border-top: 4px solid var(--coral);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  font-weight: 850;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-option {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f8fbf7);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.amount-option.active {
  border-color: var(--green);
  background: linear-gradient(135deg, var(--coral), var(--green));
  color: white;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field span {
  color: #38433f;
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(33, 91, 73, 0.12);
}

.donation-summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(215, 243, 228, 0.95), rgba(255, 242, 215, 0.95));
}

.donation-summary span {
  color: var(--muted);
  font-weight: 750;
}

.donation-summary strong {
  color: var(--green-deep);
  font-size: 1.35rem;
}

.full-width {
  width: 100%;
}

.gateway-note {
  min-height: 48px;
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.story-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 46px;
  background:
    radial-gradient(circle at 80% 20%, rgba(169, 93, 104, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(21, 31, 49, 0.98), rgba(38, 57, 85, 0.95), rgba(87, 67, 95, 0.9));
  color: white;
}

.story-section::after {
  position: absolute;
  right: 7%;
  bottom: -54px;
  width: 210px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  animation: orbitSoft 8s linear infinite;
}

.story-block p,
.route-list span {
  color: rgba(255, 255, 255, 0.72);
}

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

.route-list div {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  transition: transform 220ms ease, background 220ms ease;
}

.route-list div:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(6px);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(24px, calc((100vw - 1120px) / 2));
  background: linear-gradient(135deg, #fffaf1, #edf8f2);
}

.footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card {
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8f1e8);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.contact-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  overflow-wrap: anywhere;
}

.thank-you-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 148px max(24px, calc((100vw - 1120px) / 2)) 86px;
  background:
    linear-gradient(105deg, rgba(21, 31, 49, 0.9), rgba(87, 67, 95, 0.74), rgba(169, 93, 104, 0.24)),
    url("assets/street-cats-hero.png") center / cover;
  color: white;
}

.thank-you-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(143, 182, 200, 0.3), transparent 26%),
    linear-gradient(180deg, rgba(21, 31, 49, 0.12), rgba(21, 31, 49, 0.72));
  content: "";
}

.thank-you-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  animation: riseIn 800ms 120ms ease both;
}

.thank-you-card h1 {
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.receipt-panel {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 30px 0 26px;
  padding: 18px 20px;
  border: 1px solid rgba(38, 57, 85, 0.12);
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4f7fb);
}

.receipt-panel span {
  color: var(--muted);
  font-weight: 800;
}

.receipt-panel strong {
  color: var(--plum);
  font-size: 1.45rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.light-list div {
  border-color: var(--line);
  background: linear-gradient(135deg, #ffffff, #f7efe8);
  color: var(--ink);
}

.light-list span {
  color: var(--muted);
}

.light-list div:hover {
  background: #ffffff;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 2px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 88vh;
  }

  .welcome-video-frame {
    justify-self: center;
    width: min(100%, 620px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.82) 58%, rgba(251, 250, 246, 0.2) 100%),
      linear-gradient(0deg, rgba(24, 33, 30, 0.32), rgba(24, 33, 30, 0.02));
  }

  .trust-strip,
  .impact-grid,
  .two-column,
  .founder-note,
  .welcome-video-section,
  .donation-section,
  .story-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .donation-intro {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .header-action {
    display: none;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: 116px;
  }

  .page-hero::before {
    display: none;
  }

  .page-hero {
    padding-top: 122px;
    padding-bottom: 58px;
  }

  .thank-you-hero {
    min-height: 680px;
    padding-top: 132px;
    padding-bottom: 58px;
  }

  .thank-you-card {
    padding: 28px;
  }

  .receipt-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .section,
  .welcome-video-section,
  .impact-band {
    padding-block: 62px;
  }

  .mini-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .donation-section {
    gap: 30px;
  }

  .donation-panel {
    padding: 20px;
  }

  .route-list div,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.09);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitSoft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
