:root {
  --paper: #f7f5ee;
  --paper-deep: #efecdf;
  --ink: #17241d;
  --forest: #153f2b;
  --forest-dark: #0d2d1d;
  --leaf: #6f8e2f;
  --lime: #c8d985;
  --sky: #9fdcf0;
  --coral: #ef6b4a;
  --line: #c7c5b5;
  --muted: #586158;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1500px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(5rem, 9vw, 9rem);
  --shadow: 0 22px 60px rgba(27, 49, 34, 0.14);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--forest-dark);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

h1,
h2,
h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h1 {
  max-width: 8.2ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.55rem, 6.4vw, 7.5rem);
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.75rem, 5vw, 5.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(85, 95, 75, 0.28);
  background: rgba(247, 245, 238, 0.96);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 238, 0.99);
  box-shadow: 0 8px 30px rgba(19, 49, 31, 0.08);
}

.header-inner {
  display: flex;
  width: min(100%, var(--max));
  min-height: 104px;
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: 72px;
  border: 4px solid #5b4434;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
}

.site-nav a {
  position: relative;
  padding: 0.65rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--forest);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--forest);
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  width: min(100%, var(--max));
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  padding: clamp(4.5rem, 8vw, 8.5rem) clamp(2rem, 5vw, 5.5rem) clamp(4rem, 6vw, 6.5rem) var(--gutter);
  flex-direction: column;
  justify-content: center;
}

.hero-copy > p {
  max-width: 34rem;
  margin: 1rem 0 2.2rem;
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  line-height: 1.7;
}

.sprout-line {
  width: 90px;
  height: 24px;
  color: #9eb34e;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-actions,
.invitation-actions {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0.9rem 1.6rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.button-primary:hover {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
}

.button-secondary {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

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

.hero-media {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border-bottom-left-radius: 4.5rem;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 25rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--forest-dark);
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.4;
}

.section-pad {
  padding: var(--section) var(--gutter);
}

.mission {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(3rem, 8vw, 9rem);
  border-bottom: 1px solid var(--line);
  background: #f4f1e7;
}

.mission-statement {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(1.3rem, 2.7vw, 3rem);
  align-items: start;
}

.mission-statement h2 {
  max-width: 8ch;
}

.mission-statement p {
  max-width: 33rem;
  margin-top: 2.25rem;
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
}

.vine-mark {
  color: #9caf50;
}

.vine-mark svg {
  width: 54px;
  height: 180px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.coral-rule {
  display: block;
  width: 62px;
  height: 4px;
  background: var(--coral);
}

.mission-principles {
  border-left: 1px solid var(--line);
}

.mission-principles article {
  display: grid;
  padding: 1.4rem 0 1.4rem clamp(2rem, 4vw, 4.5rem);
  grid-template-columns: 86px 1fr;
  gap: 1.6rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mission-principles article:first-child {
  padding-top: 0;
}

.mission-principles article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mission-principles h3,
.program-list h3 {
  margin-bottom: 0.35rem;
}

.mission-principles p,
.program-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.principle-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--forest);
}

.principle-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.programs {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.program-copy h2 {
  max-width: 7ch;
}

.section-lead {
  max-width: 35rem;
  margin: 1.7rem 0 2.6rem;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
}

.program-list article {
  display: grid;
  padding: 1.25rem 0;
  grid-template-columns: 54px 1fr;
  gap: 1.25rem;
  border-top: 1px solid var(--line);
}

.program-number {
  color: var(--leaf);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.schematic {
  margin: 0;
}

.schematic button {
  position: relative;
  width: 100%;
  padding: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf5;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.schematic img {
  width: 100%;
  height: auto;
}

.schematic figcaption {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.zoom-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
  font-size: 1.6rem;
  line-height: 1;
}

.process {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 2.3fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-title {
  display: flex;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
  align-items: center;
  border-right: 1px solid var(--line);
}

.process-title h2 {
  max-width: 7ch;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
}

.process ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.process li {
  display: grid;
  padding: clamp(2.5rem, 4.5vw, 4.5rem) clamp(1.5rem, 3vw, 3.2rem);
  grid-template-columns: auto 1fr;
  gap: 1rem;
  border-right: 1px solid var(--line);
}

.process li:last-child {
  border-right: 0;
}

.process li > span {
  color: #98aa50;
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.process h3 {
  margin-bottom: 0.5rem;
}

.process p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.invitation {
  display: grid;
  min-height: 510px;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  background: var(--forest-dark);
  color: white;
}

.invitation-copy {
  display: flex;
  max-width: 750px;
  padding: clamp(4.5rem, 7vw, 7rem) var(--gutter);
  justify-self: end;
  flex-direction: column;
  justify-content: center;
}

.invitation h2 {
  color: white;
}

.invitation p {
  max-width: 42rem;
  margin: 1.75rem 0 2.2rem;
  color: #e7ecdf;
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
}

.button-lime {
  background: var(--lime);
  color: var(--forest-dark);
}

.button-lime:hover {
  background: #d9e6a9;
}

.button-ghost {
  border-color: white;
  color: white;
}

.button-ghost:hover {
  background: white;
  color: var(--forest-dark);
}

.invitation-image {
  min-height: 460px;
  background: url("/assets/greenhouse.jpg") center / cover no-repeat;
}

.contact {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.contact-copy h2 {
  max-width: 8.5ch;
}

.contact-copy > p {
  max-width: 33rem;
  margin: 1.7rem 0 2.5rem;
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
}

.leaf-rule {
  position: relative;
  display: block;
  width: 210px;
  height: 2px;
  background: var(--leaf);
}

.leaf-rule::after {
  position: absolute;
  top: -9px;
  right: -1px;
  width: 20px;
  height: 12px;
  border-radius: 100% 0 100% 0;
  background: var(--leaf);
  content: "";
  transform: rotate(-20deg);
}

.contact-list {
  display: grid;
  gap: 1rem;
  font-style: normal;
}

.contact-list a,
.contact-list div {
  display: grid;
  width: fit-content;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
}

.contact-list a:hover span:last-child {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-list span:first-child {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: white;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1.8rem;
  align-content: start;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--forest-dark);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid var(--forest);
  border-radius: 0;
  background: transparent;
  font-weight: 400;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  outline: 0;
  box-shadow: 0 2px 0 var(--coral);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--leaf);
  background: var(--paper-deep);
  color: var(--forest-dark);
}

.faq {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 0;
}

.faq h2 {
  text-align: center;
}

.faq-list {
  max-width: 1060px;
  margin: 3.5rem auto 0;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 1.7rem 3.5rem 1.7rem 4rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  content: "+";
  font-family: var(--sans);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq details[open] summary::before {
  content: "-";
}

.faq details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq details p {
  margin: 0 0 1.8rem 4rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--lime);
  background: var(--paper-deep);
}

.site-footer {
  padding: clamp(3.5rem, 6vw, 6rem) var(--gutter) 2rem;
  background: var(--forest-dark);
  color: white;
}

.footer-main {
  display: flex;
  width: min(100%, calc(var(--max) - 2 * var(--gutter)));
  margin: 0 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-brand img {
  width: 145px;
  height: 145px;
  border: 5px solid #6a4c39;
  object-fit: cover;
}

.footer-brand h2 {
  margin-bottom: 1.5rem;
  color: white;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
}

.footer-brand a {
  color: var(--lime);
}

.footer-main nav {
  display: grid;
  min-width: 190px;
  padding: 0.6rem 0.5rem 0.6rem 3rem;
  gap: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

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

.footer-main nav a:hover {
  color: var(--lime);
}

.legal {
  width: min(100%, calc(var(--max) - 2 * var(--gutter)));
  margin: 3.5rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(200, 217, 133, 0.7);
  color: #dbe4ce;
  font-size: 0.85rem;
  text-align: center;
}

.legal span {
  margin: 0 0.45rem;
  color: var(--lime);
}

.lightbox {
  max-width: min(94vw, 1100px);
  padding: clamp(1rem, 3vw, 2.5rem);
  border: 0;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(7, 23, 14, 0.84);
}

.lightbox img {
  width: min(100%, 900px);
  max-height: 76vh;
  margin: 0 auto;
  object-fit: contain;
}

.lightbox p {
  margin: 1rem 0 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.25rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--forest-dark);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.js [data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal-delay="1"] {
  transition-delay: 120ms;
}

.js [data-reveal-delay="2"] {
  transition-delay: 240ms;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .header-inner {
    min-height: 88px;
  }

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

  .site-nav {
    gap: 1.35rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  }

  .hero-media {
    min-height: 650px;
  }

  .mission,
  .programs,
  .contact {
    gap: 3rem;
  }

  .programs {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  }

  .invitation {
    grid-template-columns: 1fr 0.8fr;
  }

  .process li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 88px 0 auto;
    display: grid;
    padding: 2rem var(--gutter) 3rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero,
  .mission,
  .programs,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 5rem;
  }

  .hero-media {
    min-height: 66vw;
    border-bottom-left-radius: 3rem;
  }

  .mission-principles {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .mission-principles article {
    padding-left: 0;
  }

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

  .process-title {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-title h2 {
    max-width: none;
  }

  .process ol {
    grid-template-columns: 1fr;
  }

  .process li {
    grid-template-columns: 54px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process li:last-child {
    border-bottom: 0;
  }

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

  .invitation-copy {
    max-width: none;
    justify-self: stretch;
  }

  .invitation-image {
    min-height: 55vw;
  }

  .contact {
    gap: 5rem;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main nav {
    width: 100%;
    padding: 1.5rem 0 0;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 1.2rem;
    --section: 4.75rem;
  }

  body {
    font-size: 0.96rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    gap: 0.7rem;
    font-size: 1rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-width: 3px;
  }

  .site-nav {
    inset-block-start: 76px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.3rem);
  }

  .hero-copy {
    padding: 4rem var(--gutter);
  }

  .hero-copy > p {
    font-size: 1.07rem;
  }

  .hero-actions,
  .invitation-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 82vw;
    border-bottom-left-radius: 2.2rem;
  }

  .hero-media figcaption {
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    max-width: none;
  }

  .mission-statement {
    grid-template-columns: 1fr;
  }

  .vine-mark {
    display: none;
  }

  .mission-principles article {
    grid-template-columns: 64px 1fr;
    gap: 1rem;
  }

  .principle-icon {
    width: 58px;
    height: 58px;
  }

  .principle-icon svg {
    width: 34px;
    height: 34px;
  }

  .programs {
    gap: 4rem;
  }

  .program-list article {
    grid-template-columns: 42px 1fr;
  }

  .process li {
    padding: 2rem var(--gutter);
  }

  .invitation-image {
    min-height: 74vw;
  }

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

  .contact-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .contact-list a,
  .contact-list div {
    width: 100%;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .contact-list a span:last-child {
    overflow-wrap: anywhere;
  }

  .faq summary {
    padding: 1.45rem 2.2rem 1.45rem 3.2rem;
  }

  .faq summary::before {
    left: 0;
  }

  .faq summary::after {
    right: 0.3rem;
  }

  .faq details p {
    margin-left: 0;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand img {
    width: 110px;
    height: 110px;
  }

  .footer-brand a {
    overflow-wrap: anywhere;
  }

  .footer-main nav {
    grid-template-columns: 1fr;
  }

  .legal span {
    display: block;
    height: 0;
    overflow: hidden;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
