:root {
  --green-900: #183923;
  --green-800: #244a2e;
  --green-700: #315f3e;
  --green-100: #eef4eb;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --ink: #1d261f;
  --muted: #5f6b61;
  --line: #ddd8ce;
  --red: #b7372d;
  --red-dark: #942920;
  --shadow: 0 14px 35px rgba(24, 57, 35, 0.12);
  --font-sans: "Inter", Arial, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --control-height: 44px;
  --control-padding-x: 12px;
  --control-border: #cbc5b8;
  --control-radius: 6px;
  --control-font-size: 15px;
  --label-font-size: 13px;
  --button-height: 44px;
  --button-font-size: 13px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

#volunteer-application {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 158px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 108px;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(221, 216, 206, 0.85);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 120px;
}

.brand img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a {
  color: #151a16;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--green-700);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-nav-link {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  min-height: 36px;
  color: white;
  background: var(--red);
  border: 1px solid rgba(148, 41, 32, 0.35);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(183, 55, 45, 0.22);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-nav-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-nav-link:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 22px rgba(183, 55, 45, 0.26);
  transform: translateY(-1px);
}

.donate-button,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  font: inherit;
  font-size: var(--button-font-size);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.donate-button,
.button.primary {
  background: var(--red);
  color: white;
}

.donate-button:hover,
.button.primary:hover {
  background: var(--red-dark);
}

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

.button.text-light {
  min-height: auto;
  padding: 0;
  color: white;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button.secondary.dark {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.82);
}

.button.outline {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-900);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 8vw 126px;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.99) 0%, rgba(251, 248, 241, 0.92) 39%, rgba(251, 248, 241, 0.36) 70%, rgba(24, 57, 35, 0.2) 100%),
    var(--home-photo, url("logo.png")) center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--red), #c97825, var(--green-700));
}

.hero:not([data-photo-ready="true"]) {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.92) 48%, rgba(251, 248, 241, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.visit-copy h2,
.facebook-updates h2,
.get-involved h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.12;
}

.hero h1 {
  max-width: 720px;
  font-size: 64px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin: 26px 0 32px;
  color: #263329;
  font-size: 20px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
  margin-top: 34px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(49, 95, 62, 0.2);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(24, 57, 35, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 8vw;
  color: white;
  background: var(--green-900);
}

.mission-band article {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 34px 24px 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.mission-band span,
.involvement-options span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.mission-band span {
  color: #f7d7d1;
  background: rgba(255, 255, 255, 0.08);
}

.mission-band h2,
.involvement-options h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
}

.mission-band p,
.involvement-options p {
  max-width: 240px;
  margin: 0;
  font-size: 14px;
}

.mission-band a {
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 54px;
  align-items: center;
  padding: 88px 8vw;
}

.farm-family {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 248, 241, 0.96)),
    var(--green-100);
}

.section-copy h2,
.visit-copy h2,
.facebook-updates h2,
.get-involved h2 {
  font-size: 38px;
}

.section-copy p:not(.eyebrow),
.visit-copy p,
.get-involved p {
  margin: 18px 0 24px;
  color: var(--muted);
}

.animal-carousel-shell {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.animal-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--green-900);
  background: white;
  border: 1px solid rgba(24, 57, 35, 0.34);
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.animal-carousel {
  min-width: 0;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.animal-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.animal-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 min(340px, calc(100vw - 64px));
  overflow: hidden;
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.85);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.animal-card:hover {
  box-shadow: 0 20px 45px rgba(24, 57, 35, 0.15);
  transform: translateY(-2px);
}

.animal-thumbnail,
.animal-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: var(--green-100);
}

.animal-card div {
  display: grid;
  grid-template-rows: auto auto minmax(64px, 1fr) auto;
  align-content: start;
  min-height: 220px;
  padding: 20px;
}

.animal-card h3 {
  margin: 4px 0 10px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
}

.animal-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.animal-card .card-meta {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.animal-card span {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.loading-message {
  margin: 0;
  color: var(--muted);
}

.empty-animal-state {
  flex: 1 0 100%;
  padding: 26px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px dashed rgba(24, 57, 35, 0.24);
  border-radius: 8px;
}

.empty-animal-state h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
}

.empty-animal-state p {
  margin: 0;
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visit-photo {
  min-height: 460px;
  background:
    linear-gradient(rgba(24, 57, 35, 0.08), rgba(24, 57, 35, 0.12)),
    var(--visit-photo, url("logo.png")) center / cover no-repeat;
}

.visit-copy {
  max-width: 720px;
  padding: 82px 8vw 82px 6vw;
}

.visit-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.visit-list li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-1px);
}

.facebook-updates {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: 64px;
  align-items: center;
  padding: 96px 8vw;
  color: white;
  background:
    linear-gradient(135deg, rgba(24, 57, 35, 0.98), rgba(36, 74, 46, 0.94) 56%, rgba(24, 57, 35, 0.98)),
    var(--home-photo, url("logo.png")) center / cover no-repeat;
  border-bottom: 1px solid rgba(24, 57, 35, 0.4);
}

.facebook-updates .eyebrow,
.facebook-updates h2,
.facebook-updates-copy p:not(.eyebrow) {
  color: white;
}

.facebook-updates-copy {
  max-width: 620px;
}

.facebook-updates-copy p:not(.eyebrow) {
  margin: 20px 0 28px;
  font-size: 18px;
  opacity: 0.86;
}

.updates-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.updates-actions .button.outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.78);
}

.updates-actions .button.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.updates-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.updates-note-grid span {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.facebook-feed-shell,
.updates-feed-frame {
  position: relative;
  width: min(100%, 540px);
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(9, 26, 15, 0.3);
}

.facebook-feed-shell::before,
.updates-feed-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 57, 35, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.facebook-feed-shell {
  justify-self: end;
  min-height: 704px;
}

.facebook-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 16px;
  color: white;
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
  border-radius: 6px 6px 0 0;
}

.facebook-feed-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facebook-feed-header strong {
  color: white;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1;
}

.facebook-feed-shell iframe,
.updates-feed-frame iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 0 0 6px 6px;
}

.updates-page {
  background: var(--cream);
}

.updates-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: end;
  padding: 86px 8vw 76px;
  color: white;
  background:
    linear-gradient(120deg, rgba(24, 57, 35, 0.98) 0%, rgba(36, 74, 46, 0.94) 58%, rgba(183, 55, 45, 0.78) 100%),
    url("logo.png") center / cover no-repeat;
}

.updates-hero-copy {
  max-width: 780px;
}

.updates-hero .eyebrow,
.updates-hero h1,
.updates-hero p {
  color: white;
}

.updates-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.08;
}

.updates-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.updates-hero .button.secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.updates-hero-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.updates-hero-panel span,
.updates-hero-panel strong {
  display: block;
}

.updates-hero-panel span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updates-hero-panel strong {
  color: white;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.12;
}

.updates-hero-panel p {
  margin: 14px 0 0;
}

.updates-feed-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 58px;
  align-items: start;
  padding: 78px 8vw 88px;
}

.updates-feed-copy {
  position: sticky;
  top: 140px;
}

.updates-feed-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.12;
}

.updates-feed-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: var(--muted);
}

.updates-link-list {
  display: grid;
  gap: 10px;
}

.updates-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  color: var(--green-900);
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.updates-link-list a::after {
  content: ">";
}

.updates-feed-frame {
  justify-self: center;
  min-height: 804px;
}

.get-involved {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 88px 8vw;
  color: white;
  background:
    linear-gradient(110deg, var(--green-900), var(--green-700) 68%, #8f2f29);
}

.home-volunteer-spotlight {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 42px;
  align-items: start;
  padding: 86px 8vw;
  background:
    linear-gradient(90deg, rgba(238, 244, 235, 0.98), rgba(251, 248, 241, 0.82)),
    var(--green-100);
  border-bottom: 1px solid var(--line);
}

.home-volunteer-spotlight h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 36px;
  line-height: 1.12;
}

.spotlight-intro {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--muted);
}

.home-spotlight-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-spotlight-list article {
  padding: 24px;
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-spotlight-list .spotlight-empty,
.spotlight-grid .spotlight-empty {
  border-style: dashed;
}

.spotlight-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  overflow: hidden;
  color: white;
  background: var(--green-800);
  border-radius: 50%;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
}

.spotlight-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-spotlight-list h3 {
  margin: 2px 0 8px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
}

.home-spotlight-list p {
  margin: 0;
  color: var(--muted);
}

.get-involved h2,
.get-involved p,
.get-involved .eyebrow {
  color: white;
}

.involvement-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.involvement-options article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 190px;
  padding: 28px 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.9fr 1.2fr;
  gap: 36px;
  padding: 48px 8vw;
  color: white;
  background: var(--green-900);
}

.site-footer img {
  width: 128px;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.site-footer .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 14px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer .footer-social:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-legal {
  max-width: 360px;
}

.footer-legal p {
  font-size: 13px;
}

.legal-page {
  background: var(--cream);
}

.legal-hero {
  padding: 78px 8vw 46px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 48px;
  line-height: 1.12;
}

.legal-hero p {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 980px;
  padding: 58px 8vw 78px;
}

.legal-content section {
  display: grid;
  gap: 12px;
}

.legal-content h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
}

.legal-content p,
.legal-content li {
  margin: 0;
  color: #324036;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-note {
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.waiver-hero .button-row {
  margin-top: 28px;
}

.waiver-document {
  display: grid;
  gap: 24px;
  max-width: 980px;
  padding: 58px 8vw 78px;
}

.waiver-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.waiver-card h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
}

.waiver-card p {
  margin: 0;
  color: #324036;
}

.waiver-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.waiver-fields label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: var(--label-font-size);
  font-weight: 800;
}

.waiver-fields input,
.waiver-fields select,
.waiver-fields textarea,
.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: var(--control-height);
  padding: 10px var(--control-padding-x);
  border: 1px solid var(--control-border);
  border-radius: var(--control-radius);
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: var(--control-font-size);
  line-height: 1.25;
}

.waiver-fields select,
.site-form select {
  appearance: none;
  padding-right: 38px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-900) 50%),
    linear-gradient(135deg, var(--green-900) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) calc(50% + 1px),
    calc(100% - 14px) calc(50% + 1px);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.waiver-fields input:focus,
.waiver-fields select:focus,
.waiver-fields textarea:focus,
.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus,
.donation-options input:focus {
  outline: 3px solid rgba(49, 95, 62, 0.16);
  border-color: var(--green-700);
}

.waiver-confirm {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.waiver-confirm input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.waiver-warning {
  border-color: rgba(183, 55, 45, 0.35);
}

.warning-label {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.waiver-source {
  font-size: 13px;
}

.waiver-card a,
.site-form .form-check a {
  color: var(--green-900);
  font-weight: 800;
}

.volunteer-page {
  background: var(--cream);
}

.involved-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 86px 8vw 96px;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.84) 46%, rgba(251, 248, 241, 0.22) 76%),
    var(--home-photo, url("logo.png")) center right / cover no-repeat;
}

.involved-hero:not([data-photo-ready="true"]) {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.9) 52%, rgba(251, 248, 241, 0.72) 100%);
}

.involved-hero h1,
.section-heading h2,
.calendar-panel h2,
.volunteer-form-card h2,
.expectations-section h2,
.donate-section h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.12;
}

.involved-hero h1 {
  max-width: 620px;
  font-size: 54px;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-band article {
  padding: 26px 8vw;
  background: white;
}

.info-band strong,
.info-band span {
  display: block;
}

.info-band strong {
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
}

.info-band span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.roles-section,
.process-section,
.signup-section,
.expectations-section,
.donate-section {
  padding: 78px 8vw;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.calendar-panel h2,
.volunteer-form-card h2,
.expectations-section h2,
.donate-section h2 {
  font-size: 36px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.role-grid article,
.process-grid article,
.calendar-panel,
.volunteer-form-card {
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.role-grid article {
  padding: 24px;
}

.role-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--green-800);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.role-grid h3,
.process-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
}

.role-grid p,
.process-grid p,
.calendar-panel p,
.donate-section p {
  margin: 0;
  color: var(--muted);
}

.process-section {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.process-grid article {
  padding: 24px;
  box-shadow: none;
}

.process-grid strong {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 800;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.calendar-panel,
.volunteer-form-card {
  padding: 28px;
}

.calendar-panel p {
  margin: 14px 0 22px;
}

.date-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.date-options.is-stacked {
  grid-template-columns: 1fr;
}

.date-option {
  display: grid;
  grid-template-columns: minmax(94px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding: 16px;
  color: var(--green-900);
  background: var(--green-100);
  border-color: transparent;
  text-align: left;
}

.date-option.selected {
  color: white;
  background: var(--green-800);
}

.date-option-date,
.date-option-details {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.date-option-date {
  align-content: center;
  min-height: 58px;
  padding-right: 16px;
  border-right: 1px solid rgba(49, 95, 62, 0.18);
}

.date-option-date span {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  opacity: 0.72;
  text-transform: uppercase;
}

.date-option-date strong {
  color: inherit;
  font-size: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.date-option-title {
  color: inherit;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: none;
}

.date-option-time {
  width: fit-content;
  padding: 3px 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  opacity: 0.78;
  text-transform: uppercase;
}

.date-option em {
  color: inherit;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  opacity: 0.7;
  text-transform: uppercase;
}

.date-empty {
  grid-column: 1 / -1;
  padding: 16px;
  color: var(--muted);
  background: var(--green-100);
  border-radius: 8px;
}

.volunteer-spotlight-section {
  padding: 78px 8vw;
  background: white;
  border-bottom: 1px solid var(--line);
}

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

.spotlight-grid article {
  padding: 24px;
  background: var(--cream);
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.spotlight-grid > article > span:not(.spotlight-avatar) {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--red);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.spotlight-grid h3 {
  margin: 2px 0 8px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
}

.spotlight-grid .record-meta {
  margin: 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-grid p {
  margin: 0;
  color: var(--muted);
}

.volunteer-record-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.volunteer-record-heading h3 {
  margin-bottom: 0;
}

.spotlight-toggle {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 4px 8px;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(49, 95, 62, 0.18);
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
}

.spotlight-toggle input {
  width: 15px;
  min-height: 15px;
  margin: 0;
  padding: 0;
}

.site-form {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

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

.form-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.site-form label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-size: var(--label-font-size);
  font-weight: 800;
}

.site-form textarea {
  min-height: 118px;
  resize: vertical;
}

.site-form .form-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
}

.site-form .form-check span {
  color: var(--muted);
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-800);
  font-size: 14px;
  font-weight: 700;
}

.expectations-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expectations-section ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expectations-section li {
  padding-left: 22px;
  color: var(--muted);
  position: relative;
}

.expectations-section li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.donate-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  color: white;
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
  overflow: hidden;
}

.donate-section h2,
.donate-section p,
.donate-section .eyebrow {
  color: white;
}

.donate-section > div {
  max-width: 720px;
}

.donation-form {
  display: grid;
  gap: 16px;
  width: 100%;
  justify-self: end;
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(70px, 1fr));
  gap: 12px;
  width: 100%;
}

.donation-option {
  min-height: 46px;
  padding: 0 14px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.54);
}

.donation-option.selected,
.donation-option:hover {
  color: var(--green-900);
  background: white;
  border-color: white;
}

.donation-options label {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  color: white;
  font-size: var(--label-font-size);
  font-weight: 800;
  text-transform: uppercase;
}

.donation-options input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--green-900);
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--control-radius);
  font: inherit;
  font-size: var(--control-font-size);
  font-weight: 700;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px 22px;
}

.donation-status {
  min-height: 22px;
  text-align: right;
  font-size: 14px;
}

.contact-page {
  background: var(--cream);
}

.contact-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 86px 8vw 96px;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.84) 48%, rgba(251, 248, 241, 0.2) 76%),
    var(--home-photo, url("logo.png")) center right / cover no-repeat;
}

.contact-hero:not([data-photo-ready="true"]) {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.9) 52%, rgba(251, 248, 241, 0.72) 100%);
}

.contact-hero h1,
.contact-copy h2,
.contact-form-card h2,
.contact-cta h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.12;
}

.contact-hero h1 {
  max-width: 620px;
  font-size: 54px;
}

.contact-info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-info-band article {
  padding: 26px 8vw;
  background: white;
}

.contact-info-band strong,
.contact-info-band span,
.contact-info-band a {
  display: block;
}

.contact-info-band strong {
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
}

.contact-info-band span,
.contact-info-band a {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 34px;
  align-items: start;
  padding: 78px 8vw;
}

.contact-copy h2,
.contact-form-card h2,
.contact-cta h2 {
  font-size: 36px;
}

.contact-copy p {
  margin: 18px 0 24px;
  color: var(--muted);
}

.contact-form-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 76px 8vw;
  color: white;
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
}

.contact-cta h2,
.contact-cta p,
.contact-cta .eyebrow {
  color: white;
}

.contact-cta div:first-child {
  max-width: 760px;
}

.contact-cta p {
  margin: 14px 0 0;
}

.about-page {
  background: var(--cream);
}

.about-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 86px 8vw 96px;
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.86) 48%, rgba(251, 248, 241, 0.22) 76%),
    var(--home-photo, url("logo.png")) center right / cover no-repeat;
}

.about-hero:not([data-photo-ready="true"]) {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.9) 52%, rgba(251, 248, 241, 0.72) 100%);
}

.about-hero h1,
.story-section h2,
.farm-copy h2,
.leader-copy h2,
.about-cta h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.12;
}

.about-hero h1 {
  max-width: 650px;
  font-size: 54px;
}

.story-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  padding: 78px 8vw;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-section h2,
.farm-copy h2,
.leader-copy h2,
.about-cta h2 {
  font-size: 38px;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p,
.farm-copy p,
.about-cta p {
  margin: 0;
  color: var(--muted);
}

.values-section {
  padding: 78px 8vw;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-grid article {
  padding: 24px;
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.value-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--green-800);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.value-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
}

.farm-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.farm-photo {
  min-height: 430px;
  background:
    linear-gradient(rgba(24, 57, 35, 0.1), rgba(24, 57, 35, 0.1)),
    var(--visit-photo, url("logo.png")) center / cover no-repeat;
}

.farm-copy {
  padding: 72px 8vw 72px 6vw;
}

.farm-copy p {
  margin: 18px 0 24px;
}

.leader-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(220px, 300px);
  gap: 30px 42px;
  align-items: start;
  padding: 78px 8vw;
  background: var(--green-100);
  border-bottom: 1px solid var(--line);
}

.leader-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.leader-copy a,
.leader-highlights a {
  color: var(--green-900);
  font-weight: 800;
}

.leader-spotlight {
  width: 100%;
  max-width: 300px;
  height: 360px;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.leader-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.leader-highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.leader-highlights article {
  padding: 22px;
  background: white;
  border: 1px solid rgba(221, 216, 206, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.leader-highlights h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 19px;
}

.leader-highlights p {
  margin: 0;
  color: var(--muted);
}

.about-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 76px 8vw;
  color: white;
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
}

.about-cta h2,
.about-cta p,
.about-cta .eyebrow {
  color: white;
}

.about-cta div:first-child {
  max-width: 760px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px 18px;
    padding: 10px 22px;
  }

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

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .nav-actions {
    justify-self: end;
  }

  .social-nav-link {
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .hero {
    min-height: 620px;
    padding: 70px 28px 84px;
    background:
      linear-gradient(90deg, rgba(251, 248, 241, 0.98), rgba(251, 248, 241, 0.72)),
      var(--home-photo, url("logo.png")) center / cover no-repeat;
  }

  .hero:not([data-photo-ready="true"]) {
    background:
      linear-gradient(90deg, rgba(251, 248, 241, 0.98), rgba(251, 248, 241, 0.82));
  }

  .hero h1 {
    font-size: 45px;
  }

  .mission-band,
  .section-grid,
  .facebook-updates,
  .updates-hero,
  .updates-feed-section,
  .get-involved,
  .role-grid,
  .value-grid,
  .process-grid,
  .spotlight-grid,
  .home-spotlight-list,
  .signup-section,
  .expectations-section,
  .contact-info-band,
  .contact-section,
  .home-volunteer-spotlight,
  .story-section,
  .farm-section,
  .leader-section,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .leader-highlights {
    grid-template-columns: 1fr;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 8px;
    min-height: auto;
    padding: 10px 18px 12px;
  }

  .brand {
    justify-self: center;
    width: auto;
  }

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

  .main-nav {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    margin-inline: -18px;
    padding: 4px 18px 10px;
    gap: 16px;
  }

  .main-nav a {
    font-size: 12px;
    white-space: nowrap;
  }

  .site-header .donate-button,
  .button-row .button,
  .donation-form .button,
  .volunteer-form-card .button,
  .contact-form-card .button,
  .waiver-form .button {
    width: 100%;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 44px 1fr;
    width: 100%;
    gap: 10px;
  }

  .site-header .social-nav-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .hero {
    min-height: 520px;
    padding: 52px 24px 72px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-highlights {
    margin-top: 24px;
  }

  .hero-highlights span {
    min-height: 34px;
    font-size: 11px;
  }

  .button-row,
  .mission-band,
  .info-band,
  .section-grid,
  .facebook-updates,
  .updates-hero,
  .updates-feed-section,
  .get-involved,
  .involvement-options,
  .role-grid,
  .value-grid,
  .process-grid,
  .spotlight-grid,
  .home-spotlight-list,
  .signup-section,
  .expectations-section,
  .donate-section,
  .contact-info-band,
  .contact-section,
  .story-section,
  .farm-section,
  .leader-section,
  .contact-cta,
  .about-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .button-row {
    display: grid;
  }

  .leader-spotlight {
    width: min(100%, 300px);
    justify-self: start;
  }

  .mission-band,
  .roles-section,
  .process-section,
  .volunteer-spotlight-section,
  .facebook-updates,
  .updates-hero,
  .updates-feed-section,
  .home-volunteer-spotlight,
  .signup-section,
  .expectations-section,
  .donate-section,
  .contact-section,
  .contact-cta,
  .values-section,
  .story-section,
  .leader-section,
  .about-cta,
  .section-grid,
  .get-involved,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-copy h2,
  .visit-copy h2,
  .facebook-updates h2,
  .updates-hero h1,
  .updates-feed-copy h2,
  .get-involved h2,
  .involved-hero h1,
  .contact-hero h1,
  .about-hero h1,
  .section-heading h2,
  .calendar-panel h2,
  .volunteer-form-card h2,
  .home-volunteer-spotlight h2,
  .contact-copy h2,
  .contact-form-card h2,
  .contact-cta h2,
  .expectations-section h2,
  .donate-section h2,
  .story-section h2,
  .farm-copy h2,
  .leader-copy h2,
  .about-cta h2 {
    font-size: 31px;
  }

  .visit-copy {
    padding: 54px 24px;
  }

  .facebook-feed-shell {
    justify-self: stretch;
    min-height: 618px;
  }

  .facebook-feed-shell iframe {
    height: 540px;
  }

  .updates-actions {
    display: grid;
  }

  .updates-note-grid {
    grid-template-columns: 1fr;
  }

  .updates-feed-copy {
    position: static;
  }

  .updates-feed-frame {
    justify-self: stretch;
    min-height: 698px;
  }

  .updates-feed-frame iframe {
    height: 620px;
  }

  .involved-hero {
    min-height: 520px;
    padding: 64px 24px 76px;
  }

  .donation-form {
    justify-items: stretch;
  }

  .donation-actions {
    justify-content: flex-start;
  }

  .donation-status {
    text-align: left;
  }

  .contact-hero {
    min-height: 500px;
    padding: 64px 24px 76px;
  }

  .about-hero {
    min-height: 520px;
    padding: 64px 24px 76px;
  }

  .info-band article,
  .contact-info-band article {
    padding: 24px;
  }

  .form-grid,
  .date-options,
  .waiver-fields {
    grid-template-columns: 1fr;
  }

  .farm-copy {
    padding: 54px 24px;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0.32in;
  }

  .site-header,
  .site-footer,
  .waiver-hero .button-row,
  .waiver-card .button,
  .form-status {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: white;
    color: black;
    font-size: 9.25pt;
    line-height: 1.28;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .legal-page,
  .waiver-page {
    background: white;
  }

  .legal-hero {
    padding: 0 0 7px;
    background: white;
    border-bottom: 1px solid #bfc7bd;
  }

  .legal-hero .eyebrow {
    margin: 0 0 2px;
    color: #244a2e;
    font-size: 8.5pt;
    letter-spacing: 0.08em;
  }

  .legal-hero h1 {
    max-width: none;
    color: #183923;
    font-size: 16.5pt;
    line-height: 1.05;
  }

  .legal-hero p {
    max-width: none;
    margin-top: 4px;
    color: #37443a;
    font-size: 8.25pt;
    line-height: 1.25;
  }

  .waiver-document {
    display: block;
    max-width: none;
    padding: 7px 0 0;
  }

  .waiver-card {
    display: block;
    margin: 0 0 6px;
    padding: 8px 10px;
    border: 1px solid #d7d2c7;
    border-radius: 4px;
    box-shadow: none;
  }

  .waiver-card h2 {
    margin: 0 0 4px;
    color: #183923;
    font-size: 10.75pt;
    line-height: 1.12;
  }

  .waiver-card p {
    color: #253229;
    font-size: 8pt;
    line-height: 1.24;
  }

  .waiver-card p + p {
    margin-top: 4px;
  }

  .waiver-card:nth-of-type(3),
  .waiver-card:nth-of-type(4) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .waiver-card:nth-of-type(3) h2,
  .waiver-card:nth-of-type(4) h2 {
    grid-column: 1 / -1;
  }

  .waiver-card:nth-of-type(3) p + p,
  .waiver-card:nth-of-type(4) p + p {
    margin-top: 0;
  }

  .waiver-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 9px;
  }

  .waiver-fields label {
    gap: 2px;
    color: #183923;
    font-size: 7pt;
    line-height: 1.2;
  }

  .waiver-fields input {
    min-height: 21px;
    padding: 3px 5px;
    border-color: #c9c4ba;
    border-radius: 3px;
    font-size: 8pt;
    line-height: 1.2;
  }

  .waiver-warning {
    padding-left: 12px;
    border-color: #e4d8d3;
    border-left: 4px solid #b7372d;
    break-inside: avoid;
  }

  .warning-label {
    margin-bottom: 1px;
    color: #942920;
    font-size: 7.25pt;
    letter-spacing: 0.07em;
  }

  .waiver-source {
    font-size: 7.25pt;
  }

  .waiver-card a {
    color: #183923;
    text-decoration: none;
  }

  .waiver-confirm {
    margin-top: 5px;
    gap: 6px;
    color: #37443a;
    font-size: 7.75pt;
    line-height: 1.24;
  }

  .waiver-confirm input {
    width: 12px;
    min-height: 12px;
    margin-top: 1px;
  }

  .waiver-card:last-child {
    break-inside: avoid;
  }
}
