:root {
  --green-950: #123421;
  --green-900: #173f2a;
  --green-800: #1b5438;
  --green-700: #23633f;
  --green-600: #2f7d32;
  --green-200: #cfe3d1;
  --green-100: #e8f2e9;
  --green-50: #f4f9f4;
  --cream: #fbf7ee;
  --cream-deep: #f1e5cf;
  --red: #b73d34;
  --gold: #78531d;
  --gold-bg: #fff8e9;
  --teal: #116c72;
  --teal-bg: #eef9f9;
  --ink: #24302a;
  --muted: #526159;
  --border: #d8dfda;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(23, 63, 42, 0.1);
  --shadow-soft: 0 8px 24px rgba(23, 63, 42, 0.08);
  --radius-sm: 0.65rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --container: 73rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Lato, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: var(--green-800);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.1em;
}

a:hover {
  text-decoration-thickness: 0.16em;
}

:focus-visible {
  outline: 0.25rem solid #f6c453;
  outline-offset: 0.2rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 4.75rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

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

.narrow {
  max-width: 48rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green-950);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(0.75rem);
}

.header-inner {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  gap: 1rem;
}

.brand-link {
  display: inline-flex;
  width: min(15rem, 62vw);
  flex: 0 1 auto;
  align-items: center;
  border-radius: 0.35rem;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  background: var(--white);
  border: 2px solid var(--green-700);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.45rem;
  height: 1.45rem;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.primary-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.55rem 0.72rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border-radius: 0.55rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--green-900);
  background: var(--green-100);
}

.primary-nav a[aria-current="page"] {
  box-shadow: inset 0 -0.2rem 0 var(--green-600);
}

.primary-nav .nav-donate {
  margin-left: 0.35rem;
  padding-inline: 1rem;
  color: var(--white);
  background: var(--green-800);
}

.primary-nav .nav-donate:hover,
.primary-nav .nav-donate[aria-current="page"] {
  color: var(--white);
  background: var(--green-950);
  box-shadow: none;
}

.button,
button.button {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  background: var(--green-800);
  border: 2px solid var(--green-800);
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 14px rgba(23, 63, 42, 0.16);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover,
button.button:hover {
  color: var(--white);
  background: var(--green-950);
  border-color: var(--green-950);
  box-shadow: 0 8px 18px rgba(23, 63, 42, 0.2);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--green-900);
  background: var(--white);
  border-color: var(--green-700);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--green-950);
  background: var(--green-100);
  border-color: var(--green-900);
}

.button-accent {
  background: var(--red);
  border-color: var(--red);
}

.button-accent:hover {
  background: #8f2f28;
  border-color: #8f2f28;
}

.button[aria-disabled="true"] {
  opacity: 0.78;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(183, 61, 52, 0.1), transparent 23rem),
    linear-gradient(135deg, var(--cream) 0%, var(--white) 58%, var(--green-50) 100%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--green-800);
  font-size: 0.91rem;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.eyebrow::before {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--red);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 0.3rem rgba(183, 61, 52, 0.12);
}

.hero h1 span,
.accent-text {
  color: var(--green-600);
}

.lead {
  max-width: 47rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions,
.button-row {
  display: flex;
  margin-top: 1.6rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-figure {
  margin: 0;
}

.hero-figure img {
  width: 100%;
  height: auto;
}

.image-disclosure {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
  text-align: center;
}

.section {
  padding: clamp(3.25rem, 7vw, 6rem) 0;
}

.section-white {
  background: var(--white);
}

.section-green {
  background: var(--green-50);
}

.section-dark {
  color: rgba(255, 255, 255, 0.9);
  background: var(--green-900);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-body {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.card-top-green {
  border-top: 0.32rem solid var(--green-600);
}

.card-top-gold {
  border-top: 0.32rem solid #9a6a24;
}

.card-top-teal {
  border-top: 0.32rem solid var(--teal);
}

.program-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.program-card figure {
  margin: 0;
  background: var(--green-100);
}

.program-card figure img {
  width: 100%;
  height: clamp(18rem, 32vw, 25rem);
  object-fit: cover;
}

.program-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.program-card .button-row {
  margin-top: auto;
  padding-top: 1.25rem;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.25rem 0.65rem;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.tag-gold {
  color: var(--gold);
  background: #f3e4c8;
}

.icon-badge {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.pathway-card {
  height: 100%;
  padding: 1.5rem;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-top: 0.3rem solid var(--green-600);
  border-radius: var(--radius);
}

.pathway-card.gold {
  background: var(--gold-bg);
  border-top-color: #9a6a24;
}

.pathway-card.teal {
  background: var(--teal-bg);
  border-top-color: var(--teal);
}

.pathway-card a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 900;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.split figure {
  margin: 0;
}

.split figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-list,
.check-list,
.footer-links,
.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  margin-top: 1.5rem;
  gap: 1rem;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2rem;
  text-align: center;
}

.quote-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--green-50);
  border-left: 0.35rem solid var(--green-600);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-card blockquote {
  margin-bottom: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.content-stack > * + * {
  margin-top: 1.5rem;
}

.content-panel {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  padding: clamp(2.6rem, 6vw, 4.75rem) 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(47, 125, 50, 0.12), transparent 20rem),
    linear-gradient(135deg, var(--cream), var(--white));
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 55rem;
  margin-bottom: 0.75rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 49rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.form-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--green-50);
  border: 1px solid var(--border);
  border-top: 0.35rem solid var(--green-600);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.field legend {
  color: var(--green-900);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid #9aa89f;
  border-radius: var(--radius-sm);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-700);
  outline: 0.22rem solid rgba(47, 125, 50, 0.2);
  outline-offset: 0.1rem;
}

.field-hint,
.required-note,
.form-footnote {
  color: var(--muted);
  font-size: 0.88rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  align-items: start;
  gap: 0.65rem;
}

.checkbox-field input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.18rem;
  accent-color: var(--green-700);
}

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

.form-status,
.configuration-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  color: var(--green-950);
  background: var(--green-100);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
}

.form-status.is-visible,
.configuration-status.is-visible {
  display: block;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.25rem 0;
  padding: 0;
  gap: 0.75rem;
  border: 0;
}

.donation-options legend {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
  color: var(--green-900);
  font-weight: 900;
}

.donation-option {
  position: relative;
}

.donation-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donation-option label {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  background: var(--white);
  border: 2px solid var(--green-200);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.donation-option input:checked + label {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.donation-option input:focus-visible + label {
  outline: 0.25rem solid #f6c453;
  outline-offset: 0.2rem;
}

.notice {
  padding: 1rem 1.15rem;
  color: #5f431b;
  background: var(--gold-bg);
  border: 1px solid #e5c985;
  border-radius: var(--radius-sm);
}

.cta-band {
  padding: clamp(2.2rem, 5vw, 3.5rem) 0;
  color: var(--white);
  background: var(--green-900);
  border-top: 0.35rem solid var(--red);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.cta-band h2 {
  margin-bottom: 0.35rem;
  color: var(--white);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .button-secondary {
  color: var(--green-950);
  border-color: var(--white);
}

.site-footer {
  padding: 3rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  width: 15rem;
  height: auto;
  padding: 0.6rem;
  background: var(--white);
  border-radius: 0.45rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: Lato, Inter, "Segoe UI", Arial, sans-serif;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-legal {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.2rem;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.88rem;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
}

.social-list {
  display: flex;
  margin: 1rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.social-list a {
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.social-list a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.error-code {
  margin-bottom: 0.5rem;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 42rem) {
  .form-grid,
  .grid-2,
  .donation-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-band-inner,
  .footer-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 56rem) {
  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  }

  .hero-figure {
    justify-self: end;
  }

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

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

@media (max-width: 63.99rem) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 5.2rem);
    margin: 0;
    padding: 0.8rem 1rem 1.2rem;
    overflow-y: auto;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .js .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    width: min(100%, var(--container));
    margin-inline: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .primary-nav .nav-donate {
    margin: 0.35rem 0 0;
    justify-content: center;
  }
}

@media (max-width: 31rem) {
  .header-inner {
    min-height: 4.75rem;
  }

  .brand-link {
    width: min(12.8rem, calc(100vw - 5.7rem));
  }

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

  .program-card figure img {
    height: 19rem;
  }
}

/* Desktop density: compact only the primary content. The site header and its
   logo intentionally retain their established dimensions. */
@media (min-width: 64rem) {
  main {
    font-size: 0.875rem;
  }

  main .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  main h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 3vw, 3rem);
  }

  main h2 {
    margin-bottom: 0.6rem;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
  }

  main h3 {
    margin-bottom: 0.35rem;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
  }

  main .button,
  main button.button {
    min-height: 2.5rem;
    padding: 0.5rem 0.85rem;
  }

  main .hero {
    padding: 2.5rem 0;
  }

  main .hero-grid {
    gap: 2rem;
  }

  main .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.76rem;
  }

  main .lead {
    max-width: 35rem;
    font-size: 0.95rem;
  }

  main .hero-actions,
  main .button-row {
    margin-top: 1rem;
    gap: 0.55rem;
  }

  main .hero-figure {
    width: min(100%, 24rem);
  }

  main .image-disclosure {
    font-size: 0.65rem;
  }

  main .section {
    padding: 2.75rem 0;
  }

  main .section-heading {
    max-width: 38rem;
    margin-bottom: 1.2rem;
  }

  main .section-heading p {
    font-size: 0.92rem;
  }

  main .grid-2,
  main .grid-3,
  main .grid-4 {
    gap: 0.9rem;
  }

  main .card-body,
  main .content-panel,
  main .form-card,
  main .quote-card {
    padding: 1.1rem;
  }

  main .program-card figure img {
    height: 14rem;
  }

  main .program-card figure:has(img[src$="greenhouse-program.jpg"]) {
    background: linear-gradient(90deg, #dce9dc, #f5f9f5 50%, #dce9dc);
  }

  main .program-card img[src$="greenhouse-program.jpg"] {
    padding-inline: 4.5rem;
    object-fit: cover;
    object-position: center top;
  }

  main .program-card .button-row {
    padding-top: 0.75rem;
  }

  main .tag {
    margin-bottom: 0.55rem;
    font-size: 0.7rem;
  }

  main .pathway-card {
    padding: 1rem;
  }

  main .icon-badge {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
  }

  main .split {
    gap: 2.25rem;
  }

  main .feature-list {
    margin-top: 1rem;
    gap: 0.65rem;
  }

  main .content-stack > * + * {
    margin-top: 0.9rem;
  }

  main .quote-card blockquote {
    font-size: 1.1rem;
  }

  main .page-hero {
    padding: 2.25rem 0;
  }

  main .page-hero h1 {
    max-width: 43rem;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
  }

  main .page-hero p {
    max-width: 40rem;
    font-size: 0.95rem;
  }

  main .form-grid {
    gap: 0.75rem;
  }

  main .field input,
  main .field select,
  main .field textarea {
    min-height: 2.5rem;
    padding: 0.5rem 0.65rem;
  }

  main .field textarea {
    min-height: 6.5rem;
  }

  main .donation-option label {
    min-height: 2.75rem;
    font-size: 0.9rem;
  }

  main .cta-band {
    padding: 1.75rem 0;
  }

  main .cta-band-inner {
    gap: 0.8rem;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .skip-link,
  .button-row,
  .hero-actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
  }
}
