﻿:root {
  --gold: #d8a044;
  --gold-bright: #efc46d;
  --navy: #061a2c;
  --ink: #080b0d;
  --cream: #fff6df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #05090d;
  color: var(--cream);
  font-family: Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: rgba(239, 196, 109, 0.28);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

button:hover,
a:hover {
  transform: translateY(-1px);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
}

.page-stack {
  width: 100vw;
  max-width: none;
  margin: 0;
  background: #02070c;
}

.art-section,
.donation-board,
.ranch-showcase {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #061a2c;
}

.art-section img,
.donation-board > img,
.ranch-showcase > img {
  display: block;
  width: 100%;
  min-width: 100%;
  height: auto;
}

.hero-art {
  position: relative;
}

.hero-section {
  position: relative;
  width: 100vw;
  min-height: clamp(430px, 36vw, 660px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-bottom: 1px solid rgba(216, 160, 68, 0.45);
  background: #061a2c;
}

.hero-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  background: #061a2c;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 10, 18, 0.88) 0%, rgba(0, 10, 18, 0.7) 28%, rgba(0, 10, 18, 0.04) 58%, rgba(0, 10, 18, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 12, 24, 0.96) 0, rgba(0, 12, 24, 0.96) 78px, transparent 79px);
}

.hero-nav,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-nav {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  min-height: 58px;
  padding: 0 clamp(28px, 5vw, 80px);
  background: rgba(0, 16, 31, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-brand {
  display: grid;
  gap: 1px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 900;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(18px, 3vw, 44px);
}

.hero-nav a {
  color: var(--cream);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-nav a:hover,
.hero-nav a:focus-visible {
  color: var(--gold-bright);
}

.hero-nav button,
.hero-actions button,
.hero-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-nav button {
  min-width: clamp(150px, 14vw, 230px);
  border: 0;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero-content {
  max-width: min(640px, 50vw);
  padding: clamp(42px, 5.4vw, 84px) 0 clamp(46px, 5.8vw, 90px) clamp(42px, 7vw, 110px);
}

.hero-content h1 {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(38px, 4.4vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.62);
  overflow-wrap: normal;
  word-break: normal;
}

.hero-content h1 span:last-child {
  color: var(--gold-bright);
}

.hero-rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 430px;
  margin: clamp(12px, 1.5vw, 20px) 0;
  color: var(--gold-bright);
}

.hero-rule span {
  height: 2px;
  background: var(--gold);
}

.hero-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 246, 223, 0.94);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions button,
.hero-actions a {
  min-width: 188px;
  padding: 0 20px;
}

.hero-actions button {
  border: 0;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.hero-actions a {
  border: 2px solid var(--gold);
  color: var(--cream);
  background: rgba(2, 12, 22, 0.66);
}

.hero-nav button:hover,
.hero-actions button:hover,
.mission-band button:hover,
.founding-section button:hover,
.donor-card button:hover,
.signup-form button:hover,
.checkout-submit:hover {
  box-shadow: 0 14px 34px rgba(216, 160, 68, 0.24);
}

.ranch-showcase > img {
  min-height: 420px;
  object-fit: cover;
}

.ranch-caption {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  max-width: 760px;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(216, 160, 68, 0.55);
  border-radius: 8px;
  background: rgba(2, 9, 15, 0.72);
  backdrop-filter: blur(8px);
}

.ranch-caption img {
  width: clamp(86px, 12vw, 150px);
  height: auto;
  border-radius: 6px;
}

.ranch-caption p,
.ranch-caption h1,
.ranch-caption span {
  margin: 0;
  letter-spacing: 0;
}

.ranch-caption p {
  color: var(--gold-bright);
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
}

.ranch-caption h1 {
  margin-top: 6px;
  color: var(--cream);
  font-size: clamp(24px, 4vw, 46px);
  line-height: 0.98;
  text-transform: uppercase;
}

.ranch-caption span {
  display: block;
  max-width: 520px;
  margin-top: 10px;
  color: rgba(255, 246, 223, 0.86);
  font-size: clamp(14px, 1.5vw, 19px);
  line-height: 1.3;
}

.mission-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  align-content: center;
  min-height: clamp(560px, 39vw, 640px);
  padding: clamp(34px, 3.2vw, 52px) clamp(18px, 6vw, 90px) clamp(34px, 3.4vw, 56px);
  border-top: 1px solid rgba(216, 160, 68, 0.42);
  border-bottom: 1px solid rgba(216, 160, 68, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 82, 120, 0.34), transparent 34%),
    linear-gradient(90deg, #00101f, #041f35 50%, #00101f);
  text-align: center;
}

.section-rule-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  max-width: 720px;
  margin: 0 auto 6px;
}

.section-rule-title span {
  height: 2px;
  flex: 1;
  background: var(--gold);
}

.section-rule-title h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.mission-section .section-rule-title {
  max-width: 620px;
}

.mission-section .section-rule-title h2 {
  font-size: clamp(26px, 3.1vw, 42px);
}

.mission-intro {
  max-width: 820px;
  margin: 0 auto clamp(20px, 2.4vw, 32px);
  color: rgba(255, 246, 223, 0.9);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.24;
}

.mission-intro p {
  margin: 0;
}

.mission-intro p + p {
  margin-top: 8px;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.mission-pillars article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 132px;
  padding: 0 clamp(14px, 2vw, 28px);
}

.mission-pillars article + article {
  border-left: 1px solid rgba(216, 160, 68, 0.55);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 800;
}

.mission-pillars h3 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(16px, 1.35vw, 20px);
  text-transform: uppercase;
}

.mission-pillars p {
  margin: 6px 0 0;
  color: rgba(255, 246, 223, 0.88);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.18;
}

.mission-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(16px, 1.7vw, 26px) clamp(20px, 12vw, 220px);
  border-top: 1px solid rgba(216, 160, 68, 0.5);
  border-bottom: 1px solid rgba(216, 160, 68, 0.5);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28)),
    repeating-linear-gradient(0deg, #2b180f 0, #2b180f 10px, #3a2114 11px, #3a2114 22px);
}

.band-star {
  display: grid;
  place-items: center;
  width: clamp(42px, 4vw, 62px);
  height: clamp(42px, 4vw, 62px);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: clamp(22px, 2.4vw, 34px);
}

.mission-band p {
  margin: 0;
  color: rgba(255, 246, 223, 0.92);
  font-size: clamp(16px, 2vw, 26px);
  line-height: 1.25;
}

.mission-band button {
  min-width: clamp(150px, 13vw, 220px);
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.legacy-section {
  position: relative;
  width: 100vw;
  height: calc(100vh + 72px);
  min-height: 720px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #05090d;
}

.legacy-section::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 42%);
}

.legacy-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.legacy-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  height: 100%;
  max-width: 640px;
  padding: clamp(52px, 6vw, 92px) clamp(24px, 6vw, 92px) clamp(84px, 8vw, 128px);
}

.legacy-content .eyebrow {
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(17px, 1.8vw, 25px);
}

.legacy-content h2 {
  display: grid;
  gap: 2px;
  margin: 8px 0 14px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(52px, 7.4vw, 102px);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.legacy-content > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 246, 223, 0.9);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.32;
}

.legacy-content > p:not(.eyebrow) + p {
  margin-top: 12px;
}

.programs-section {
  width: 100vw;
  min-height: 42vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #041f35;
}

.program-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 5vw, 78px);
  background: #f4ead7;
  color: #081a29;
}

.program-intro-grid article,
.program-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 0 clamp(14px, 2vw, 28px);
}

.program-intro-grid article + article {
  border-left: 1px solid rgba(123, 83, 35, 0.42);
}

.program-icon {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 900;
}

.program-icon.gold-fill {
  background: var(--gold);
  color: #071522;
}

.program-intro-grid h3,
.program-grid h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.05;
  text-transform: uppercase;
}

.program-intro-grid p,
.program-grid p {
  margin: 4px 0 0;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.25;
}

.program-board {
  display: grid;
  align-content: center;
  min-height: 42vh;
  padding: clamp(34px, 4.4vw, 64px) clamp(18px, 5vw, 78px);
  border-top: 1px solid rgba(216, 160, 68, 0.55);
  border-bottom: 1px solid rgba(216, 160, 68, 0.55);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 93, 122, 0.34), transparent 36%),
    linear-gradient(90deg, #00101f, #041f35 50%, #00101f);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1220px;
  margin: clamp(24px, 3vw, 38px) auto 0;
  color: var(--cream);
}

.program-summary {
  max-width: 980px;
  margin: 14px auto 0;
  color: rgba(255, 246, 223, 0.88);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.4;
  text-align: center;
}

.program-grid article {
  align-items: start;
}

.program-grid h3 {
  color: var(--gold-bright);
}

.program-grid p {
  color: rgba(255, 246, 223, 0.86);
}

.impact-section {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  width: 100vw;
  min-height: 58vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(216, 160, 68, 0.55);
  border-bottom: 1px solid rgba(216, 160, 68, 0.55);
  background: #041f35;
}

.image-impact {
  display: block;
  position: relative;
  overflow: hidden;
  background: #040b12;
}

.image-impact::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 11, 20, 0.34), rgba(0, 11, 20, 0.02)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.14), transparent 35%);
  pointer-events: none;
}

.image-impact img {
  display: block;
  width: 100%;
  height: 58vh;
  min-height: 440px;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.24) contrast(1.08) saturate(1.12);
  transform: scale(1.08);
}

.founder-word {
  position: absolute;
  left: clamp(18px, 2.8vw, 46px);
  top: 44%;
  z-index: 2;
  width: min(620px, 42vw);
  max-height: calc(58vh - 18px);
  overflow: hidden;
  padding: clamp(14px, 1.8vw, 24px);
  border: 1px solid rgba(216, 160, 68, 0.58);
  border-radius: 8px;
  background: rgba(4, 12, 18, 0.7);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  color: var(--cream);
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
}

.founder-word h2 {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.1vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.founder-word p {
  margin: 0 0 8px;
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.28;
}

.founder-word p:last-child {
  margin-bottom: 0;
}

.founder-credit {
  color: var(--gold-bright);
  font-weight: 800;
}

.founding-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(30px, 3.4vw, 54px) clamp(24px, 7vw, 116px);
  border-top: 1px solid rgba(216, 160, 68, 0.55);
  border-bottom: 1px solid rgba(216, 160, 68, 0.55);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.22)),
    repeating-linear-gradient(0deg, #2b180f 0, #2b180f 12px, #3a2114 13px, #3a2114 24px);
}

.founding-mark {
  display: grid;
  place-items: center;
  width: clamp(86px, 9vw, 132px);
  height: clamp(86px, 9vw, 132px);
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(216, 160, 68, 0.22), rgba(4, 18, 30, 0.96) 62%);
  color: var(--gold-bright);
  font-size: clamp(40px, 5vw, 68px);
  box-shadow: inset 0 0 0 8px rgba(0, 0, 0, 0.22);
}

.founding-copy h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.founding-copy p {
  max-width: 880px;
  margin: 10px 0 0;
  color: rgba(255, 246, 223, 0.9);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.35;
}

.founding-section button {
  min-width: clamp(150px, 15vw, 230px);
  min-height: 54px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.founder-signature {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 6vw, 84px);
  border-top: 1px solid rgba(216, 160, 68, 0.45);
  background:
    linear-gradient(rgba(207, 155, 72, 0.94), rgba(184, 126, 42, 0.94)),
    repeating-linear-gradient(90deg, #bd8536 0, #bd8536 16px, #d6a44c 17px, #d6a44c 34px);
  color: #101d25;
  text-align: center;
}

.founder-signature img {
  width: min(560px, 82vw);
  height: auto;
}

.founder-signature p {
  margin: 6px 0 0;
  font-size: clamp(15px, 2vw, 23px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  border: 2px solid transparent;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.001);
  cursor: pointer;
}

.hotspot:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

.hero-donate { right: 5.2%; top: 4%; width: 14.8%; height: 8.8%; }

.donor-section {
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #061a2c;
}

.donor-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--gold);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 42%),
    url("assets/donor-amphitheater-clean.jpg") center center / cover no-repeat;
}

.donor-board {
  display: grid;
  align-content: start;
  min-height: 56vh;
  padding: clamp(34px, 4.4vw, 64px) clamp(16px, 4vw, 56px) clamp(42px, 5.5vw, 78px);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid rgba(216, 160, 68, 0.55);
  background:
    radial-gradient(circle at 50% 0%, rgba(38, 100, 137, 0.38), transparent 34%),
    linear-gradient(180deg, #06253b 0%, #03192b 42%, #021120 100%);
}

.donor-heading {
  max-width: 860px;
  margin: clamp(18px, 4vh, 58px) auto clamp(34px, 7vh, 96px);
  text-align: center;
}

.donor-heading .eyebrow {
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0;
}

.donor-heading h2 {
  margin: 8px 0 0;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(24px, 3.6vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
}

.donor-heading p {
  margin: 8px 0 0;
  color: rgba(255, 246, 223, 0.88);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.35;
}

.donor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
}

.donor-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 270px;
  padding: 26px 16px 20px;
  border: 1px solid rgba(216, 160, 68, 0.88);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(10, 55, 84, 0.96), rgba(0, 18, 33, 0.98));
  color: var(--cream);
  text-align: center;
}

.donor-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 800;
}

.donor-card h3 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(16px, 1.5vw, 23px);
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.donor-card strong {
  display: block;
  margin-top: 8px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 0.95;
  max-width: 100%;
  overflow-wrap: normal;
}

.donor-card span {
  color: rgba(255, 246, 223, 0.9);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.donor-card p {
  margin: 12px 0 16px;
  color: rgba(255, 246, 223, 0.9);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.25;
  max-width: 100%;
}

.donor-card button {
  align-self: end;
  width: min(170px, 100%);
  min-height: 44px;
  margin-top: auto;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.featured-donor {
  padding-top: 42px;
}

.popular-label {
  position: absolute;
  inset: 0 0 auto;
  min-height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-heading {
  margin-top: clamp(30px, 4vw, 54px);
  margin-bottom: 18px;
}

.sponsor-card {
  min-height: 245px;
}

.sponsor-card h3 {
  font-size: clamp(15px, 1.35vw, 21px);
}

.sponsor-card strong {
  font-size: clamp(27px, 2.75vw, 42px);
  white-space: nowrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.checkout {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #071d30;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.amount-options button {
  min-height: 42px;
  border: 1px solid rgba(216, 160, 68, 0.7);
  border-radius: 4px;
  background: rgba(216, 160, 68, 0.12);
  color: var(--gold-bright);
  font-weight: 800;
  cursor: pointer;
}

.amount-options button:hover,
.amount-options button:focus-visible {
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 0 14px;
  background: #fff;
  color: #111;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-submit {
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 7vw, 110px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(40px, 5.4vw, 84px) clamp(22px, 9vw, 140px);
  border-top: 1px solid rgba(216, 160, 68, 0.5);
  border-bottom: 1px solid rgba(216, 160, 68, 0.5);
  background:
    radial-gradient(circle at 35% 0%, rgba(216, 160, 68, 0.16), transparent 32%),
    repeating-linear-gradient(0deg, #2b180f 0, #2b180f 12px, #3a2114 13px, #3a2114 24px);
}

.connect-message {
  min-height: clamp(180px, 18vw, 260px);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(216, 160, 68, 0.55);
  background:
    linear-gradient(90deg, rgba(0, 12, 22, 0.72), rgba(0, 12, 22, 0.38)),
    url("assets/footer-signup.jpeg") left center / cover;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.36);
}

.connect-message p {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.06;
  text-transform: uppercase;
}

.connect-message span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 246, 223, 0.84);
  font-family: Georgia, serif;
  font-size: clamp(18px, 2vw, 28px);
  text-transform: uppercase;
}

.connect-form-wrap {
  text-align: center;
}

.connect-form-wrap h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1;
  text-transform: uppercase;
}

.connect-form-wrap p {
  margin: 8px auto 22px;
  max-width: 660px;
  color: rgba(255, 246, 223, 0.88);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.35;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(118px, auto);
  max-width: 620px;
  margin: 0 auto;
}

.signup-form input,
.signup-form button {
  min-width: 0;
  min-height: 52px;
  border: 0;
  font-size: clamp(14px, 1.3vw, 18px);
}

.signup-form input {
  padding: 0 16px;
  border-radius: 4px 0 0 4px;
  background: #fff;
  color: #151515;
}

.signup-form button {
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(216, 160, 68, 0.8);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.status-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(0, 10, 18, 0.88), rgba(0, 10, 18, 0.42)),
    url("assets/blue-ridge-crossroads-hero-cropped.png") center center / cover no-repeat;
}

.status-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(216, 160, 68, 0.72);
  border-radius: 8px;
  background: rgba(2, 12, 22, 0.86);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.status-card .eyebrow {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card h1 {
  margin: 0 0 16px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
}

.status-card p {
  margin: 0 0 24px;
  color: rgba(255, 246, 223, 0.9);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.42;
}

.status-card a {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  background: linear-gradient(#efc46d, #c7892c);
  color: #111;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-nav {
    grid-template-columns: 1fr auto;
  }

  .hero-brand {
    justify-self: start;
  }

  .hero-nav nav {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 16px;
  }

  .hero-content {
    max-width: min(620px, 62vw);
  }

  .mission-pillars,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 0;
  }

  .mission-pillars article:nth-child(3) {
    border-left: 0;
  }

  .program-intro-grid {
    grid-template-columns: 1fr;
  }

  .program-intro-grid article {
    min-height: auto;
    padding: 18px 0;
  }

  .program-intro-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(123, 83, 35, 0.32);
  }

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

  .donor-card {
    min-height: 245px;
  }

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

  .monthly-grid .donor-card,
  .sponsor-card {
    grid-column: span 2;
  }

  .monthly-grid .donor-card:nth-last-child(2),
  .sponsor-card:nth-last-child(2) {
    grid-column: 2 / span 2;
  }

  .monthly-grid .donor-card:last-child,
  .sponsor-card:last-child {
    grid-column: 4 / span 2;
  }

  .sponsor-card {
    min-height: 300px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .sponsor-card strong {
    font-size: clamp(31px, 4.4vw, 45px);
  }

  .sponsor-card p {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.22;
  }

  .sponsor-card button {
    width: min(190px, 86%);
  }
}

@media (min-width: 761px) and (max-width: 940px) {
  .sponsor-card strong {
    font-size: clamp(28px, 4vw, 38px);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .mission-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .mission-pillars article:nth-child(3) {
    border-left: 1px solid rgba(216, 160, 68, 0.55);
  }
}

@media (max-width: 760px) {
  .page-stack {
    width: 100%;
  }

  .hero-section {
    min-height: 620px;
  }

  .hero-section::before {
    background:
      linear-gradient(90deg, rgba(0, 10, 18, 0.94), rgba(0, 10, 18, 0.62)),
      linear-gradient(180deg, rgba(0, 12, 24, 0.96) 0, rgba(0, 12, 24, 0.96) 178px, transparent 179px);
  }

  .hero-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    width: 100%;
    overflow: hidden;
    padding: 16px 12px;
    text-align: center;
  }

  .hero-nav nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    grid-column: auto;
    grid-row: auto;
    padding-bottom: 0;
  }

  .hero-content {
    width: 100%;
    overflow: hidden;
    max-width: none;
    padding: 34px 22px 44px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 300px;
  }

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

  .donor-section,
  .donor-board {
    min-height: auto;
  }

  .donor-hero {
    min-height: 100vh;
  }

  .donor-heading {
    margin: 0 auto clamp(22px, 3vw, 34px);
  }

  .donor-card {
    min-height: auto;
  }

  .monthly-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .monthly-grid .donor-card,
  .monthly-grid .donor-card:nth-last-child(2),
  .monthly-grid .donor-card:last-child,
  .sponsor-card,
  .sponsor-card:nth-last-child(2),
  .sponsor-card:last-child {
    grid-column: auto;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mission-pillars article {
    min-height: auto;
    padding: 0;
  }

  .mission-pillars article + article {
    border-left: 0;
    border-top: 1px solid rgba(216, 160, 68, 0.42);
    padding-top: 22px;
  }

  .mission-pillars article:nth-child(3) {
    border-top: 1px solid rgba(216, 160, 68, 0.42);
  }

  .program-intro-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .programs-section,
  .program-board,
  .impact-section {
    min-height: auto;
  }

  .image-impact img {
    height: auto;
    min-height: 260px;
    transform: none;
  }

  .founder-word {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-height: none;
    margin: -42px 14px 24px;
    transform: none;
  }

  .program-intro-grid article,
  .program-grid article {
    min-height: auto;
    padding: 18px 0;
  }

  .program-intro-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(123, 83, 35, 0.32);
  }

  .mission-band,
  .impact-section,
  .founding-section,
  .connect-section {
    grid-template-columns: 1fr;
  }

  .mission-band {
    justify-items: center;
    text-align: center;
  }

  .founding-section {
    justify-items: center;
    text-align: center;
  }

  .ranch-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -120px 14px 20px;
  }

  .ranch-caption img {
    width: 82px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-form input,
  .signup-form button {
    border-radius: 4px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile and tablet polish pass */
@media (max-width: 900px) {
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  h1,
  h2,
  h3 {
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  .hero-section,
  .mission-section,
  .legacy-section,
  .ranch-showcase,
  .programs-section,
  .impact-section,
  .founding-section,
  .donor-section,
  .connect-section,
  .founder-signature {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-nav {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 20px 18px;
    text-align: center;
  }

  .hero-brand {
    justify-self: center;
    font-size: clamp(16px, 4.6vw, 22px);
  }

  .hero-nav nav {
    grid-column: auto;
    grid-row: auto;
    max-width: 620px;
    padding-bottom: 0;
  }

  .hero-nav button {
    width: min(100%, 262px);
    min-width: 0;
    justify-self: center;
  }

  .section-rule-title {
    grid-template-columns: minmax(36px, 1fr) auto minmax(36px, 1fr);
    gap: 12px;
  }

  .section-rule-title h2 {
    font-size: clamp(30px, 6vw, 48px);
    text-align: center;
  }

  .mission-section,
  .programs-section,
  .program-board,
  .donor-board {
    padding-left: 22px;
    padding-right: 22px;
  }

  .mission-intro,
  .program-summary,
  .donor-heading {
    max-width: 760px;
  }

  .mission-intro {
    max-width: 760px;
    font-size: clamp(15px, 2.1vw, 18px);
    line-height: 1.25;
  }

  .mission-section .section-rule-title h2 {
    font-size: clamp(28px, 5vw, 40px);
  }

  .ranch-caption {
    max-width: min(92vw, 780px);
  }

  .ranch-caption h1 {
    font-size: clamp(28px, 5.8vw, 46px);
  }

  .ranch-caption span {
    font-size: clamp(15px, 2.4vw, 18px);
  }

  .founding-section,
  .connect-section {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 760px) {
  section {
    scroll-margin-top: 12px;
  }

  .hero-section {
    min-height: 100svh;
  }

  .hero-section > img {
    object-fit: cover;
    object-position: 62% 28%;
  }

  .hero-section::before {
    background:
      linear-gradient(90deg, rgba(0, 10, 18, 0.96) 0%, rgba(0, 10, 18, 0.74) 58%, rgba(0, 10, 18, 0.28) 100%),
      linear-gradient(180deg, rgba(0, 12, 24, 0.98) 0, rgba(0, 12, 24, 0.94) 182px, transparent 183px);
  }

  .hero-content {
    max-width: 100%;
    padding: 30px 20px 38px;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.8vw, 42px);
    line-height: 0.94;
  }

  .hero-content h1 span {
    display: block;
    max-width: 100%;
  }

  .hero-rule {
    max-width: 100%;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .mission-section {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  .mission-intro {
    margin-bottom: 24px;
  }

  .mission-pillars article {
    text-align: center;
  }

  .legacy-section {
    height: auto;
    min-height: 100svh;
  }

  .legacy-section > img {
    object-position: 58% center;
  }

  .legacy-content {
    align-content: end;
    height: auto;
    min-height: 100svh;
    max-width: 100%;
    padding: 0 22px 42px;
  }

  .legacy-content h2 {
    font-size: clamp(48px, 16vw, 84px);
  }

  .legacy-content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }

  .ranch-showcase > img {
    min-height: 100svh;
    object-fit: cover;
    object-position: 50% center;
  }

  .ranch-caption {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
    margin: -190px 14px 26px;
    padding: 16px;
  }

  .programs-section {
    min-height: auto;
  }

  .program-board {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .program-summary {
    margin-top: 12px;
  }

  .image-impact {
    min-height: auto;
    padding-bottom: 28px;
  }

  .image-impact img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: 42% center;
  }

  .founder-word {
    margin: -32px 14px 0;
    padding: 18px;
  }

  .founder-word h2 {
    font-size: 28px;
  }

  .founder-word p {
    font-size: 14px;
    line-height: 1.35;
  }

  .founding-section {
    gap: 18px;
    padding-top: 32px;
    padding-bottom: 34px;
  }

  .founding-copy h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .donor-hero {
    min-height: 100svh;
    background-size: cover;
    background-position: center top;
  }

  .donor-board {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .donor-heading h2 {
    font-size: clamp(32px, 9vw, 52px);
  }

  .connect-section {
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .connect-message {
    min-height: 180px;
  }

  .founder-signature {
    padding: 34px 22px;
  }

  .founder-signature img {
    max-width: min(92vw, 520px);
  }

  .checkout {
    width: min(94vw, 520px);
    max-height: 90svh;
    overflow-y: auto;
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .hero-nav nav {
    gap: 10px 14px;
  }

  .hero-nav a {
    font-size: 12px;
  }

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

  .section-rule-title span {
    display: none;
  }

  .mission-pillars,
  .program-grid,
  .donor-grid {
    gap: 18px;
  }

  .ranch-caption {
    grid-template-columns: 1fr;
    margin-top: -240px;
  }

  .ranch-caption img {
    width: 96px;
  }

  .program-intro-grid article,
  .program-grid article {
    justify-items: center;
    text-align: center;
  }

  .founder-word {
    margin-left: 10px;
    margin-right: 10px;
  }

  .signup-form {
    gap: 10px;
  }
}

@media (min-width: 1600px) {
  .hero-section {
    min-height: clamp(560px, 32vw, 760px);
  }

  .hero-section > img {
    object-position: center 32%;
  }

  .hero-nav {
    min-height: 76px;
  }

  .hero-content {
    max-width: 720px;
    padding-top: clamp(92px, 7vw, 138px);
    padding-bottom: clamp(88px, 7vw, 132px);
  }

  .hero-content h1 {
    font-size: clamp(68px, 4.8vw, 104px);
  }

  .hero-content p {
    max-width: 620px;
    font-size: clamp(18px, 1vw, 22px);
  }

  .mission-section {
    min-height: clamp(640px, 34vw, 820px);
    padding-left: clamp(120px, 12vw, 260px);
    padding-right: clamp(120px, 12vw, 260px);
  }

  .mission-section .section-rule-title {
    max-width: 760px;
  }

  .mission-section .section-rule-title h2 {
    font-size: clamp(42px, 2.6vw, 58px);
  }

  .mission-intro {
    max-width: 940px;
    font-size: clamp(18px, 0.95vw, 22px);
    line-height: 1.38;
  }

  .mission-pillars {
    max-width: 1360px;
    margin-top: clamp(34px, 2.4vw, 56px);
  }

  .mission-pillars article {
    min-height: 168px;
    padding-left: clamp(28px, 2vw, 48px);
    padding-right: clamp(28px, 2vw, 48px);
  }

  .mission-pillars h3 {
    font-size: clamp(20px, 1vw, 25px);
  }

  .mission-pillars p {
    font-size: clamp(15px, 0.78vw, 18px);
    line-height: 1.3;
  }

  .ranch-showcase > img {
    min-height: clamp(560px, 34vw, 780px);
  }

  .donor-hero {
    min-height: clamp(760px, 44vw, 980px);
    background-position: center center;
  }
}

@media (min-width: 2400px) {
  body {
    background: #02070c;
  }

  .page-stack {
    width: min(100%, 3200px);
    max-width: 3200px;
    margin: 0 auto;
    box-shadow: 0 0 0 1px rgba(216, 160, 68, 0.18);
  }

  .art-section,
  .donation-board,
  .ranch-showcase,
  .hero-section,
  .mission-section,
  .legacy-section,
  .programs-section,
  .impact-section,
  .founding-section,
  .donor-section,
  .connect-section,
  .founder-signature {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-section {
    min-height: 760px;
  }

  .hero-content {
    padding-left: 86px;
  }

  .mission-section {
    min-height: 760px;
  }

  .legacy-section {
    height: 860px;
    min-height: 860px;
  }

  .image-impact img {
    height: 680px;
    min-height: 680px;
  }

  .founder-word {
    width: 620px;
    max-height: 620px;
  }

  .ranch-showcase > img {
    min-height: 900px;
  }

  .donor-hero {
    min-height: 940px;
  }
}
