﻿:root {
  --bg: #f5f9ff;
  --surface: rgba(255, 255, 255, 0.82);
  --text: #18314f;
  --muted: #5e718b;
  --primary: #0a69b7;
  --primary-deep: #084d8a;
  --secondary: #c9253a;
  --secondary-soft: #ffe7ea;
  --line: rgba(10, 105, 183, 0.12);
  --shadow: 0 24px 60px rgba(12, 69, 124, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(10, 105, 183, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(201, 37, 58, 0.1), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 55%, #ffffff 100%);
}

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

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

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

.site-shell {
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(245, 249, 255, 0.92);
  border-bottom: 1px solid rgba(10, 105, 183, 0.08);
  box-shadow: 0 10px 30px rgba(12, 69, 124, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 2.9rem;
  font-weight: 800;
}

.brand-text span {
  color: var(--muted);
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.mobile-menu a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover,
.mobile-menu a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  border: 1px solid rgba(10, 105, 183, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  color: var(--primary-deep);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.95rem 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: 0;
  cursor: pointer;
}

.cta-button {
  background: linear-gradient(135deg, var(--secondary), #e54b62);
  color: #fff;
  box-shadow: 0 16px 28px rgba(201, 37, 58, 0.28);
}

.ghost-button {
  background: rgba(10, 105, 183, 0.08);
  color: var(--primary-deep);
  border: 1px solid rgba(10, 105, 183, 0.12);
}

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

.hero {
  padding: 5rem 0 3.5rem;
}

.hero-simple {
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 105, 183, 0.09);
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-simple h1,
.section-heading h2 {
  margin: 1rem 0 1rem;
  font-family: "Newsreader", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-simple h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.hero-simple p,
.section-heading p,
.story-card p,
.step p,
.card p,
.footer-copy p,
.form-help {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-note {
  margin-top: 1.2rem;
  font-size: 0.94rem;
}

.stat-card,
.story-card,
.step,
.card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stats-band {
  padding: 1rem 0 4rem;
}

.stats-grid,
.steps-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.story-card,
.step,
.card,
.contact-card {
  padding: 1.5rem;
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--primary-deep);
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 1.5rem 0 4rem;
}

.subpage-main {
  padding-top: 1.5rem;
}

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

.contact-container {
  width: min(calc(100% - 2rem), 1320px);
}

.contact-heading {
  max-width: 960px;
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.story-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.05fr 0.95fr;
}

.story-card.highlight {
  background:
    linear-gradient(135deg, rgba(10, 105, 183, 0.12), rgba(10, 105, 183, 0.03)),
    #ffffff;
}

.kicker {
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  font-weight: 800;
}

.story-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.story-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--muted);
}

.bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 0.45rem;
  flex: 0 0 12px;
  background: linear-gradient(135deg, var(--secondary), #f17587);
}

.step-number,
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-weight: 800;
}

.step-number {
  background: rgba(10, 105, 183, 0.1);
  color: var(--primary-deep);
}

.card-icon {
  background: var(--secondary-soft);
  color: var(--secondary);
  font-size: 1.25rem;
}

.step h3,
.card h3,
.story-card h3,
.contact-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.contact-form-card,
.volunteer-form-card {
  width: 100%;
  padding: 2rem;
}

.contact-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 255, 0.95));
}

.volunteer-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 245, 246, 0.95));
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  font-weight: 700;
}

.form-alert-success {
  color: #0d6b42;
  background: rgba(31, 176, 109, 0.12);
  border: 1px solid rgba(31, 176, 109, 0.18);
}

.form-alert-error {
  color: #8d1f2d;
  background: rgba(201, 37, 58, 0.1);
  border: 1px solid rgba(201, 37, 58, 0.18);
}

.ride-form {
  display: grid;
  gap: 1.4rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

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

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span,
.checkbox-field span {
  font-size: 0.94rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(10, 105, 183, 0.14);
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(10, 105, 183, 0.42);
  box-shadow: 0 0 0 4px rgba(10, 105, 183, 0.1);
}

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

.form-checks {
  display: grid;
  gap: 0.85rem;
}

.checkbox-field {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-field input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-help {
  margin: 0;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(10, 105, 183, 0.08);
  border-radius: 24px;
}

.footer-copy strong,
.footer-links a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .story-grid,
  .steps-grid,
  .cards-grid,
  .stats-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .footer-card {
    display: grid;
  }

  .contact-form-card,
  .volunteer-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

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

  .mobile-menu {
    display: grid;
    gap: 0.35rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 220ms ease, opacity 220ms ease, transform 220ms ease, padding 220ms ease, margin 220ms ease;
    margin-bottom: 0;
    padding: 0 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid transparent;
  }

  .mobile-menu.is-open {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    margin: 0 0 1rem;
    padding: 0.8rem 1rem 1rem;
    border-color: rgba(10, 105, 183, 0.12);
    box-shadow: var(--shadow);
  }

  .mobile-menu a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid rgba(10, 105, 183, 0.08);`r`n  box-shadow: 0 10px 30px rgba(12, 69, 124, 0.08);
  }

  .mobile-menu a.nav-cta {
    margin-top: 0.35rem;
    padding: 0.95rem 1rem;
    border-bottom: 0;
    text-align: center;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }
}

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

  .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
}


.nav a.nav-cta,
.mobile-menu a.nav-cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--secondary), #e54b62);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  box-shadow: 0 12px 24px rgba(201, 37, 58, 0.22);
}

.nav a.nav-cta:hover,
.mobile-menu a.nav-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #b91f34, #d83d55);
}

@media (max-width: 768px) {
  .mobile-menu a.nav-cta {
    margin-top: 0.35rem;
    padding: 0.95rem 1rem;
    border-bottom: 0;
    text-align: center;
  }
}





.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 2.5rem;
  align-items: center;
}

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

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-family: "Newsreader", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.hero-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 100%;
  padding: 2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(10, 105, 183, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.95));
  border: 1px solid rgba(10, 105, 183, 0.1);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(12, 69, 124, 0.16));
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-image-frame {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-image-frame {
    padding: 1.25rem;
    border-radius: 24px;
  }
}

.hero {
  padding: 3rem 0 3.5rem;
}

.hero-spotlight {
  margin-bottom: 2.2rem;
  padding: 1.35rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(10, 105, 183, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 255, 0.96));
  border: 1px solid rgba(10, 105, 183, 0.1);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  display: block;
}

.hero-copy-centered {
  max-width: 860px;
}

@media (max-width: 640px) {
  .hero {
    padding: 2rem 0 3rem;
  }

  .hero-spotlight {
    margin-bottom: 1.4rem;
    padding: 0.85rem;
    border-radius: 24px;
  }

  .hero-image {
    max-height: 420px;
    border-radius: 18px;
  }
}

.site-header .nav a.nav-cta,
.site-header .mobile-menu a.nav-cta {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--secondary), #e54b62) !important;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  box-shadow: 0 12px 24px rgba(201, 37, 58, 0.22);
}

.site-header .nav a.nav-cta:hover,
.site-header .mobile-menu a.nav-cta:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #b91f34, #d83d55) !important;
}

.hero {
  padding-top: 0 !important;
}

.hero-spotlight {
  margin-top: 0 !important;
  margin-bottom: 2rem;
  border-radius: 32px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-height: 680px;
  border-radius: 32px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 0 !important;
  }

  .hero-spotlight {
    margin-top: 0 !important;
    margin-bottom: 1.2rem;
    border-radius: 22px;
  }

  .hero-image {
    border-radius: 22px;
    max-height: 420px;
  }
}

.site-header .nav a.nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--secondary), #e54b62) !important;
  border: 1px solid rgba(185, 31, 52, 0.18);
  border-radius: 999px;
  padding: 0.9rem 1.25rem !important;
  box-shadow: 0 12px 24px rgba(201, 37, 58, 0.22);
}

.site-header .nav a.nav-cta:hover,
.site-header .nav a.nav-cta:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(135deg, #b91f34, #d83d55) !important;
}

.hero {
  padding: 0 0 3.5rem !important;
  margin-top: 0 !important;
}

.hero-spotlight {
  margin-top: 0 !important;
  margin-bottom: 2rem;
  padding: 0 !important;
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-image {
  width: 100%;
  max-height: 680px;
  border-radius: 32px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 640px) {
  .hero {
    padding: 0 0 3rem !important;
  }

  .hero-spotlight {
    margin-bottom: 1.2rem;
    border-radius: 22px;
  }

  .hero-image {
    border-radius: 22px;
    max-height: 420px;
  }
}

.hero {
  padding: 0 0 3.5rem !important;
}

.hero .container {
  width: 100%;
  max-width: none;
}

.hero-spotlight {
  margin: 0 0 2rem !important;
  padding: 0 !important;
  border-radius: 0 0 32px 32px !important;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-image {
  width: 100%;
  max-height: 720px;
  border-radius: 0 0 32px 32px !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-copy-centered {
  width: min(calc(100% - 2rem), 860px);
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hero {
    padding: 0 0 3rem !important;
  }

  .hero-spotlight {
    margin-bottom: 1.2rem !important;
    border-radius: 0 0 22px 22px !important;
  }

  .hero-image {
    max-height: 420px;
    border-radius: 0 0 22px 22px !important;
  }

  .hero-copy-centered {
    width: min(calc(100% - 1.25rem), 860px);
  }
}



/* Final hero override: full-bleed image flush under sticky nav */
.hero {
  padding: 0 0 3.5rem !important;
  margin: 0 !important;
}

.hero-bleed {
  width: 100%;
  margin: 0 0 2rem 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 0 32px 32px !important;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-bleed .hero-image {
  width: 100%;
  height: auto;
  max-height: 720px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 32px 32px !important;
  margin: 0;
}

.hero-copy-centered {
  width: min(calc(100% - 2rem), 860px);
  margin: 0 auto;
}

@media (max-width: 640px) {
  .hero {
    padding: 0 0 3rem !important;
  }

  .hero-bleed {
    margin-bottom: 1.2rem !important;
    border-radius: 0 0 22px 22px !important;
  }

  .hero-bleed .hero-image {
    max-height: 420px;
    border-radius: 0 0 22px 22px !important;
  }

  .hero-copy-centered {
    width: min(calc(100% - 1.25rem), 860px);
  }
}



.donate-section {
  padding-top: 2.5rem;
}

.donate-container {
  width: min(calc(100% - 2rem), 980px);
}

.donate-card {
  padding: 2.2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(201, 37, 58, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 249, 255, 0.95));
  border: 1px solid rgba(10, 105, 183, 0.1);
  box-shadow: var(--shadow);
}

.donate-title {
  margin: 0.8rem 0 0.9rem;
  font-family: "Newsreader", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.donate-copy,
.donate-note {
  color: var(--muted);
  line-height: 1.7;
}

.donate-actions {
  margin-top: 1.5rem;
}

.donate-button {
  min-width: 220px;
}

@media (max-width: 640px) {
  .donate-card {
    padding: 1.35rem;
    border-radius: 22px;
  }
}

.donate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.6rem;
  align-items: start;
}

.donate-form-card,
.donate-impact-card {
  min-height: 100%;
}

.donate-impact-title {
  margin: 0 0 1.2rem;
  font-family: "Newsreader", serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.donate-form {
  display: grid;
  gap: 1.35rem;
}

.donate-fieldset {
  display: grid;
  gap: 0.8rem;
}

.donate-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.amount-chip {
  appearance: none;
  border: 1px solid rgba(10, 105, 183, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-deep);
  border-radius: 18px;
  padding: 1rem 0.9rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.amount-chip.is-selected {
  border-color: rgba(201, 37, 58, 0.8);
  background: rgba(201, 37, 58, 0.06);
  color: var(--secondary);
}

.donate-inline-field {
  max-width: 280px;
}

.donate-form-grid {
  margin-top: 0.2rem;
}

.donate-submit {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.4rem;
  font-size: 1.05rem;
}

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

.impact-pill {
  padding: 1.4rem 1.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 105, 183, 0.1);
}

.impact-pill strong {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 1rem;
  line-height: 1.35;
}

.impact-pill p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .donate-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop donate layout cleanup */
.donate-container {
  width: min(calc(100% - 2rem), 1280px) !important;
}

.donate-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr) !important;
  gap: 1.8rem !important;
  align-items: stretch;
}

.donate-form-card,
.donate-impact-card {
  padding: 2.4rem;
}

.donate-form-card {
  background:
    radial-gradient(circle at top left, rgba(10, 105, 183, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
}

.donate-impact-card {
  background:
    radial-gradient(circle at top right, rgba(10, 105, 183, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.amount-grid {
  grid-template-columns: repeat(4, minmax(110px, 1fr));
}

.amount-chip {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.impact-columns {
  grid-template-columns: 1fr !important;
  gap: 0.9rem;
}

.impact-pill {
  padding: 1.15rem 1.1rem;
  border-radius: 22px;
}

.impact-pill strong {
  font-size: 1.05rem;
}

@media (max-width: 1080px) {
  .donate-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .donate-form-card,
  .donate-impact-card {
    padding: 1.35rem;
  }

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