:root {
  --ivory: #f8f5eb;
  --cream: #efe9d7;
  --paper: #fffdf7;
  --sage: #a7b49b;
  --sage-light: #dce2d2;
  --olive: #737a48;
  --forest: #274736;
  --forest-deep: #173025;
  --earth: #765b43;
  --gold: #b79a58;
  --gold-light: #d7c38d;
  --charcoal: #292d29;
  --muted: #626960;
  --line: rgba(39, 71, 54, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 60px rgba(31, 51, 40, 0.12);
  --radius: 6px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.contact-dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.65rem;
  color: var(--forest-deep);
  font-size: clamp(2.85rem, 5.2vw, 5.2rem);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 1.5rem;
  color: var(--forest-deep);
  font-size: clamp(2.3rem, 3.9vw, 4.05rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--forest-deep);
  font-size: clamp(1.55rem, 2vw, 2rem);
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 4px;
  background: var(--paper);
  color: var(--forest-deep);
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

.section {
  padding-block: clamp(5.5rem, 10vw, 9.5rem);
}

.section-label,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-label--light {
  color: var(--sage-light);
}

.section-label--gold {
  color: var(--gold-light);
}

.lead {
  color: #3b443e;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.announcement {
  position: relative;
  z-index: 20;
  background: var(--forest-deep);
  color: #edf1e8;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 42px;
  padding-block: 0.5rem;
}

.announcement p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.announcement__dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(215, 195, 141, 0.13);
}

.site-header {
  position: sticky;
  z-index: 15;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(248, 245, 235, 0.94);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(33, 53, 42, 0.07);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--forest-deep);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo--header {
  height: 76px;
  mix-blend-mode: multiply;
}

.brand-logo-panel {
  display: inline-flex;
  padding: 0.55rem 0.7rem;
  background: #fff;
}

.brand-logo--footer {
  height: 76px;
}

.wordmark__mark {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(-5deg);
}

.wordmark__text {
  display: grid;
  font-family: var(--serif);
  line-height: 0.95;
}

.wordmark__text span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.wordmark__text strong {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.35rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: #465149;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  color: var(--forest-deep);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: grid;
  width: 26px;
  gap: 5px;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 0.72rem 1.2rem;
}

.button--forest {
  background: var(--forest);
  color: #fff;
}

.button--forest:hover {
  background: var(--forest-deep);
}

.button--gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.button--gold:hover {
  background: #c4a765;
}

.button--cream {
  background: var(--ivory);
  color: var(--forest-deep);
}

.button--cream:hover {
  background: #fff;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button--wide {
  min-width: 205px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0;
  color: var(--forest);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.8rem, 8vw, 7.6rem) clamp(6rem, 10vw, 9rem);
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 7%;
  right: -9rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(115, 122, 72, 0.2);
  border-radius: 47% 53% 51% 49%;
  content: "";
  transform: rotate(17deg);
}

.hero__wash {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.62;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.9), transparent 35%),
    repeating-radial-gradient(circle at 75% 30%, rgba(39, 71, 54, 0.035) 0 1px, transparent 1px 6px);
}

.hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
  gap: clamp(3rem, 6vw, 6.5rem);
}

.eyebrow {
  max-width: 38rem;
  color: var(--earth);
  letter-spacing: 0.1em;
}

.eyebrow span {
  width: 2rem;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
}

.hero__copy {
  max-width: 39rem;
  margin-bottom: 2.25rem;
  color: #4d554f;
  font-size: 1.05rem;
}

.hero__aside {
  min-width: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.hero__visual {
  position: relative;
  padding: 0.85rem 0 2rem;
}

.hero__visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 52% 48% 3% 3% / 25% 24% 3% 3%;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: right center;
}

.hero__frame {
  position: absolute;
  z-index: -1;
  inset: -0.9rem -0.9rem 1rem 1.25rem;
  border: 1px solid rgba(115, 122, 72, 0.38);
  border-radius: 52% 48% 3% 3% / 25% 24% 3% 3%;
}

.hero__note {
  position: absolute;
  right: -2.2rem;
  bottom: -0.5rem;
  display: flex;
  width: min(340px, 86%);
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(31, 51, 40, 0.15);
}

.hero__note p {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

.hero__note strong {
  display: block;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.hero__note-mark {
  color: var(--gold);
}

.hero__rebuild-note {
  width: min(100%, 34rem);
  margin: 2.75rem auto 0;
  color: #4d554f;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.hero__rebuild-note::before {
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 auto 1rem;
  background: var(--gold);
  content: "";
}

.hero__rebuild-note span {
  display: block;
}

.hero__field-line {
  position: absolute;
  right: -5%;
  bottom: 1.5rem;
  left: -5%;
  z-index: -1;
  height: 82px;
  border-top: 1px solid rgba(115, 122, 72, 0.18);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.about {
  position: relative;
  background: var(--paper);
}

.about::before {
  position: absolute;
  top: 8%;
  right: 0;
  width: 11rem;
  height: 20rem;
  background: linear-gradient(90deg, transparent, rgba(167, 180, 155, 0.16));
  clip-path: polygon(38% 0, 100% 6%, 100% 92%, 9% 100%, 0 42%);
  content: "";
}

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(3.5rem, 8vw, 8.5rem);
}

.about__visual {
  position: relative;
  padding: 0 0 3.5rem 2.4rem;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  inset: 1.1rem 1.1rem -1.1rem -1.1rem;
  background: var(--sage-light);
  content: "";
  transform: rotate(-2deg);
}

.image-frame img {
  width: 100%;
  min-height: 510px;
  object-fit: cover;
}

.about__caption {
  position: absolute;
  right: -2rem;
  bottom: 0;
  display: flex;
  width: min(350px, 78%);
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem;
  background: var(--forest);
  color: #eef2e9;
}

.about__caption span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.about__caption p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.about__content > p:not(.section-label, .lead) {
  color: var(--muted);
}

.scripture-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.scripture-line span:not(:last-child)::after {
  margin-left: 1.5rem;
  color: var(--gold);
  content: "•";
}

.work {
  position: relative;
  overflow: hidden;
}

.work::after {
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: 8rem;
  width: 22rem;
  height: 22rem;
  border: 35px solid rgba(167, 180, 155, 0.09);
  border-radius: 50%;
  content: "";
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.58fr);
  gap: 4rem;
}

.section-heading h2 {
  max-width: 670px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 0.65rem;
  padding: 0.9rem 1.05rem;
  border-left: 2px solid var(--gold);
  background: rgba(167, 180, 155, 0.13);
  color: var(--muted);
}

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

.work-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.work-card:hover {
  box-shadow: 0 18px 44px rgba(31, 51, 40, 0.09);
  transform: translateY(-4px);
}

.work-card__image {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work-card:hover .work-card__image img {
  transform: scale(1.025);
}

.work-card__image > span {
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 48px;
  padding: 0.45rem 0.7rem;
  background: var(--ivory);
  color: var(--olive);
  font-family: var(--serif);
  text-align: center;
}

.work-card__body {
  align-self: center;
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.work-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.farm-feature {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.farm-feature__image,
.farm-feature__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.farm-feature__image {
  object-fit: cover;
  object-position: center;
}

.farm-feature__overlay {
  background:
    linear-gradient(90deg, rgba(16, 38, 28, 0.9) 0%, rgba(20, 45, 33, 0.66) 42%, rgba(20, 45, 33, 0.1) 75%),
    linear-gradient(0deg, rgba(9, 25, 18, 0.55), transparent 55%);
}

.farm-feature__inner {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 6rem;
}

.farm-feature__card {
  max-width: 600px;
}

.farm-feature h2 {
  color: #fff;
}

.farm-feature__card > p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.farm-feature__location {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.farm-feature__location span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}

.story {
  background:
    linear-gradient(rgba(255, 253, 247, 0.91), rgba(255, 253, 247, 0.91)),
    repeating-linear-gradient(8deg, rgba(39, 71, 54, 0.035) 0 1px, transparent 1px 6px);
}

.story__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 8vw, 8rem);
}

.story__content > p:not(.section-label, .lead, .story__note) {
  color: var(--muted);
}

.story__note {
  display: inline-block;
  margin-top: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--gold);
  color: var(--earth);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.story__photos {
  position: relative;
  min-height: 570px;
}

.story-photo {
  position: absolute;
  margin: 0;
  padding: 0.55rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo figcaption {
  padding: 0.7rem 0.4rem 0.35rem;
  color: var(--earth);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
}

.story-photo--historical {
  top: 0;
  left: -3%;
  z-index: 1;
  width: 58%;
  transform: rotate(-3deg);
}

.story-photo--historical img {
  aspect-ratio: 4 / 3;
}

.story-photo--current {
  right: -4%;
  bottom: 0;
  z-index: 2;
  width: 52%;
  transform: rotate(2deg);
}

.story-photo--current img {
  aspect-ratio: 4 / 4.5;
}

.story__verse {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: 3;
  width: 42%;
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 16px 38px rgba(31, 51, 40, 0.11);
  color: var(--earth);
  font-family: var(--serif);
  font-size: clamp(0.88rem, 1.25vw, 1.02rem);
  line-height: 1.5;
}

.story__verse p {
  margin-bottom: 0.65rem;
}

.story__verse cite {
  display: block;
  color: var(--forest-deep);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5.5rem, 9vw, 8rem);
  background: var(--forest);
  color: #fff;
}

.support::before {
  position: absolute;
  top: -13rem;
  right: -10rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(215, 195, 141, 0.2);
  border-radius: 48% 52% 47% 53%;
  content: "";
  transform: rotate(22deg);
}

.support__texture {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background: repeating-radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.065) 0 1px, transparent 1px 7px);
}

.support__grid {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.support h2 {
  color: #fff;
}

.support__content > p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.77);
}

.support__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.support__reassurance {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  line-height: 1.55;
}

.support__reassurance span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.65rem;
}

.support__mailing {
  display: grid;
  margin-top: 1.35rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(215, 195, 141, 0.7);
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.6;
}

.support__mailing > span:first-child {
  margin-bottom: 0.45rem;
}

.support__mailing strong {
  color: #fff;
  font-weight: 700;
}

[data-donation-trigger][aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.donation-modal {
  width: min(860px, calc(100% - 2rem));
  max-height: min(90vh, 900px);
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--ivory);
  box-shadow: 0 28px 90px rgba(11, 30, 21, 0.38);
  color: var(--forest-deep);
  overflow: auto;
}

.donation-modal::backdrop {
  background: rgba(12, 31, 22, 0.76);
  backdrop-filter: blur(4px);
}

.donation-modal__panel {
  position: relative;
  min-height: 420px;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.donation-modal__close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--forest-deep);
  cursor: pointer;
  font-family: inherit;
  font-size: 1.65rem;
  line-height: 1;
  place-items: center;
}

.donation-modal__close:hover {
  border-color: var(--gold);
}

.donation-modal__close:focus-visible {
  outline: 3px solid rgba(183, 148, 77, 0.38);
  outline-offset: 3px;
}

.donation-modal__intro {
  padding-right: 3.5rem;
}

.donation-modal__intro h2 {
  margin-bottom: 1rem;
}

.donation-modal__form {
  width: 100%;
  overflow: hidden;
}

.donation-modal__form > *,
.donation-modal__form iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.donation-modal__form iframe {
  min-height: 620px;
  border: 0;
}

.donation-modal__status {
  min-height: 1.5em;
  margin-top: 0.75rem;
  color: #8f3f31;
  font-size: 0.86rem;
}

.contact__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(4rem, 10vw, 10rem);
}

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

.contact__email {
  padding-top: 1.8rem;
}

.contact__email p {
  margin-bottom: 0.4rem;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__email .button {
  width: 100%;
}

.contact-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: none;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 1rem;
  border-radius: 0;
  background: rgba(12, 31, 22, 0.76);
  box-shadow: none;
  overflow: auto;
  place-items: center;
  backdrop-filter: blur(4px);
}

.contact-modal[open] {
  display: grid;
}

.contact-modal::backdrop {
  background: transparent;
  backdrop-filter: none;
}

.contact-modal__panel {
  width: min(560px, 100%);
  min-height: 0;
  border-radius: 4px;
  background: var(--ivory);
  box-shadow: 0 28px 90px rgba(11, 30, 21, 0.38);
}

.contact-modal .donation-modal__intro {
  margin-bottom: 1.6rem;
}

.contact-modal .donation-modal__intro p:last-child {
  max-width: 440px;
  color: #5d665f;
  font-size: 0.95rem;
}

.contact-captcha {
  display: grid;
  gap: 0.85rem;
}

.contact-captcha[hidden],
.contact-reveal .button[hidden] {
  display: none;
}

.contact-reveal__label {
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-captcha__widget {
  min-height: 78px;
  overflow: hidden;
}

.contact-captcha__status {
  min-height: 1.4em;
  color: #5d665f;
  font-size: 0.82rem;
}

.contact-captcha__status.is-error {
  color: #8f3f31;
}

.contact-reveal {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
  border: 1px solid rgba(183, 148, 77, 0.45);
  background: rgba(226, 207, 157, 0.16);
}

.contact-reveal[hidden] {
  display: none;
}

.contact-reveal__email {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  overflow-wrap: anywhere;
}

.contact-reveal .button {
  width: 100%;
  margin-top: 0.35rem;
}

.site-footer {
  padding-block: 4rem 2.2rem;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.55fr) minmax(220px, 0.65fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.wordmark--light {
  color: #fff;
}

.wordmark--light .wordmark__mark {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.footer__grid > div:first-child > p {
  max-width: 450px;
  margin-top: 1.3rem;
  font-size: 0.89rem;
}

.footer__links {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer__links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.85rem;
  text-decoration-color: transparent;
  text-underline-offset: 0.3rem;
}

.footer__links a:hover {
  text-decoration-color: var(--gold-light);
}

.footer__meta {
  align-self: end;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  text-align: right;
}

.footer__meta p {
  margin-bottom: 0.25rem;
}

@media (max-width: 1020px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 3rem;
  }

  .hero__note {
    right: -0.5rem;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .work-card__image {
    min-height: 245px;
  }

  .story__grid {
    gap: 4rem;
  }

  .story__photos {
    min-height: 480px;
  }

  .contact__grid {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .header__inner {
    min-height: 72px;
  }

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

  .js .site-nav {
    position: fixed;
    z-index: 14;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 72px);
    padding: 1.5rem 1.25rem 2rem;
    border-top: 1px solid var(--line);
    background: var(--ivory);
    box-shadow: 0 20px 40px rgba(31, 51, 40, 0.14);
    gap: 0;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 400;
  }

  .site-nav .button {
    margin-top: 1.2rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero__grid,
  .about__grid,
  .section-heading,
  .story__grid,
  .support__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 680px;
  }

  .hero__visual {
    width: min(640px, 90%);
    margin: 0 auto;
  }

  .hero__visual > img {
    aspect-ratio: 1.35 / 1;
    border-radius: 48% 52% 2% 2% / 30% 32% 2% 2%;
  }

  .hero__frame {
    border-radius: 48% 52% 2% 2% / 30% 32% 2% 2%;
  }

  .about__grid {
    gap: 5rem;
  }

  .about__visual {
    width: min(620px, 94%);
  }

  .section-heading {
    gap: 1.5rem;
  }

  .section-heading > p {
    max-width: 580px;
  }

  .farm-feature__inner {
    display: grid;
  }

  .farm-feature__location {
    order: -1;
  }

  .story__content {
    max-width: 650px;
  }

  .story__photos {
    min-height: 590px;
  }

  .support__actions {
    max-width: 620px;
  }

  .contact__grid {
    gap: 2rem;
  }

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

  .footer__meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

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

  .announcement__inner {
    align-items: flex-start;
    padding-block: 0.65rem;
  }

  .announcement__dot {
    margin-top: 0.45rem;
  }

  .announcement p {
    text-align: left;
  }

  .wordmark__mark {
    width: 39px;
    height: 39px;
    font-size: 1.5rem;
  }

  .brand-logo--header {
    height: 60px;
  }

  .brand-logo--footer {
    height: 64px;
  }

  .wordmark__text span {
    font-size: 0.68rem;
  }

  .wordmark__text strong {
    font-size: 1.12rem;
  }

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

  h1 {
    font-size: clamp(2.7rem, 12.5vw, 3.95rem);
  }

  h2 {
    font-size: clamp(2.1rem, 9.5vw, 3.15rem);
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .hero__visual {
    width: 100%;
    padding-right: 0.6rem;
  }

  .hero__visual > img {
    aspect-ratio: 0.88 / 1;
  }

  .hero__note {
    right: 0;
    width: 88%;
  }

  .button-row {
    align-items: stretch;
    gap: 0.8rem;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    justify-content: center;
  }

  .about__visual {
    width: 100%;
    padding: 0 0 4rem 1.2rem;
  }

  .image-frame img {
    min-height: 410px;
  }

  .about__caption {
    right: 0;
    width: 88%;
  }

  .scripture-line span:not(:last-child)::after {
    display: none;
  }

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

  .work-card__image {
    min-height: 260px;
  }

  .farm-feature {
    min-height: 690px;
  }

  .farm-feature__overlay {
    background: linear-gradient(0deg, rgba(16, 38, 28, 0.94) 0%, rgba(20, 45, 33, 0.68) 62%, rgba(20, 45, 33, 0.14) 100%);
  }

  .farm-feature__inner {
    padding-block: 4rem;
  }

  .story__photos {
    min-height: 760px;
  }

  .story-photo--historical {
    left: 0;
    z-index: 1;
    width: 75%;
  }

  .story-photo--current {
    right: 0;
    bottom: 13rem;
    z-index: 2;
    width: 58%;
    transform: rotate(2deg);
  }

  .story__verse {
    bottom: 0;
    width: min(100%, 34rem);
    font-size: 0.98rem;
  }

  .support__buttons {
    display: grid;
  }

  .button--wide {
    width: 100%;
  }

  .donation-modal {
    width: calc(100% - 1rem);
  }

  .donation-modal__panel {
    padding: 1.25rem;
  }

  .donation-modal__intro {
    padding-top: 2.8rem;
    padding-right: 0;
  }

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

  .footer__meta {
    grid-column: auto;
  }
}

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

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