:root {
  --bg: #f5efe6;
  --paper: #fcf8f2;
  --paper-strong: #fffdf9;
  --ink: #171412;
  --muted: #5b5148;
  --gold: #9b792d;
  --gold-soft: #cfb77b;
  --rust: #7d2818;
  --forest: #1e4036;
  --line: rgba(23, 20, 18, 0.1);
  --line-strong: rgba(23, 20, 18, 0.18);
  --shadow: 0 14px 34px rgba(23, 20, 18, 0.08);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino,
    Georgia, serif;
  --sans: "Avenir Next", Avenir, Montserrat, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  min-width: 0;
}

.brand span {
  white-space: nowrap;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(23, 20, 18, 0.08);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.hero-content,
.section-inner,
.page-hero-inner,
.metrics,
.card-grid,
.detail-grid,
.snapshot-grid,
.info-grid,
.contact-grid,
.footer-columns,
.footer-disclosure,
.breadcrumb {
  width: min(64rem, 100%);
  margin: 0 auto;
}

.hero-content {
  color: var(--ink);
}

.hero {
  padding: 2rem 1.5rem 1rem;
}

.hero-shell {
  width: min(64rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-shell .hero-content {
  width: auto;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-media {
  position: relative;
  min-height: 19rem;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: none;
}

.hero-image,
.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-backdrop {
  background:
    linear-gradient(180deg, rgba(19, 14, 10, 0.08) 0%, rgba(19, 14, 10, 0.18) 100%);
}

.page-hero {
  padding: 2rem 1.5rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: grid;
  gap: 1rem;
}

.page-hero h1,
.hero h1,
.section-heading h2,
.story-copy h2,
.support h2,
.site-footer h2,
.intro-grid h2,
.page-callout h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  max-width: 12ch;
  line-height: 1.02;
}

.page-hero h1,
.section-heading h2,
.story-copy h2,
.support h2,
.site-footer h2,
.intro-grid h2,
.page-callout h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
}

.eyebrow,
.section-kicker,
.panel-label,
.breadcrumb,
.micro-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy,
.lede,
.footer-copy {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 34rem;
  margin-top: 0;
  color: var(--muted);
}

.lede {
  max-width: 38rem;
  color: var(--muted);
}

.narrow-copy {
  width: min(42rem, 100%);
}

.section-inner.narrow-copy {
  margin: 0 auto 0 0;
}

.top-gap-small {
  margin-top: 1rem;
}

.hero-actions,
.page-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.support-actions {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  justify-items: start;
}

.support-actions .button {
  justify-self: start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #fff8ea;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #876722;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(23, 20, 18, 0.34);
  background: rgba(255, 255, 255, 0.5);
}

.button-light {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: rgba(23, 20, 18, 0.34);
  background: rgba(255, 255, 255, 0.5);
}

.intro-band,
.section,
.site-footer {
  padding: 2.5rem 1.5rem;
}

.home-intro {
  padding-top: 1.25rem;
}

.trust-strip {
  width: min(64rem, 100%);
  margin: 0 auto;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip strong {
  color: var(--ink);
  font-weight: 700;
}

.intro-grid,
.mission-layout,
.story-layout,
.support-shell,
.page-callout,
.contact-grid,
.info-grid,
.footer-columns {
  display: grid;
  gap: 2rem;
}

.intro-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.intro-grid p:last-child,
.mission-copy p,
.story-copy p,
.support-shell p,
.program-card p,
.detail-card p,
.notice-card p,
.contact-card p,
.info-card p,
.copy-stack p,
.list-copy li,
.footer-links span,
.footer-disclosure p,
.mini-note {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.intro-grid p:last-child,
.mission-copy p,
.story-copy p,
.support-shell p,
.program-card p,
.detail-card p,
.notice-card p,
.contact-card p,
.info-card p,
.copy-stack p,
.list-copy li {
  font-size: 1.02rem;
}

.section-heading {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto 2rem;
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  text-align: left;
}

.section-heading h2 {
  max-width: 22ch;
}

.section-heading h2.single-line-heading {
  max-width: none;
  white-space: nowrap;
}

.section-heading .section-kicker {
  color: var(--gold);
}

@media (max-width: 640px) {
  .section-heading h2.single-line-heading {
    white-space: normal;
  }
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  padding: 0 1.5rem 0;
}

.metrics article,
.program-card,
.detail-card,
.snapshot-card,
.notice-card,
.contact-card,
.info-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.metrics article {
  padding: 0;
}

.metrics strong {
  display: inline;
  margin-bottom: 0;
  font-size: 1rem;
  font-family: var(--sans);
}

.metrics span {
  color: var(--muted);
  font-size: 0.96rem;
}

.mission-layout {
  grid-template-columns: 1fr;
  align-items: start;
}

.mission-copy,
.copy-stack {
  display: grid;
  gap: 1rem;
}

.mission-panel,
.notice-panel {
  padding: 1rem 0 0 1rem;
  background: transparent;
  border: 0;
  border-left: 2px solid rgba(155, 121, 45, 0.45);
  border-radius: 0;
}

.mission-panel ul,
.notice-panel ul,
.list-tight,
.legal-list {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.85;
}

.card-grid,
.detail-grid,
.snapshot-grid,
.contact-grid,
.info-grid {
  display: grid;
  gap: 0;
}

.card-grid,
.detail-grid,
.snapshot-grid {
  grid-template-columns: 1fr;
}

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

.facts-panel,
.link-panel {
  width: min(64rem, 100%);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.facts-list,
.link-list {
  display: grid;
  gap: 0;
}

.facts-row,
.link-row {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.facts-row {
  grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr);
  align-items: start;
}

.facts-row:last-child,
.link-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.facts-row:first-child,
.link-row:first-child {
  padding-top: 0;
}

.facts-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.facts-value,
.link-row p {
  margin: 0;
  line-height: 1.75;
  color: var(--ink);
}

.facts-value {
  font-size: 1.02rem;
}

.link-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
}

.link-row h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  font-family: var(--serif);
}

.inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.1rem 0 0;
}

.inline-facts span {
  display: inline-flex;
  gap: 0.35rem;
  align-items: baseline;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.inline-facts strong {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card,
.detail-card,
.contact-card,
.info-card,
.notice-card {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.program-card h3,
.detail-card h3,
.snapshot-card strong,
.contact-card h3,
.info-card h3,
.notice-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  line-height: 1.08;
}

.program-card h3,
.contact-card h3,
.info-card h3,
.notice-card h3 {
  font-size: 1.32rem;
}

.detail-card h3 {
  font-size: 1.45rem;
}

.program-card a,
.detail-card a,
.contact-card a,
.info-card a,
.footer-links a,
.breadcrumb a,
.inline-link {
  font-weight: 700;
  text-decoration: none;
}

.program-card a:hover,
.program-card a:focus-visible,
.detail-card a:hover,
.detail-card a:focus-visible,
.contact-card a:hover,
.contact-card a:focus-visible,
.info-card a:hover,
.info-card a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.breadcrumb a:hover,
.breadcrumb a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.program-meta,
.detail-linkline,
.micro-copy {
  font-size: 0.95rem;
}

.detail-image {
  width: 100%;
  margin: 0 0 1rem;
  border-radius: 0.7rem;
  height: 16rem;
  object-fit: cover;
}

.detail-stats,
.pill-list,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-stats span,
.pill-list span,
.tag-row span {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.snapshot-card {
  margin: 0;
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.snapshot-card img {
  width: 100%;
  height: 17rem;
  object-fit: cover;
  border-radius: 0.7rem;
}

.snapshot-card figcaption {
  padding: 0.9rem 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.snapshot-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 1.15rem;
}

.story-layout {
  grid-template-columns: 1fr;
  align-items: center;
}

.story-image-frame {
  overflow: hidden;
  border-radius: 0.9rem;
  box-shadow: none;
}

.story-image-frame img {
  width: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.support-shell,
.page-callout {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0 0;
  background: transparent;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.feature-stack {
  width: min(64rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--line);
}

.feature-row:first-child {
  padding-top: 0;
}

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

.feature-media {
  overflow: hidden;
  border-radius: 0.8rem;
  box-shadow: none;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-copy {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.feature-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.99rem;
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.feature-meta span {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.3rem;
}

.feature-actions a {
  text-decoration: none;
  font-weight: 700;
}

.feature-actions a:hover,
.feature-actions a:focus-visible {
  text-decoration: underline;
}

.plain-grid {
  width: min(64rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 0.5rem;
}

.plain-block {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.plain-block h3 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.plain-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.support-shell p,
.support-note,
.page-callout p {
  color: var(--muted);
}

.support-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.support-list div {
  display: grid;
  gap: 0.25rem;
}

.support-list strong {
  font-size: 1rem;
}

.support-list span {
  color: var(--muted);
}

.support-note,
.support-disclosure {
  margin: 0;
  line-height: 1.7;
}

.support-disclosure {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  padding-top: 0.35rem;
}

.inline-light-link {
  color: var(--rust);
  font-weight: 700;
}

.inline-light-link:hover,
.inline-light-link:focus-visible {
  text-decoration: underline;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 1.5rem;
  color: var(--muted);
}

.contact-card,
.info-card {
  display: grid;
  gap: 0.75rem;
}

.info-card ul {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.8;
}

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

.footer-columns {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.85rem;
  align-items: start;
}

.footer-block {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.footer-links a {
  font-weight: 700;
}

.footer-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-disclosure {
  display: grid;
  gap: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.footer-disclosure p {
  font-size: 0.94rem;
}

.section-tight {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.editorial-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.editorial-links a {
  font-weight: 700;
  text-decoration: none;
}

.editorial-links a:hover,
.editorial-links a:focus-visible {
  text-decoration: underline;
}

.editorial-figure {
  margin: 0 auto;
}

.editorial-figure img {
  width: 100%;
  max-height: 20rem;
  object-fit: cover;
  border-radius: 0.35rem;
}

.program-list {
  width: min(64rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.program-item {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.program-item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.15;
}

.program-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-section {
  display: grid;
  gap: 1rem;
}

.legal-section h3,
.subheading {
  margin: 0;
  font-size: 1.35rem;
  font-family: var(--serif);
}

.two-column-list {
  columns: 2;
  column-gap: 2rem;
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.85;
}

.utility-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.utility-card {
  width: min(38rem, 100%);
  padding: 2rem;
  border-radius: 0.8rem;
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

@media (max-width: 980px) {
  .intro-grid,
  .mission-layout,
  .story-layout,
  .support-shell,
  .page-callout,
  .hero-shell,
  .feature-row,
  .feature-row.reverse,
  .card-grid,
  .detail-grid,
  .snapshot-grid,
  .metrics,
  .contact-grid,
  .info-grid,
  .plain-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media {
    min-height: 22rem;
  }

  .two-column-list {
    columns: 1;
  }

  .facts-row,
  .link-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-copy,
  .lede,
  .intro-grid p:last-child,
  .mission-copy p,
  .story-copy p,
  .support-shell p,
  .program-card p,
  .detail-card p,
  .notice-card p,
  .contact-card p,
  .info-card p,
  .copy-stack p {
    font-size: 0.98rem;
  }

  .intro-band,
  .section,
  .site-footer,
  .page-hero,
  .hero {
    padding: 2.5rem 1rem;
  }

  .metrics {
    padding: 0 1rem 1rem;
  }

  .support-shell,
  .page-callout {
    padding: 1rem 0 0;
  }
}
