/* Nonprofit website — modern, warm, and approachable */
:root {
  --color-primary: #21556b;
  --color-primary-dark: #163b4d;
  --color-primary-light: #3f7f9a;
  --color-accent: #f0845d;
  --color-accent-soft: #ffd8c9;
  --color-success: #2f9f7f;
  --color-bg: #f5f8fb;
  --color-bg-alt: #eaf1f7;
  --color-surface: #ffffff;
  --color-text: #21313d;
  --color-text-muted: #4c6270;
  --color-border: #d7e3ec;
  --color-white: #ffffff;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, sans-serif;
  --max-width: 1320px;
  --space: 1.5rem;
  --space-inline: clamp(0.875rem, 2.2vw, 1.25rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 24px rgba(27, 66, 86, 0.08);
  --shadow-md: 0 16px 44px rgba(27, 66, 86, 0.12);
  /* Header — align with wordmark (navy + gold) */
  --header-navy: #003366;
  --header-navy-deep: #00264d;
  --header-gold: #f9a602;
  --header-gold-bright: #ffbf33;
  --header-gold-soft: rgba(249, 166, 2, 0.2);
  --header-gold-glow: rgba(249, 166, 2, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(circle at 10% 0%, #eef6ff 0%, rgba(238, 246, 255, 0) 34%),
    radial-gradient(circle at 95% 8%, #fff0ea 0%, rgba(255, 240, 234, 0) 26%),
    var(--color-bg);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 0;
  color: var(--color-primary-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.32rem;
}

p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

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

/* Layout — fluid width on laptops so side margins stay modest */
.wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: min(var(--max-width), calc(100vw - 1.25rem));
  margin-inline: auto;
  padding-inline: var(--space-inline);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.85rem 0;
  background: rgba(252, 251, 248, 0.94);
  border-bottom: 1px solid rgba(20, 42, 69, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.12);
}

/* Header bar: same max width + gutters on every page (matches home hero shell) */
.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.2rem;
  max-width: min(var(--max-width), 100%);
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.logo:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
  opacity: 0.92;
}

.logo:active {
  transform: scale(0.98);
}

.site-header .logo {
  color: var(--header-navy);
}

.site-header .logo:hover {
  color: var(--header-navy-deep);
  opacity: 0.94;
}

/* Header: horizontal wordmark (image includes organization name) */
.logo-header {
  display: inline-flex;
  align-items: center;
  margin-right: 1.25rem;
  min-width: 0;
}

.logo-header-img {
  height: 88px;
  width: auto;
  max-width: min(100%, calc(100vw - 2.5rem));
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Footer: square mark (header uses horizontal wordmark) */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
}

/* White/light mark on dark bar — no colored “tile” behind the glyph */
.site-footer .footer-logo {
  height: 52px;
  width: auto;
  max-width: min(100%, 280px);
  object-fit: contain;
  object-position: left center;
  display: block;
  border-radius: 12px;
  border: none;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}

.site-header .nav-list {
  list-style: none;
  margin: 0;
  padding: 0.24rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  border-radius: 999px;
  background: rgba(20, 42, 69, 0.045);
  border: 1px solid rgba(20, 42, 69, 0.075);
  box-shadow: 0 2px 10px rgba(20, 42, 69, 0.055);
}

.site-header .nav-list a {
  display: inline-block;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  color: var(--header-navy);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, outline-color 0.2s ease;
}

.site-header .nav-list a:hover {
  background: rgba(249, 166, 2, 0.14);
  color: var(--header-navy-deep);
  text-decoration: none;
  transform: translateY(-0.5px);
  box-shadow: 0 1px 6px rgba(249, 166, 2, 0.22);
}

.site-header .nav-list a[aria-current="page"] {
  background: linear-gradient(165deg, rgba(255, 199, 74, 0.96) 0%, rgba(249, 166, 2, 0.94) 100%);
  color: var(--header-navy-deep);
  box-shadow: 0 1px 7px rgba(249, 166, 2, 0.3);
}

.site-header .nav-list a[aria-current="page"]:hover {
  background: linear-gradient(165deg, #ffd37a 0%, #f9a602 100%);
  color: var(--header-navy-deep);
  transform: none;
  box-shadow: 0 2px 8px rgba(249, 166, 2, 0.32);
}

.site-header .nav-list a:focus-visible {
  outline: 2px solid var(--header-gold);
  outline-offset: 2px;
}

main {
  padding-bottom: 1.2rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5.4rem;
  text-align: center;
  border-bottom: 1px solid #e6eef5;
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.22) 0%,
      rgba(255, 245, 241, 0.18) 52%,
      rgba(245, 248, 251, 0.22) 100%
    ),
    url("hero.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

/* Page hero (inner pages) — matches home hero treatment */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 8vw, 4.75rem) 0 clamp(3rem, 7vw, 4.25rem);
  text-align: center;
  border-bottom: none;
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.18) 0%,
      rgba(255, 245, 241, 0.14) 52%,
      rgba(245, 248, 251, 0.18) 100%
    ),
    url("hero.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    125deg,
    rgba(0, 51, 102, 0.46) 0%,
    rgba(0, 26, 51, 0.28) 48%,
    rgba(0, 51, 102, 0.2) 100%
  );
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 166, 2, 0.2) 0%, rgba(249, 166, 2, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.25);
}

.page-hero .subtitle {
  margin: 0 auto;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

/* Page-specific hero images */
body.about-page .page-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2.25rem, 5.5vw, 3.25rem);
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.18) 0%,
      rgba(255, 245, 241, 0.14) 52%,
      rgba(245, 248, 251, 0.18) 100%
    ),
    url("hero7.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

body.contact-page .page-hero {
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.18) 0%,
      rgba(255, 245, 241, 0.14) 52%,
      rgba(245, 248, 251, 0.18) 100%
    ),
    url("hero8.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

body.get-involved-page .page-hero {
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.18) 0%,
      rgba(255, 245, 241, 0.14) 52%,
      rgba(245, 248, 251, 0.18) 100%
    ),
    url("hero6.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

body.community-page .page-hero {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(2.25rem, 5.5vw, 3.25rem);
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.18) 0%,
      rgba(255, 245, 241, 0.14) 52%,
      rgba(245, 248, 251, 0.18) 100%
    ),
    url("hero5.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

body.thank-you-page .page-hero {
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.18) 0%,
      rgba(255, 245, 241, 0.14) 52%,
      rgba(245, 248, 251, 0.18) 100%
    ),
    url("hero3.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -5% -62px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 132, 93, 0.18) 0%, rgba(240, 132, 93, 0) 70%);
  pointer-events: none;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 3.45rem);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 1.5rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.4),
    0 12px 36px rgba(0, 0, 0, 0.28);
}

/* Buttons — navy + gold (matches header brand) */
.btn {
  display: inline-block;
  padding: 0.78rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--header-gold);
  outline-offset: 3px;
}

/* Primary / gold CTA */
.btn-primary,
.btn--gold {
  background: linear-gradient(165deg, var(--header-gold-bright) 0%, var(--header-gold) 100%);
  color: var(--header-navy-deep);
  border-color: rgba(0, 51, 102, 0.12);
  box-shadow: 0 8px 22px rgba(249, 166, 2, 0.32);
}

.btn-primary:hover,
.btn--gold:hover {
  /* Do not use filter: brightness() — it washes out text. Use a stronger gold + fixed navy text. */
  background: linear-gradient(165deg, #ffd666 0%, #ffb814 100%);
  color: var(--header-navy-deep);
  border-color: rgba(0, 51, 102, 0.2);
  box-shadow: 0 10px 28px rgba(249, 166, 2, 0.42);
}

.btn-primary:focus-visible,
.btn--gold:focus-visible {
  outline-color: var(--header-navy);
}

/* Secondary / navy */
.btn-secondary {
  background: linear-gradient(165deg, #0d4d7a 0%, #003366 100%);
  color: #ffffff;
  border-color: rgba(0, 26, 51, 0.35);
  box-shadow: 0 8px 22px rgba(0, 51, 102, 0.22);
}

.btn-secondary:hover {
  background: linear-gradient(165deg, #1565a8 0%, #0a4a7a 100%);
  color: #ffffff;
  border-color: rgba(0, 26, 51, 0.45);
  box-shadow: 0 10px 26px rgba(0, 51, 102, 0.32);
}

.btn-secondary:focus-visible {
  outline-color: var(--header-gold);
}

/* Sections */
.section {
  padding: 3.6rem 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(223, 236, 247, 0.48) 0%, rgba(223, 236, 247, 0.2) 100%);
}

.section .wrap {
  max-width: min(52rem, 100%);
}

/* Home uses wider copy blocks to reduce side whitespace on laptop screens */
.home-page .section .wrap {
  max-width: min(68rem, 100%);
}

/* ~48–64px vertical rhythm between home sections */
.home-page .section {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

.home-page .hero + .section {
  padding-top: clamp(2rem, 4vw, 2.75rem);
}

.home-page #our-tools {
  scroll-margin-top: 5.5rem;
}

/* About + community: content column width */
.about-page .section .wrap,
.community-page .section .wrap {
  max-width: min(68rem, 100%);
}

.community-page .section {
  padding: clamp(2.75rem, 5vw, 3.75rem) 0;
}

/* About: section rhythm + type aligned with home page */
.about-page .section {
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

.about-page .page-hero + .section {
  padding-top: clamp(2rem, 4vw, 2.75rem);
}

.about-page .section-header--left {
  margin-bottom: 0.625rem;
}

.about-page .section-header--left h2 {
  margin-bottom: 0;
  font-size: clamp(1.38rem, 2.6vw, 1.62rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.about-page .section .wrap > p {
  margin: 0 0 0.75rem;
  max-width: min(37.5rem, 100%);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.about-page .section .wrap > p:last-of-type {
  margin-bottom: 0;
}

.about-page .section ul {
  margin: 0.85rem 0 0;
  padding-left: 1.35rem;
  max-width: min(37.5rem, 100%);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.about-page .section ul li {
  margin-bottom: 0.5rem;
}

.about-page .section ul li:last-child {
  margin-bottom: 0;
}

.about-page .section ul.about-what-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-page .about-what-list > li {
  margin-bottom: 1.15rem;
}

.about-page .about-what-list > li:last-child {
  margin-bottom: 0;
}

.about-page .about-what-list strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.03rem;
  color: var(--color-text);
}

.about-page .about-what-list__detail {
  display: block;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.about-page .about-work__title {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 0.35rem 0 0.65rem;
  max-width: min(37.5rem, 100%);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.about-page .about-work__features-label {
  margin: 1rem 0 0.35rem;
}

.about-page .section ul.about-work-features {
  list-style: disc;
  padding-left: 1.35rem;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
}

.about-page .about-work-features li {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.about-page .about-work-features li:last-child {
  margin-bottom: 0;
}

.about-page .about-work__cta {
  margin-top: 1.1rem;
  margin-bottom: 0;
}

.section--wide .wrap {
  max-width: var(--max-width);
}

/* Inner pages with sections directly inside .wrap */
main > .wrap > .section {
  background: var(--color-surface);
  border: 1px solid rgba(215, 227, 236, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 2rem clamp(1.2rem, 2vw, 2rem);
  margin-bottom: 1.2rem;
}

main > .wrap > .section.section--alt {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
}

/* Card grid (e.g. ways to help) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
  margin-top: 1.1rem;
}

.card {
  height: 100%;
  background: var(--color-surface);
  border: 1px solid rgba(215, 227, 236, 0.9);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  margin: 0 0 0.8rem;
}

.card .btn {
  margin-top: 0.35rem;
}

/* —— Home page (modern layout) —— */
.home-page .hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.75rem, 6vw, 3.75rem) 0 clamp(2.5rem, 5.5vw, 3.25rem);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.home-page .hero::before,
.home-page .hero::after {
  content: none;
}

.home-page .hero .wrap,
.home-page .hero .hero__shell {
  position: relative;
  z-index: 1;
}

.hero__inner {
  max-width: min(40rem, 100%);
  margin-inline: auto;
}

/* Home hero shell only (header uses global .site-header .wrap) */
.home-page .hero__shell {
  max-width: min(var(--max-width), 100%);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.home-page .hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.625rem, 6.75vw, 3.525rem);
}

.home-page .hero-mockup {
  margin: 0;
  order: 2;
  max-width: 100%;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.09));
}

.home-page .hero-mockup--large .hero-mockup__device {
  width: min(280px, 76vw);
  padding: 0.55rem;
  border-radius: 1.85rem;
}

.home-page .hero-mockup__device {
  width: min(204px, 61vw);
  padding: 0.55rem;
  border-radius: 2rem;
  background: linear-gradient(150deg, #1c1c1e 0%, #3a3a3c 50%, #1c1c1e 100%);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-page .hero-mockup__screen {
  aspect-ratio: 9 / 19.5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1628 0%, #132f52 42%, #0d2138 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .hero-mockup__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 960px) {
  .home-page .hero {
    text-align: left;
  }

  /* Equal side columns center the pair; extra margin on mockup makes text↔phone gap obvious */
  .home-page .hero__grid {
    display: grid;
    grid-template-columns:
      1fr
      minmax(0, min(37.5rem, 100%))
      minmax(260px, min(430px, 48vw))
      1fr;
    align-items: center;
    column-gap: clamp(1.5rem, 3vw, 2.025rem);
    row-gap: clamp(1.875rem, 4.5vw, 2.625rem);
  }

  .home-page .hero-mockup--large .hero-mockup__device {
    width: min(306px, 100%);
  }

  .home-page .hero__grid .hero__inner {
    grid-column: 2;
    margin-inline: 0;
    max-width: none;
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .home-page .hero__grid .hero-mockup {
    grid-column: 3;
    justify-self: start;
    max-width: 100%;
    min-width: 0;
    margin-inline-start: clamp(3rem, 6.75vw, 4.875rem);
    transform: rotate(3deg);
  }

  .home-page .hero__grid .hero__actions {
    justify-content: flex-start;
  }
}

@media (min-width: 1100px) {
  .home-page .hero__grid {
    grid-template-columns:
      1fr
      minmax(0, min(600px, 100%))
      minmax(260px, min(430px, 48vw))
      1fr;
  }
}

.hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 26, 51, 0.62);
}

.home-page .hero h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: #111827;
  text-shadow: none;
}

.home-page .hero .hero__lede {
  margin: 0.65rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.52;
  color: #6b7280;
  text-shadow: none;
}

.home-page .hero .hero__lede-trust {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: #4b5563;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

/* Home hero CTAs — gold primary + navy outline (brand theme) */
.home-page .hero__actions {
  gap: 0.75rem 1rem;
  margin-top: clamp(1.125rem, 2vw, 1.5rem);
}

.home-page .hero__actions .btn {
  min-width: auto;
  text-align: center;
}

.home-page .hero .hero__btn-primary,
.home-page .hero .hero__btn-secondary {
  padding: 12px 20px;
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 520px) {
  .home-page .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .hero__actions .btn {
    min-width: 0;
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }
}

.btn--lg {
  padding: 0.92rem 1.6rem;
  font-size: 1.02rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  filter: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn--outline-light:focus-visible {
  outline-color: #ffffff;
}

.btn--block {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.btn--outline-dark {
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  filter: none;
}

.btn--outline-dark:focus-visible {
  outline-color: #ffffff;
}

/* Navy outline — for light backgrounds (matches header brand) */
.btn--outline-navy {
  background: transparent;
  color: var(--header-navy);
  border-color: rgba(0, 51, 102, 0.32);
  box-shadow: none;
}

.btn--outline-navy:hover {
  background: rgba(0, 51, 102, 0.06);
  color: var(--header-navy-deep);
  border-color: var(--header-navy);
  filter: none;
}

.btn--outline-navy:focus-visible {
  outline-color: var(--header-navy);
}

.section-header {
  margin-bottom: 0.5rem;
}

.section-header--center {
  text-align: center;
  max-width: min(52rem, 100%);
  margin-inline: auto;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--header-navy);
  opacity: 0.85;
}

.section-kicker--on-dark {
  color: rgba(255, 191, 51, 0.95);
  opacity: 1;
}

.section-header h2 {
  margin-bottom: 0.85rem;
}

.section-lead {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.15rem);
  line-height: 1.65;
  color: var(--color-text-muted);
}

.section-intro {
  margin: 0 auto 0.25rem;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.home-mission {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.card__meta {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--header-navy);
  opacity: 0.75;
}

.card__meta--accent {
  color: #c27a00;
  opacity: 1;
}

.card--spotlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  border: 1px solid rgba(249, 166, 2, 0.45);
  background: linear-gradient(165deg, rgba(255, 253, 248, 1) 0%, rgba(255, 248, 230, 0.65) 100%);
  box-shadow: 0 12px 36px rgba(0, 51, 102, 0.08);
}

.card--spotlight .card__meta {
  flex: 1 1 100%;
  margin-bottom: 0;
}

.card-spotlight__body {
  flex: 1 1 240px;
  min-width: 0;
}

.card-spotlight__body h3 {
  margin-bottom: 0.45rem;
}

.card-spotlight__body p {
  margin: 0;
}

.card--spotlight > .btn {
  flex: 0 0 auto;
  margin: 0;
  margin-left: auto;
}

@media (max-width: 899px) {
  .card--spotlight > .btn {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}

.home-page .home-cta {
  background: #f9fafb;
}

.home-cta__panel {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-cta__copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111827;
  max-width: 38ch;
}

.home-cta__copy p {
  margin: 0;
  max-width: 46ch;
  color: #6b7280;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  flex: 0 0 auto;
}

.home-page .home-cta__btn-primary,
.home-page .home-cta__btn-secondary {
  padding: 12px 22px;
  border-radius: 11px;
  font-weight: 600;
}

.home-page .home-cta__btn-secondary {
  background: #ffffff;
}

@media (max-width: 780px) {
  .home-cta__panel {
    flex-wrap: wrap;
  }

  .home-page .home-cta__actions {
    width: 100%;
    justify-content: stretch;
  }

  .home-page .home-cta__actions .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }
}

.home-page .home-prose {
  max-width: min(37.5rem, 100%);
}

.home-page .home-prose p {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.home-page .home-prose p:last-child {
  margin-bottom: 0;
}

.home-page .home-prose--support p:last-of-type {
  margin-bottom: 0;
}

.home-page .home-why .section-header--left,
.home-page .home-principles .section-header--left,
.home-page .home-tools .section-header--left,
.home-page .home-community .section-header--left,
.home-page .home-support .section-header--left {
  margin-bottom: 0.625rem;
}

.home-page .section-header--left h2 {
  margin-bottom: 0;
  font-size: clamp(1.38rem, 2.6vw, 1.62rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.home-page .home-principles-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: min(37.5rem, 100%);
}

.home-page .home-principles-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.65rem;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--header-navy);
}

.home-page .home-principles-list li:last-child {
  margin-bottom: 0;
}

.home-page .home-principles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--header-gold-bright) 0%, var(--header-gold) 100%);
  box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.12);
}

.home-page .home-tools-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
  margin-top: 0.125rem;
  align-items: start;
}

@media (min-width: 768px) {
  .home-page .home-tools-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.125rem;
  }

  .home-page .home-tools-list > .home-tool-card {
    min-width: 0;
  }
}

/* littleBible: text + full screenshot side by side inside the tile */
.home-page .home-tool-card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 0;
}

@media (min-width: 560px) {
  .home-page .home-tool-card__row {
    grid-template-columns: minmax(0, 1fr) minmax(65px, min(25.5%, 112px));
    gap: clamp(1.1rem, 2.6vw, 1.45rem);
    padding-inline-end: 0.2rem;
  }
}

.home-page .home-tool-card__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: min(36rem, 100%);
}

.home-page .home-tool-card__main .home-tool-card__title {
  margin-bottom: 0.625rem;
}

.home-page .home-tool-card__main .home-tool-card__action {
  margin-top: 0.9rem;
}

.home-page .home-tool-card__row .home-tool-card__shot {
  margin: 0;
  width: 100%;
  max-width: min(112px, 47vw);
  justify-self: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(0, 26, 51, 0.07);
  border: 1px solid rgba(0, 51, 102, 0.08);
  flex-shrink: 0;
}

@media (min-width: 560px) {
  .home-page .home-tool-card__row .home-tool-card__shot {
    justify-self: end;
    max-width: 100%;
  }
}

/* Full frame: natural aspect ratio, nothing cropped */
.home-page .home-tool-card__row .home-tool-card__shot img {
  display: block;
  width: 100%;
  height: auto;
}

.home-page .home-tools-list .home-tool-card {
  height: auto;
  min-height: 0;
}

.home-page .home-tool-card {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  padding: 1.2rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 51, 102, 0.12);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.home-page .home-tool-card--soon .home-tool-card__head,
.home-page .home-tool-card--soon > .home-tool-card__body {
  max-width: min(36rem, 100%);
}

.home-page .home-tool-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
}

.home-page .home-tool-card__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  color: var(--header-navy);
  text-wrap: balance;
}

.home-page .home-tool-card__body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.52;
  color: var(--color-text-muted);
  max-width: 100%;
}

.home-page .home-tool-card__body:last-of-type {
  margin-bottom: 0;
}

.home-page .home-tool-badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(0, 38, 77, 0.78);
  background: rgba(249, 166, 2, 0.11);
  border: 1px solid rgba(249, 166, 2, 0.28);
  border-radius: 5px;
}

.home-page .home-tools-note {
  margin: 1.35rem 0 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--color-text-muted);
}

.home-page .home-community__action {
  margin-top: 1.125rem;
  max-width: min(37.5rem, 100%);
}

.home-page .home-community__cta {
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
  text-align: center;
  padding: 12px 18px;
}

.home-page .home-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.125rem;
  align-items: center;
  max-width: min(37.5rem, 100%);
}

/* Donate page */
.donate-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.75rem, 9vw, 5rem) 0 clamp(3.25rem, 7vw, 4.25rem);
  border-bottom: none;
  background:
    linear-gradient(
      160deg,
      rgba(239, 247, 255, 0.18) 0%,
      rgba(255, 245, 241, 0.14) 55%,
      rgba(245, 248, 251, 0.18) 100%
    ),
    url("hero3.png");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.donate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    125deg,
    rgba(0, 51, 102, 0.48) 0%,
    rgba(0, 26, 51, 0.3) 50%,
    rgba(0, 51, 102, 0.22) 100%
  );
  pointer-events: none;
}

.donate-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 166, 2, 0.2) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.donate-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donate-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.donate-hero__copy h1 {
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.98);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.24);
}

.donate-hero__subtitle {
  margin: 0 0 1.1rem;
  max-width: 56ch;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.94);
}

.donate-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(215, 227, 236, 0.9);
  box-shadow: 0 10px 22px rgba(27, 66, 86, 0.08);
}

.donate-hero .badge {
  color: #003366;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(249, 166, 2, 0.45);
  box-shadow: 0 8px 22px rgba(0, 26, 51, 0.12);
}

.donate-section .wrap {
  max-width: var(--max-width);
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.35rem;
  align-items: start;
}

.donate-method {
  background: var(--color-surface);
  border: 1px solid rgba(215, 227, 236, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem clamp(1.1rem, 2vw, 1.6rem);
  margin-bottom: 1.1rem;
}

.donate-method__header {
  margin-bottom: 1rem;
}

.donate-method__header .section-kicker {
  margin-bottom: 0.4rem;
}

.donate-method__title {
  margin: 0 0 0.4rem;
}

.donate-method__meta {
  margin: 0;
  color: var(--color-text-muted);
}

.donation-box--donate {
  margin-top: 0.9rem;
}

.donation-bullets {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
}

.donation-bullets li {
  margin: 0.2rem 0;
}

.safety-callout {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 132, 93, 0.35);
  background: linear-gradient(180deg, rgba(255, 216, 201, 0.32) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.safety-callout__title {
  margin: 0 0 0.3rem;
  font-weight: 900;
  color: var(--color-primary-dark);
}

.safety-callout__text {
  margin: 0;
  color: var(--color-text-muted);
}

.safety-callout__fineprint {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

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

.donate-other__card {
  border-radius: var(--radius);
  border: 1px solid rgba(215, 227, 236, 0.9);
  background: linear-gradient(180deg, rgba(239, 247, 255, 0.4) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 1.1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(27, 66, 86, 0.06);
}

.donate-other__card h3 {
  margin-bottom: 0.45rem;
}

.donate-other__card p {
  margin-bottom: 0.9rem;
}

.donate-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
}

.aside-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(215, 227, 236, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(27, 66, 86, 0.08);
  padding: 1.1rem 1.1rem;
  backdrop-filter: blur(10px);
}

.aside-kicker {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--header-navy);
  opacity: 0.8;
}

.aside-card h3 {
  margin-bottom: 0.45rem;
}

.aside-card p {
  margin-bottom: 0.9rem;
}

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

  .donate-aside {
    position: static;
  }
}

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

/* Donation box (Get involved) */
.donation-box {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(215, 227, 236, 0.9);
  background: linear-gradient(180deg, rgba(239, 247, 255, 0.75) 0%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 10px 26px rgba(27, 66, 86, 0.08);
}

.donation-box__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.donation-box__details {
  min-width: 0;
  flex: 1 1 320px;
}

.donation-box__qr {
  margin: 0;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  gap: 0.35rem;
}

.donation-box__qr img {
  width: 132px;
  height: 132px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(215, 227, 236, 0.95);
  box-shadow: 0 10px 24px rgba(27, 66, 86, 0.12);
}

.donation-box__qr figcaption {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.donation-box__title {
  margin: 0 0 0.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.donation-box__line {
  margin: 0 0 0.25rem;
  color: var(--color-text);
}

.donation-box__value {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(33, 85, 107, 0.08);
  color: var(--color-primary-dark);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.donation-box__hint {
  margin: 0.4rem 0 0;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.donation-box__hint--full {
  margin-top: 0.65rem;
  max-width: 70ch;
}

@media (max-width: 520px) {
  .donation-box__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .donation-box__qr img {
    width: 160px;
    height: 160px;
  }
}

/* Page title (inner pages) */
.page-title {
  margin: 2rem 0 1.8rem;
  text-align: center;
}

.page-title h1 {
  margin-bottom: 0.3rem;
}

.page-title .subtitle {
  margin: 0;
  font-size: 1.08rem;
  color: var(--color-text-muted);
}

/* Footer — navy + gold (matches header / buttons) */
.site-footer {
  margin-top: 3rem;
  padding: 1.5rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(155deg, #001a33 0%, #003366 42%, #001f3d 100%);
  border-top: 1px solid rgba(249, 166, 2, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-footer .logo {
  color: #ffffff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem 1.4rem;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.95rem;
  min-width: min(100%, 16rem);
}

.footer-brand .logo {
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
}

.site-footer .footer-nav a {
  padding: 0.18rem 0.3rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-footer .footer-nav a:hover {
  background: transparent;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(249, 166, 2, 0.9);
  text-underline-offset: 3px;
  box-shadow: none;
}

.site-footer .footer-nav a:focus-visible {
  outline: 2px solid var(--header-gold);
  outline-offset: 3px;
}

.footer-copyright {
  margin: 0;
  max-width: 22rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
  text-align: left;
}

/* Inner pages — section headers & panels */
.section-header--left {
  text-align: left;
  margin-bottom: 1.25rem;
}

.section-header--left .section-kicker {
  margin-bottom: 0.45rem;
}

.contact-page .section .wrap,
.thank-you-page .section .wrap {
  max-width: min(68rem, 100%);
}

.get-involved-page .section.section--wide .wrap {
  max-width: min(68rem, 100%);
}

.contact-intro {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.contact-panel {
  padding: 1.75rem clamp(1.25rem, 3vw, 2rem);
  background: var(--color-surface);
  border: 1px solid rgba(215, 227, 236, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-panel form {
  max-width: none;
}

.thank-you-panel {
  max-width: 38rem;
  margin-inline: auto;
  padding: 2rem clamp(1.25rem, 3vw, 2.35rem);
  background: var(--color-surface);
  border: 1px solid rgba(215, 227, 236, 0.88);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thank-you-panel p {
  margin: 0 0 1.35rem;
  font-size: 1.06rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.thank-you-panel .btn {
  margin-top: 0.15rem;
}

.app-highlight {
  padding: 1.75rem clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(249, 166, 2, 0.42);
  background: linear-gradient(165deg, rgba(255, 253, 248, 1) 0%, rgba(255, 248, 230, 0.55) 100%);
  box-shadow: var(--shadow-sm);
}

.app-highlight .section-header {
  margin-bottom: 0.85rem;
}

.app-highlight p:last-of-type {
  margin-bottom: 1.15rem;
}

.get-involved-page .gi-intro {
  margin-bottom: 1.75rem;
  text-align: center;
}

.get-involved-page .gi-intro .section-intro {
  margin-inline: auto;
}

/* Contact form */
form {
  max-width: 620px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.34rem;
  color: var(--color-primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.86rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #72a8c3;
  box-shadow: 0 0 0 4px rgba(114, 168, 195, 0.18);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 780px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .site-header .wrap {
    justify-content: center;
  }

  .site-header .nav-list {
    justify-content: center;
    row-gap: 0.35rem;
  }

  .hero {
    padding: 4.1rem 0 4.5rem;
  }

  .section {
    padding: 2.7rem 0;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    text-align: center;
  }

  .site-footer .footer-logo {
    object-position: center center;
    margin-inline: auto;
  }

  .footer-copyright {
    max-width: none;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

