:root {
  --navy-950: #061a2a;
  --navy-900: #0b2942;
  --navy-800: #123d5a;
  --ivory: #f6f0e6;
  --paper: #fcfaf6;
  --oxblood: #681e2e;
  --brass: #b08d57;
  --brass-pale: #d7c08f;
  --soft-gray: #d9d9d6;
  --ink: #0c283d;
  --slate: #56656d;
  --rule: rgba(7, 31, 49, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

main,
section,
article,
form,
.hero-copy,
.premise-copy,
.method-heading,
.program-title,
.program-card,
.contact-heading {
  min-width: 0;
}

::selection {
  color: var(--ivory);
  background: var(--oxblood);
}

a {
  color: inherit;
}

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

.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;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--navy-900);
  background: var(--ivory);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 94px;
  padding: 0 clamp(1.25rem, 5vw, 5.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ivory);
  border-bottom: 1px solid rgba(245, 239, 228, 0.17);
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(5, 25, 35, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 51px;
  height: auto;
  aspect-ratio: 1287 / 1222;
  object-fit: contain;
}

.brand > span {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.brand small {
  margin-top: 0.38rem;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.39em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.7vw, 2.7rem);
}

nav a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:not(.header-cta) {
  color: rgba(245, 239, 228, 0.68);
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--brass-pale);
}

.header-cta {
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(176, 141, 87, 0.8);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.section {
  padding: clamp(4.75rem, 7.5vw, 7.5rem) clamp(1.25rem, 7vw, 8rem);
}

.section-mark,
.eyebrow {
  margin: 0;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.light-mark {
  color: var(--brass-pale);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 9.5rem clamp(1.25rem, 7vw, 8rem) 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 4rem clamp(3rem, 8vw, 9rem);
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 45%, rgba(176, 141, 87, 0.13), transparent 31%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 54%, #0a2d42);
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(1.25rem, 3.2vw, 3.5rem);
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent 10%, rgba(176,141,87,.7) 30%, rgba(176,141,87,.12));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black 30%, black);
}

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

.hero-copy {
  animation: enter-up 900ms cubic-bezier(.2,.75,.25,1) both;
}

.hero h1 {
  max-width: 900px;
  margin: 1.8rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.4vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--brass-pale);
  font-weight: 400;
}

.hero-lede {
  max-width: 700px;
  margin: 2.4rem 0 0;
  color: rgba(245,239,228,.74);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.52;
}

.hero-actions {
  margin-top: 2.65rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 0.82rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-brass {
  color: var(--navy-950);
  background: var(--brass);
}

.button-brass:hover {
  background: var(--brass-pale);
}

.quiet-link {
  color: var(--ivory);
  font-size: 0.9rem;
  text-decoration-color: var(--brass);
  text-underline-offset: 0.45rem;
}

.quiet-link span {
  margin-left: 0.35rem;
  color: var(--brass-pale);
}

.hero-seal {
  justify-self: center;
  width: min(33vw, 470px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176,141,87,.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 2rem rgba(176,141,87,.035),
    0 0 0 5rem rgba(176,141,87,.02);
  animation: seal-enter 1.1s 160ms cubic-bezier(.2,.75,.25,1) both;
}

.hero-seal img {
  width: 78%;
  height: auto;
  object-fit: contain;
  opacity: 0.86;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.22));
}

.seal-copy {
  position: absolute;
  inset: -1.2rem;
  color: rgba(245,239,228,.58);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.seal-copy span {
  position: absolute;
}

.seal-copy span:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.seal-copy span:nth-child(2) {
  right: -1.8rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.seal-copy span:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.seal-copy span:nth-child(4) {
  left: -1.7rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

.hero-foot {
  grid-column: 1 / -1;
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(245,239,228,.17);
}

.hero-foot p {
  margin: 0;
  color: var(--brass-pale);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.hero-foot span {
  color: rgba(245,239,228,.42);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premise {
  display: grid;
  grid-template-columns: 0.32fr 1.68fr;
  gap: 3rem;
  background: var(--paper);
}

.premise-copy h2,
.section-intro h2,
.method-heading h2,
.program-title h2,
.support-heading h2,
.contact-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

.premise-copy h2 {
  max-width: 1150px;
}

.premise-body {
  max-width: 900px;
  margin: 3.25rem 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  color: var(--slate);
  font-size: 1.05rem;
}

.premise-body p {
  margin: 0;
}

.premise-body h3 {
  margin: 0 0 0.75rem;
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fellowship {
  color: var(--ivory);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--navy-900);
  background-size: 72px 72px;
}

.section-intro {
  max-width: 980px;
}

.section-intro .section-mark {
  color: var(--brass-pale);
}

.section-intro > p:last-child {
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(245,239,228,.6);
  font-size: 1.05rem;
}

.circle-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(176,141,87,.65);
  border-bottom: 1px solid rgba(245,239,228,.14);
}

.circle-card {
  min-height: 390px;
  padding: 2.1rem clamp(1.5rem, 2.8vw, 2.8rem) 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background-color 220ms ease, transform 220ms ease;
}

.circle-card + .circle-card {
  border-left: 1px solid rgba(245,239,228,.14);
}

.circle-card:hover {
  background: rgba(176,141,87,.08);
  transform: translateY(-4px);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top > span {
  color: var(--brass-pale);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.card-top small {
  color: rgba(245,239,228,.4);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.circle-card h3 {
  margin: 3rem 0 1.1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.circle-card > p:not(.card-principle) {
  margin: 0;
  color: rgba(245,239,228,.64);
}

.card-principle {
  margin: auto 0 0;
  padding-top: 2rem;
  color: var(--brass-pale);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 11rem);
  background: var(--ivory);
}

.method-heading {
  position: sticky;
  top: 115px;
}

.method-heading > p:last-child {
  max-width: 530px;
  margin: 2rem 0 0;
  color: var(--slate);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.method-list li {
  padding: 2.3rem 0;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--rule);
}

.method-list > li > span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.method-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  font-weight: 400;
  line-height: 1;
}

.method-list p {
  max-width: 600px;
  margin: 0.8rem 0 0;
  color: var(--slate);
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ivory);
  background: var(--navy-950);
}

.principles > div {
  min-height: 180px;
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.principles > div + div {
  border-left: 1px solid rgba(245,239,228,.12);
}

.principles strong {
  color: var(--brass-pale);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.principles span {
  margin-top: 0.35rem;
  color: rgba(245,239,228,.48);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
}

.program {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 11rem);
  color: var(--ivory);
  background: var(--oxblood);
}

.program-title > p:last-child {
  max-width: 590px;
  margin: 2rem 0 0;
  color: rgba(245,239,228,.66);
}

.program-card {
  padding: clamp(2rem, 4.5vw, 4.4rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 24px 24px 0 rgba(5,25,35,.14);
}

.program-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--brass);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-card-head p {
  margin: 0;
}

.program-card-head span {
  padding: 0.3rem 0.55rem;
  color: var(--oxblood);
  border: 1px solid rgba(104,30,46,.35);
}

.program-card h3 {
  max-width: 600px;
  margin: 1.3rem 0 2.6rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: .98;
}

.program-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.program-details > div {
  min-height: 126px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.program-details strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.program-details span {
  margin-top: 0.55rem;
  color: var(--slate);
  font-size: 0.82rem;
}

.program-note {
  margin: 2rem 0 0;
  color: var(--slate);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.support {
  background:
    radial-gradient(circle at 88% 14%, rgba(176,141,87,.12), transparent 21rem),
    var(--paper);
}

.support-heading {
  max-width: 1100px;
}

.support-story {
  max-width: 930px;
  margin: 3.25rem 0 0 auto;
  color: var(--slate);
}

.support-story p {
  margin: 0;
}

.support-lede {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.45;
}

.invitation-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.invitation {
  min-height: 290px;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  background: var(--ivory);
}

.invitation > p {
  margin: 0;
  color: var(--brass);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.invitation h3 {
  max-width: 600px;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.invitation a {
  width: fit-content;
  margin-top: auto;
  color: var(--oxblood);
  font-size: 0.88rem;
  font-weight: 750;
  text-underline-offset: 0.4rem;
}

.invitation a span {
  margin-left: 0.35rem;
}

.invitation-dark {
  color: var(--ivory);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.invitation-dark > p {
  color: var(--brass-pale);
}

.invitation-dark a {
  color: var(--brass-pale);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 11rem);
  color: var(--ivory);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--navy-950);
  background-size: 72px 72px;
}

.contact-heading > p:not(.section-mark) {
  max-width: 570px;
  margin: 2rem 0 1.3rem;
  color: rgba(245,239,228,.58);
}

.contact-heading > a {
  color: var(--brass-pale);
  font-family: var(--serif);
  font-size: 1.2rem;
  text-underline-offset: 0.35rem;
}

form {
  padding: clamp(2rem, 4vw, 3.8rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 20px 20px 0 rgba(176,141,87,.15);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

label {
  margin-bottom: 1.2rem;
  display: grid;
  gap: 0.46rem;
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7,31,49,.24);
  border-radius: 0;
  padding: 0.88rem 0.95rem;
  color: var(--ink);
  background: rgba(255,255,255,.55);
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176,141,87,.14);
}

textarea {
  resize: vertical;
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.button-ivory {
  color: var(--ivory);
  background: var(--navy-900);
}

.button-ivory:hover {
  background: var(--oxblood);
}

.form-foot p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
}

footer {
  min-height: 180px;
  padding: 2.5rem clamp(1.25rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: rgba(245,239,228,.42);
  background: #03121a;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.footer-brand img {
  width: 54px;
  height: auto;
  aspect-ratio: 1287 / 1222;
  object-fit: contain;
}

footer > p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seal-enter {
  from {
    opacity: 0;
    transform: scale(.93) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 820px;
  }

  .hero-copy {
    max-width: 920px;
  }

  .hero-seal {
    position: absolute;
    right: -7rem;
    bottom: 4rem;
    width: 450px;
    opacity: .2;
  }

  .hero-foot {
    grid-column: 1;
  }

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

  .program-title,
  .contact-heading {
    max-width: 850px;
  }

  .program-card {
    max-width: 850px;
    margin-left: auto;
  }

  .contact form {
    max-width: 850px;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 82px;
  }

  .hero-seal {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

  nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(6.5rem, env(safe-area-inset-top)) 2rem max(2rem, env(safe-area-inset-bottom));
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.4rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ivory);
    background: var(--navy-950);
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    font-family: var(--serif);
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  nav a:not(.header-cta) {
    color: var(--ivory);
  }

  .header-cta {
    padding: 0;
    border: 0;
    color: var(--brass-pale);
  }

  .premise,
  .method {
    grid-template-columns: 1fr;
  }

  .premise {
    gap: 1.2rem;
  }

  .method-heading {
    position: static;
  }

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

  .circle-card {
    min-height: 350px;
  }

  .circle-card + .circle-card {
    border-top: 1px solid rgba(245,239,228,.14);
    border-left: 0;
  }

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

  .principles > div:nth-child(3) {
    border-top: 1px solid rgba(245,239,228,.12);
    border-left: 0;
  }

  .principles > div:nth-child(4) {
    border-top: 1px solid rgba(245,239,228,.12);
  }

  .support-story {
    grid-template-columns: 1fr;
  }

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

  footer {
    grid-template-columns: 1fr;
  }

  footer > p:last-child {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .site-header,
  .site-header.is-scrolled {
    height: 74px;
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-left: max(1rem, env(safe-area-inset-left));
  }

  .brand img {
    width: 42px;
  }

  .brand strong {
    font-size: .96rem;
  }

  .brand small {
    font-size: .56rem;
    letter-spacing: .3em;
  }

  nav {
    padding-right: max(1.25rem, env(safe-area-inset-right));
    padding-left: max(1.25rem, env(safe-area-inset-left));
    gap: 1rem;
  }

  nav a {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1.08;
  }

  .hero {
    min-height: 100svh;
    padding: 7.5rem max(1.25rem, env(safe-area-inset-right)) 3rem max(1.6rem, env(safe-area-inset-left));
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15.5vw, 4.65rem);
    line-height: .92;
    overflow-wrap: anywhere;
  }

  .hero-lede {
    font-size: 1.16rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: .5rem;
  }

  .hero-foot span {
    display: none;
  }

  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .premise-copy h2,
  .section-intro h2,
  .method-heading h2,
  .program-title h2,
  .support-heading h2,
  .contact-heading h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
    overflow-wrap: anywhere;
  }

  .premise-body,
  .program-details,
  .invitation-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .premise-body {
    margin-top: 2.8rem;
    gap: 1.5rem;
  }

  .circle-card {
    min-height: 330px;
    padding-left: .2rem;
    padding-right: .2rem;
  }

  .circle-card h3 {
    margin-top: 2.6rem;
  }

  .method-list li {
    grid-template-columns: 2.8rem 1fr;
  }

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

  .principles > div,
  .principles > div:nth-child(3) {
    min-height: 130px;
    border-top: 1px solid rgba(245,239,228,.12);
    border-left: 0;
  }

  .principles > div:first-child {
    border-top: 0;
  }

  .program-card {
    width: 100%;
    padding: 1.6rem;
    box-shadow: 7px 7px 0 rgba(5,25,35,.14);
  }

  .program-card h3 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    overflow-wrap: anywhere;
  }

  .program-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-details > div {
    min-height: 0;
  }

  .invitation {
    min-height: 290px;
  }

  form {
    width: 100%;
    padding: 1.5rem;
    box-shadow: 7px 7px 0 rgba(176,141,87,.15);
  }

  input,
  select,
  textarea {
    min-width: 0;
    font-size: 16px;
  }

  .form-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand > span {
    max-width: 12rem;
  }

  .brand strong {
    font-size: .86rem;
    letter-spacing: .09em;
  }

  .brand small {
    font-size: .52rem;
    letter-spacing: .24em;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 3.55rem);
  }

  .section-mark,
  .eyebrow {
    letter-spacing: .13em;
  }

  .program-card,
  form {
    padding: 1.25rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
