:root {
  --navy-950: hsl(214 58% 13%);
  --navy-900: hsl(214 47% 19%);
  --navy-700: hsl(212 32% 35%);
  --primary: var(--navy-900);
  --secondary: var(--navy-700);
  --accent: hsl(40 74% 58%);
  --accent-soft: hsl(40 60% 76%);
  --background: hsl(39 42% 96%);
  --foreground: hsl(216 40% 16%);
  --muted: hsl(40 30% 91%);
  --line: hsl(212 19% 76%);
  --surface: hsl(0 0% 100% / 0.92);
  --dark-surface: hsl(214 53% 14%);
  --radius: 6px;
  --shadow: 0 14px 36px hsl(214 52% 14% / 0.1);
  --shadow-raise: 0 22px 45px hsl(214 50% 12% / 0.2);
  --max: 1200px;
  --space-sm: 22px;
  --space-md: 54px;
  --space-lg: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.65;
  overflow-x: clip;
}

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

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

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

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

.skip-link {
  position: absolute;
  inset: 12px auto auto 12px;
  transform: translateY(-200%);
  background: var(--foreground);
  color: var(--background);
  padding: 10px 14px;
  border-radius: var(--radius);
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(214 25% 42% / 0.18);
  background: hsl(39 42% 96% / 0.82);
  backdrop-filter: blur(10px);
  transition: background 0.15s ease, padding 0.15s ease;
}

.site-header.is-scrolled {
  background: hsl(39 42% 96% / 0.96);
}

.header-inner {
  min-height: 84px;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  transition: min-height 0.15s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 70px;
}

.nav-group {
  display: flex;
  gap: 24px;
}

.nav-group.right {
  justify-content: flex-end;
}

.nav-link,
.mobile-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after,
.mobile-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  border-bottom: 1px solid var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.8;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.mobile-link:hover::after,
.mobile-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--foreground);
  text-decoration: none;
  font-family: "Calistoga", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.header-cta,
.button,
.button-outline {
  text-decoration: none;
  min-height: 44px;
  border: 1px solid;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header-cta,
.button {
  background: var(--primary);
  border-color: var(--primary);
  color: hsl(0 0% 100%);
}

.button-outline {
  background: transparent;
  border-color: hsl(38 75% 52% / 0.65);
  color: var(--foreground);
}

.header-cta:hover,
.button:hover,
.button-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px hsl(214 52% 14% / 0.24);
}

.header-cta:active,
.button:active,
.button-outline:active {
  transform: translateY(0);
  opacity: 0.92;
}

.mobile-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--foreground);
}

.mobile-panel {
  display: none;
}

.section {
  padding: clamp(68px, 7.5vw, 110px) 0;
}

.section-tight {
  padding-block: clamp(52px, 6vw, 78px);
}

.section-spacious {
  padding-block: clamp(88px, 11vw, 138px);
}

.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(hsl(214 48% 12% / 0.78), hsl(214 44% 12% / 0.6));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  text-align: center;
  color: var(--background);
  width: min(840px, 100% - 48px);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Calistoga", serif;
  line-height: 1.02;
  color: inherit;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 6rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin-bottom: 12px;
}

p {
  margin: 0;
  max-width: 72ch;
}

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

.hero-actions .button,
.hero-actions .button-outline {
  min-width: 190px;
}

.highlight-word {
  color: hsl(0 0% 100%);
  display: inline-block;
  border-bottom: 2px solid hsl(35 80% 55%);
  animation: pulse-word 2.4s ease-in-out infinite;
}

@keyframes pulse-word {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.volunteer-cta,
.donate-band {
  background: var(--foreground);
  color: var(--background);
}

.volunteer-cta .button,
.donate-band .button {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--foreground);
}

.volunteer-cta .button-outline,
.donate-band .button-outline {
  color: var(--background);
  border-color: hsl(0 0% 100% / 0.72);
  background: transparent;
}

.volunteer-cta .button-outline:hover,
.donate-band .button-outline:hover {
  background: hsl(0 0% 100% / 0.12);
}

.split {
  align-items: start;
}

.split .copy {
  grid-column: 1 / span 6;
}

.split .media {
  grid-column: 8 / span 5;
}

.image-card,
.card,
.quote,
.impact,
.legal-block,
.form-card,
.details-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card {
  overflow: hidden;
  position: relative;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, hsl(214 54% 11% / 0.26), hsl(40 72% 62% / 0.14));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 0.45s ease;
}

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

.cards,
.program-grid,
.story-grid,
.footer-grid,
.legal-grid,
.contact-grid,
.impact-grid {
  display: grid;
  gap: 24px;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 40px;
}

.card,
.impact,
.quote,
.form-card,
.details-card {
  padding: 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.impact:hover,
.quote:hover,
.legal-block:hover,
.form-card:hover,
.details-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-raise);
  border-color: hsl(40 74% 58% / 0.62);
}

.story-grid,
.program-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.program-grid .card {
  min-height: 260px;
}

.program-grid .card:nth-child(odd) {
  margin-top: 16px;
}

.trust-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.metric strong {
  display: block;
  font-family: "Calistoga", serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
  color: var(--primary);
}

.metric:nth-child(2) strong {
  color: var(--accent);
}

.newsletter {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.newsletter-form,
.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--foreground);
  padding: 12px 14px;
  min-height: 44px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid hsl(40 74% 54%);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px hsl(40 74% 58% / 0.24);
}

.error {
  font-size: 0.92rem;
  color: hsl(0 76% 46%);
}

.success {
  border: 1px solid hsl(140 55% 33%);
  background: hsl(140 45% 94%);
  padding: 14px;
  border-radius: var(--radius);
}

.site-footer {
  padding: 72px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--dark-surface);
  color: var(--background);
}

.site-footer a {
  color: var(--background);
  text-decoration: none;
  text-underline-offset: 4px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-decoration-color: hsl(38 84% 56%);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

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

.footer-bottom {
  margin-top: 28px;
  border-top: 1px solid hsl(0 0% 100% / 0.25);
  padding-top: 22px;
  font-size: 0.92rem;
}

.legal-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.legal-block {
  padding: 32px;
}

.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-short {
  position: relative;
  overflow: hidden;
  padding: 88px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 22%, hsl(40 74% 58% / 0.16), transparent 44%),
    radial-gradient(circle at 84% 80%, hsl(214 44% 26% / 0.16), transparent 42%),
    var(--background);
}

.hero-short h1 {
  max-width: 12ch;
}

.hero-short-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-sm);
  align-items: end;
}

.hero-short-copy {
  grid-column: 1 / span 7;
}

.hero-short-media {
  grid-column: 8 / span 5;
}

.hero-short-media .image-card {
  position: relative;
}

.hero-short-media .image-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid hsl(40 72% 58% / 0.56);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-short-media .image-card img {
  aspect-ratio: 5 / 4;
}

.pull-quote-band {
  margin-top: var(--space-md);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, hsl(214 57% 21%), hsl(214 49% 16%));
  color: var(--background);
}

.pull-quote-offset {
  max-width: 860px;
  margin-left: auto;
  margin-right: 0;
}

.text-muted {
  color: hsl(213 24% 34%);
}

.card-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: hsl(214 26% 39%);
  font-weight: 600;
}

.card h3,
.impact h3,
.quote h3 {
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
}

.cards-editorial {
  margin-top: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.cards-editorial .card:nth-child(1) {
  grid-column: 1 / span 4;
}

.cards-editorial .card:nth-child(2) {
  grid-column: 5 / span 5;
  margin-top: 28px;
}

.cards-editorial .card:nth-child(3) {
  grid-column: 10 / span 3;
}

.cards-tight {
  gap: 16px;
  margin-top: 30px;
}

.section-image-band {
  position: relative;
  min-height: clamp(300px, 38vw, 520px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.section-image-band img {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 38vw, 520px);
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.section-image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, hsl(214 58% 12% / 0.5), hsl(214 58% 12% / 0.15));
}

.image-band-caption {
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  bottom: clamp(22px, 5vw, 66px);
  z-index: 2;
  max-width: min(560px, calc(100% - 32px));
  background: hsl(214 54% 11% / 0.56);
  border: 1px solid hsl(0 0% 100% / 0.2);
  color: hsl(39 38% 96%);
  padding: clamp(18px, 2vw, 24px);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

.image-band-caption.right {
  left: auto;
  right: clamp(20px, 5vw, 80px);
}

.hero-about {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(54px, 6vw, 78px);
  background:
    radial-gradient(circle at 12% 18%, hsl(40 74% 58% / 0.2), transparent 43%),
    radial-gradient(circle at 86% 78%, hsl(214 50% 23% / 0.18), transparent 45%),
    var(--background);
  border-bottom: 1px solid var(--line);
}

.hero-about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.hero-about-media {
  grid-column: 1 / span 8;
}

.hero-about-media img {
  aspect-ratio: 16 / 10;
}

.hero-about-media figcaption,
.hero-contact-media figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(39 38% 96%);
}

.hero-about-copy {
  grid-column: 8 / span 5;
  margin-left: -40px;
  position: relative;
  z-index: 3;
  background: hsl(39 42% 96% / 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}

.hero-about-copy h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  max-width: 12ch;
}

.hero-quote {
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  font-size: 1.04rem;
  color: hsl(212 26% 28%);
}

.impact-stat {
  display: grid;
  align-content: center;
  gap: 10px;
  background: linear-gradient(155deg, hsl(214 57% 19%), hsl(214 44% 16%));
  color: var(--background);
  border-color: hsl(40 70% 56% / 0.35);
}

.impact-stat strong {
  font-family: "Calistoga", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.9;
  color: var(--accent);
}

.hero-programs {
  padding-top: clamp(70px, 8vw, 108px);
  padding-bottom: clamp(56px, 7vw, 94px);
  background:
    linear-gradient(180deg, hsl(39 42% 96%), hsl(39 40% 94%));
  border-bottom: 1px solid var(--line);
}

.hero-programs-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.hero-programs-copy {
  grid-column: 1 / span 5;
}

.hero-programs-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  max-width: 11ch;
}

.hero-programs-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-programs-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 14px;
}

.hero-programs-metrics strong {
  display: block;
  font-family: "Calistoga", serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--primary);
}

.hero-programs-metrics span {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
}

.hero-programs-collage {
  grid-column: 6 / span 7;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.collage-primary {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
}

.collage-secondary {
  grid-column: 6 / span 3;
  grid-row: 1;
}

.collage-accent {
  grid-column: 6 / span 3;
  grid-row: 2;
}

.hero-contact {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 16%, hsl(40 66% 71% / 0.2), transparent 42%),
    radial-gradient(circle at 16% 82%, hsl(214 38% 26% / 0.18), transparent 44%),
    var(--background);
}

.hero-contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.hero-contact-copy {
  grid-column: 1 / span 6;
}

.hero-contact-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
  max-width: 13ch;
}

.hero-contact-note {
  margin-top: 16px;
  color: hsl(212 26% 30%);
}

.hero-contact-copy a {
  color: var(--primary);
}

.hero-contact-media {
  grid-column: 7 / span 6;
}

.hero-contact-media img {
  aspect-ratio: 16 / 10;
}

.location-feature {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}

.location-feature img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

.location-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border: 1px solid hsl(0 0% 100% / 0.22);
  border-radius: var(--radius);
  color: hsl(39 38% 96%);
  background: hsl(214 54% 12% / 0.62);
  backdrop-filter: blur(4px);
}

.location-overlay span {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
}

.location-notes {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.location-notes li {
  font-size: 0.95rem;
}

[data-parallax] {
  will-change: transform;
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

.pull-quote-band p {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  max-width: 56ch;
}

.asym-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-sm);
}

.asym-grid .wide {
  grid-column: span 7;
}

.asym-grid .narrow {
  grid-column: span 5;
}

.contact-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.contact-grid > .form-card {
  grid-column: 1 / span 7;
}

.contact-grid > .details-card {
  grid-column: span 5;
}

.address-panel {
  display: grid;
  gap: 14px;
}

html.js .reveal {
  opacity: 0;
  transform: translate3d(0, calc(26px + var(--parallax-shift, 0px)), 0) scale(0.985);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

html.js .reveal.in {
  opacity: 1;
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
}

@media (max-width: 1024px) {
  .nav-group,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .brand {
    justify-self: center;
  }
  .mobile-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 100%);
    background: var(--background);
    border-left: 1px solid var(--line);
    z-index: 60;
    padding: 28px;
  }
  .mobile-panel[open] {
    display: grid;
    align-content: start;
    gap: 12px;
  }
  .split .copy,
  .split .media {
    grid-column: span 12;
  }
  .hero-short-copy,
  .hero-short-media,
  .hero-about-media,
  .hero-about-copy,
  .hero-programs-copy,
  .hero-programs-collage,
  .hero-contact-copy,
  .hero-contact-media,
  .contact-grid > .form-card,
  .contact-grid > .details-card,
  .asym-grid .wide,
  .asym-grid .narrow {
    grid-column: span 12;
  }
  .hero-about-copy {
    margin-left: 0;
  }
  .hero-programs-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-editorial {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .cards-editorial .card:nth-child(1),
  .cards-editorial .card:nth-child(2),
  .cards-editorial .card:nth-child(3) {
    grid-column: auto;
    margin-top: 0;
  }
  .contact-grid {
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), 100% - 32px);
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    min-height: 72vh;
  }
  .hero-actions {
    justify-content: stretch;
  }
  .hero-actions a {
    flex: 1 1 100%;
  }
  .hero-programs-metrics {
    grid-template-columns: 1fr;
  }
  .image-band-caption,
  .image-band-caption.right {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .card,
  .impact,
  .quote,
  .form-card,
  .details-card,
  .legal-block {
    padding: 24px;
  }
  .pull-quote-band {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html.js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
