:root {
  color-scheme: light;
  --paper: #f1ece2;
  --paper-deep: #ddd0bd;
  --ink: #2a2723;
  --muted: #716960;
  --line: rgba(42, 39, 35, 0.22);
  --forest: #17362f;
  --forest-soft: #294a41;
  --terracotta: #8f4938;
  --sand: #d8c4a8;
  --night: #172033;
  --olive: #4c5840;
  --cream: #f8f3e9;
  --header-h: 4.5rem;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--forest);
  font-weight: 750;
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-h);
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(248, 243, 233, 0.2);
  background: var(--forest);
  color: var(--cream);
}

.wordmark {
  width: max-content;
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: -0.035em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.header-actions > a:not(.connect-link) {
  padding: 0.75rem 0;
  color: rgba(248, 243, 233, 0.72);
  transition: color 180ms ease;
}

.header-actions > a:not(.connect-link):hover {
  color: var(--cream);
}

.connect-link {
  min-height: 2.75rem;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--forest);
  transition: transform 180ms ease, background 180ms ease;
}

.connect-link:hover {
  transform: translateY(-2px);
  background: #fffdf8;
}

.chapter-progress {
  position: fixed;
  z-index: 12;
  top: 50%;
  left: 1rem;
  width: 8rem;
  display: grid;
  transform: translateY(-50%);
  color: rgba(248, 243, 233, 0.6);
}

.progress-link {
  min-height: 2.75rem;
  padding: 0.55rem 0.7rem;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: center;
  gap: 0.35rem;
  border-left: 1px solid rgba(248, 243, 233, 0.24);
  font-size: 0.64rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.progress-link span:first-child {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.progress-link[aria-current="step"] {
  border-color: var(--cream);
  color: var(--cream);
  transform: translateX(0.35rem);
}

.introduction {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(3rem, 8vh, 7rem)) var(--page-pad) clamp(2rem, 5vw, 4.5rem) max(var(--page-pad), 11rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(2rem, 7vw, 8rem);
  background: var(--forest);
  color: var(--cream);
}

.introduction::after {
  position: absolute;
  right: 0;
  bottom: -14vw;
  width: min(52vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(248, 243, 233, 0.12);
  border-radius: 50%;
  content: "";
}

.introduction-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 58rem;
}

.overline {
  margin-bottom: 1.25rem;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.introduction .overline {
  color: #e2a58e;
}

.profile-name {
  margin-bottom: clamp(1.25rem, 4vh, 3rem);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-style: italic;
}

.introduction h1 {
  max-width: 13ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-family: var(--display);
  font-size: clamp(4rem, 8.6vw, 9.5rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.introduction-text {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgba(248, 243, 233, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.introduction-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.introduction-actions a,
.direct-links a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 750;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 31rem);
  margin: 0;
  align-self: center;
  justify-self: end;
  aspect-ratio: 0.8;
  overflow: hidden;
  border-radius: 50% 50% 0 0;
  background: var(--sand);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.72) contrast(0.98);
  mix-blend-mode: multiply;
}

.portrait-frame figcaption {
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  color: rgba(42, 39, 35, 0.65);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 11rem);
  letter-spacing: -0.08em;
}

.portrait-frame.has-fallback .portrait-fallback {
  display: grid;
}

.proof-grid {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  margin-top: clamp(2.5rem, 7vh, 5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(248, 243, 233, 0.24);
  border-bottom: 1px solid rgba(248, 243, 233, 0.24);
}

.proof-item {
  min-height: 8.5rem;
  padding: 1.35rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(248, 243, 233, 0.24);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item p {
  margin-bottom: 1.25rem;
  color: #e2a58e;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.proof-item span {
  margin-top: 0.35rem;
  display: block;
  color: rgba(248, 243, 233, 0.66);
  font-size: 0.8rem;
  line-height: 1.45;
}

.portfolio-status {
  min-height: 0;
  margin: 0;
  padding: 0 var(--page-pad);
  background: var(--paper);
  color: #8b2f26;
}

.portfolio-status:not(:empty) {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.chapters {
  background: var(--forest);
}

.chapter {
  min-height: 145dvh;
}

.chapter-stage {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 2.5rem) var(--page-pad) 3rem max(var(--page-pad), 11rem);
  display: grid;
  grid-template-columns: minmax(6rem, 0.25fr) minmax(18rem, 0.9fr) minmax(16rem, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.chapter-meta {
  align-self: start;
  padding-top: 0.5rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter-meta span:first-child {
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.chapter-copy {
  position: relative;
  z-index: 2;
  max-width: 50rem;
}

.chapter-org {
  margin-bottom: 1.25rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.chapter-summary {
  max-width: 38rem;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.chapter-facts {
  max-width: 38rem;
  margin-bottom: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.chapter-facts div {
  padding: 0.9rem 1rem 0.9rem 0;
}

.chapter-facts div + div {
  padding-left: 1rem;
  border-left: 1px solid currentColor;
}

.chapter-facts dt {
  margin-bottom: 0.3rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter-facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
}

.chapter-evidence {
  max-width: 40rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-evidence li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.35rem;
  border-bottom: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  font-size: 0.88rem;
  line-height: 1.45;
}

.chapter-evidence li::before {
  position: absolute;
  top: 0.95rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.chapter-visual {
  position: relative;
  z-index: 1;
  width: min(30vw, 28rem);
  aspect-ratio: 0.82;
  justify-self: end;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.chapter-visual::before,
.chapter-visual::after {
  position: absolute;
  content: "";
}

.chapter-visual span {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 1;
  letter-spacing: -0.09em;
}

.chapter-copy > *,
.chapter-meta,
.chapter-visual {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 680ms ease, transform 760ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.chapter-copy > *:nth-child(2) { transition-delay: 80ms; }
.chapter-copy > *:nth-child(3) { transition-delay: 140ms; }
.chapter-copy > *:nth-child(4) { transition-delay: 200ms; }
.chapter-copy > *:nth-child(5) { transition-delay: 260ms; }
.chapter-visual { transform: translateY(3rem) scale(0.94); transition-delay: 120ms; }

.chapter.is-entered .chapter-copy > *,
.chapter.is-entered .chapter-meta,
.chapter.is-entered .chapter-visual {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chapter--forest .chapter-stage {
  background: var(--forest);
  color: var(--cream);
}

.chapter--forest .chapter-org,
.chapter--forest .chapter-meta {
  color: #e2a58e;
}

.chapter--forest .chapter-visual {
  border-radius: 48% 48% 0 0;
  background: var(--sand);
  color: var(--forest);
}

.chapter--forest .chapter-visual::after {
  inset: 12%;
  border: 1px solid rgba(23, 54, 47, 0.36);
  border-radius: 50%;
}

.chapter--terracotta .chapter-stage {
  background: var(--terracotta);
  color: var(--cream);
}

.chapter--terracotta .chapter-org,
.chapter--terracotta .chapter-meta {
  color: #f0c2ae;
}

.chapter--terracotta .chapter-visual {
  background: repeating-linear-gradient(135deg, #deb797 0 1.2rem, #ca9879 1.2rem 1.32rem);
  color: var(--terracotta);
}

.chapter--terracotta .chapter-visual::before {
  inset: 18%;
  background: var(--terracotta);
  transform: rotate(10deg);
}

.chapter--terracotta .chapter-visual span {
  color: var(--cream);
}

.chapter--sand .chapter-stage {
  background: var(--sand);
  color: var(--ink);
}

.chapter--sand .chapter-org,
.chapter--sand .chapter-meta {
  color: #7e3e30;
}

.chapter--sand .chapter-visual {
  border-radius: 50%;
  background: var(--forest);
  color: var(--sand);
  transform-origin: center;
}

.chapter--sand .chapter-visual::before {
  inset: -20%;
  border: 1px solid rgba(216, 196, 168, 0.5);
  border-radius: 50%;
}

.chapter--ink .chapter-stage {
  background: var(--night);
  color: #eef0f5;
}

.chapter--ink .chapter-org,
.chapter--ink .chapter-meta {
  color: #d4a877;
}

.chapter--ink .chapter-visual {
  border: 1px solid rgba(238, 240, 245, 0.28);
  background-image: linear-gradient(rgba(238, 240, 245, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 240, 245, 0.1) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  color: #d4a877;
}

.chapter--ink .chapter-visual::after {
  width: 70%;
  height: 2px;
  background: #d4a877;
  transform: rotate(-28deg);
}

.chapter--olive .chapter-stage {
  background: var(--olive);
  color: var(--cream);
}

.chapter--olive .chapter-org,
.chapter--olive .chapter-meta {
  color: #dfc9a3;
}

.chapter--olive .chapter-visual {
  border-radius: 50% 50% 50% 0;
  background: #dfc9a3;
  color: var(--olive);
}

.chapter--olive .chapter-visual::before {
  inset: 14%;
  border: 1px solid rgba(76, 88, 64, 0.45);
  border-radius: inherit;
}

.involvement-section {
  padding: clamp(5rem, 10vw, 9rem) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--paper-deep);
}

.involvement-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.involvement-heading h2,
.capture-copy h2 {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.involvement-list {
  border-top: 1px solid var(--ink);
}

.involvement-item {
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 0.5rem 2rem;
  border-bottom: 1px solid var(--line);
}

.involvement-item p {
  grid-row: 1 / 3;
  margin: 0;
  color: var(--terracotta);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.involvement-item h3 {
  margin-bottom: 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.involvement-item span {
  max-width: 35rem;
  color: var(--muted);
  line-height: 1.6;
}

.capture-section {
  padding: clamp(5rem, 10vw, 9rem) var(--page-pad) calc(clamp(5rem, 10vw, 9rem) + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(24rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--forest);
  color: var(--cream);
}

.capture-copy {
  align-self: start;
}

.capture-copy .overline {
  color: #e2a58e;
}

.capture-copy > p:not(.overline) {
  max-width: 34rem;
  color: rgba(248, 243, 233, 0.7);
  line-height: 1.65;
}

.direct-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-form {
  padding-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field {
  display: grid;
  gap: 0.55rem;
}

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

label {
  color: rgba(248, 243, 233, 0.78);
  font-size: 0.75rem;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(248, 243, 233, 0.36);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 0;
  transition: border-color 180ms ease, background 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 243, 233, 0.38);
}

input:focus,
textarea:focus {
  border-color: #e2a58e;
  background: rgba(248, 243, 233, 0.035);
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

.consent {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  color: rgba(248, 243, 233, 0.65);
  font-weight: 500;
  line-height: 1.5;
}

.consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: #e2a58e;
}

.form-actions {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.button {
  min-height: 3rem;
  border: 1px solid transparent;
  padding: 0 1.2rem;
  appearance: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

.button:active {
  transform: translateY(0) scale(0.99);
}

#status {
  min-height: 1.5rem;
  margin: 0;
  color: rgba(248, 243, 233, 0.68);
  font-size: 0.82rem;
}

#status.success {
  color: #cce7d3;
}

#status.error {
  color: #ffc4b9;
}

.site-footer {
  min-height: 5rem;
  padding: 1.5rem var(--page-pad) calc(1.5rem + env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.72rem;
}

.site-footer span:nth-child(2) {
  color: var(--muted);
  text-align: center;
}

.noscript-note {
  padding: 2rem var(--page-pad);
  background: var(--cream);
}

:focus-visible {
  outline: 3px solid #f0a88a;
  outline-offset: 4px;
}

.is-static .chapter-copy > *,
.is-static .chapter-meta,
.is-static .chapter-visual {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .chapter-progress {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    width: 100%;
    height: 2.75rem;
    padding: 0 var(--page-pad);
    display: flex;
    transform: none;
    overflow-x: auto;
    background: var(--forest);
    scrollbar-width: none;
  }

  .chapter-progress::-webkit-scrollbar {
    display: none;
  }

  .progress-link {
    min-width: max-content;
    min-height: 2.75rem;
    padding: 0.55rem 0.85rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(248, 243, 233, 0.18);
    border-left: 0;
  }

  .progress-link[aria-current="step"] {
    border-top-color: var(--cream);
    transform: none;
  }

  .chapter-stage {
    grid-template-columns: 4rem minmax(0, 1fr) minmax(14rem, 0.55fr);
    gap: 2rem;
    padding-left: var(--page-pad);
  }

  .introduction h1 {
    font-size: clamp(4rem, 9vw, 7rem);
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 4rem;
    --page-pad: clamp(1rem, 5vw, 1.5rem);
  }

  html {
    scroll-padding-top: calc(var(--header-h) + 3rem);
  }

  .site-header {
    min-height: var(--header-h);
    padding-top: env(safe-area-inset-top);
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .wordmark {
    font-size: 1.05rem;
  }

  .header-actions > a:not(.connect-link) {
    display: none;
  }

  .connect-link {
    min-width: 4.8rem;
    min-height: 2.75rem;
  }

  .chapter-progress {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top));
    right: 0;
    left: 0;
    width: 100%;
    height: 2.75rem;
    padding: 0 var(--page-pad);
    display: flex;
    transform: none;
    overflow-x: auto;
    background: color-mix(in srgb, var(--forest) 94%, transparent);
    scrollbar-width: none;
  }

  .chapter-progress::-webkit-scrollbar {
    display: none;
  }

  .progress-link {
    min-width: 3rem;
    min-height: 2.75rem;
    padding: 0.55rem 0.7rem;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(248, 243, 233, 0.18);
    border-left: 0;
  }

  .progress-link span:last-child {
    display: none;
  }

  .progress-link[aria-current="step"] {
    border-top-color: var(--cream);
    transform: none;
  }

  .introduction {
    min-height: auto;
    padding: calc(var(--header-h) + 5.25rem + env(safe-area-inset-top)) var(--page-pad) clamp(2rem, 5vw, 4.5rem);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2.5rem;
  }

  .introduction-copy {
    align-self: start;
  }

  .introduction h1 {
    max-width: 8ch;
    font-size: clamp(3.9rem, 19vw, 6.3rem);
    line-height: 0.84;
  }

  .introduction-text {
    font-size: 1rem;
  }

  .portrait-frame {
    width: min(82vw, 24rem);
    justify-self: center;
  }

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

  .proof-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 243, 233, 0.24);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .chapter {
    min-height: auto;
  }

  .chapter-stage {
    position: relative;
    top: auto;
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    overflow: hidden;
  }

  .chapter-meta {
    display: flex;
    justify-content: space-between;
  }

  .chapter h2 {
    max-width: 8ch;
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .chapter-summary {
    font-size: 1rem;
  }

  .chapter-facts {
    grid-template-columns: 1fr;
  }

  .chapter-facts div + div {
    padding-left: 0;
    border-top: 1px solid currentColor;
    border-left: 0;
  }

  .chapter-visual {
    grid-row: 2;
    width: min(72vw, 22rem);
    justify-self: center;
  }

  .chapter-copy {
    grid-row: 3;
  }

  .involvement-section,
  .capture-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .involvement-heading {
    position: static;
  }

  .involvement-item {
    grid-template-columns: 1fr;
  }

  .involvement-item p {
    grid-row: auto;
  }

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

  .full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 3.25rem;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer span:nth-child(2) {
    display: none;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .introduction {
    min-height: auto;
  }

  .portrait-frame {
    max-height: 78vh;
  }

  .chapter-stage {
    position: relative;
    top: auto;
    min-height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .chapter {
    min-height: auto;
  }

  .chapter-stage,
  .involvement-heading {
    position: relative;
    top: auto;
  }

  .chapter-copy > *,
  .chapter-meta,
  .chapter-visual {
    opacity: 1;
    transform: none;
  }
}
