:root {
  --ink: #1a2738;
  --navy: #223146;
  --gold: #a08958;
  --gold-soft: #c4ae8c;
  --ivory: #f5f1e8;
  --paper: #fbf9f4;
  --slate: #5b6573;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1140px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.narrow {
  max-width: 760px;
}

/* Focus + skip link */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.75rem 1rem;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* Eyebrows / labels */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 1.4rem;
}
.eyebrow--gold {
  color: var(--gold-soft);
}

.rule {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin: 2rem 0;
}
.rule--gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  height: 1px;
  opacity: 0.7;
  max-width: 320px;
  margin-inline: auto;
}

.fineprint {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  color: var(--slate);
  margin-top: 2.5rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.btn--navy {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn--navy:hover {
  background: var(--navy);
}
.btn--ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(196, 174, 140, 0.5);
}
.btn--ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26, 39, 56, 0.3);
}
.btn--ghost-dark:hover {
  border-color: var(--ink);
}
.btn--block {
  width: 100%;
  padding-block: 1.1rem;
}
.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.68rem;
}

.textlink {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.textlink:hover {
  color: var(--gold);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 39, 56, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(196, 174, 140, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ivory);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
}
.brand-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 241, 232, 0.8);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-soft);
  border-color: var(--gold);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-soft);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Hero */
.hero--dark {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: clamp(5rem, 14vw, 10rem) 0 clamp(4rem, 10vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(160, 137, 88, 0.16), transparent 60%);
  pointer-events: none;
}
.hero--short {
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-wordmark {
  font-size: clamp(3.2rem, 12vw, 8rem);
  letter-spacing: 0.16em;
  font-weight: 400;
  color: var(--gold-soft);
  margin: 0.4rem 0 0;
  text-indent: 0.16em;
}
.hero-wordmark--sm {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
}
.hero-byline {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
  margin: 1.2rem 0 0;
}
.hero-tagline {
  max-width: 680px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ivory);
  margin: 2rem 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.6rem;
}

/* Sections */
.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}
.section--paper {
  background: var(--paper);
}
.section--ivory {
  background: var(--ivory);
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}
.section-title--sm {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.lede {
  max-width: 60ch;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--slate);
  line-height: 1.6;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26, 39, 56, 0.12);
  border: 1px solid rgba(26, 39, 56, 0.12);
  margin-top: 3.5rem;
}
.stat {
  background: var(--paper);
  padding: 2.4rem 1.8rem;
}
.stat-figure {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.stat-unit {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0.6rem 0 1rem;
}
.stat-label {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.3rem;
}
.stat-note {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
}

/* Parts list (home) */
.parts {
  list-style: none;
  margin: 3rem 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(26, 39, 56, 0.14);
}
.part {
  display: flex;
  gap: 1.4rem;
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid rgba(26, 39, 56, 0.14);
}
.parts .part:nth-child(odd) {
  padding-right: 2.5rem;
  border-right: 1px solid rgba(26, 39, 56, 0.14);
}
.parts .part:nth-child(even) {
  padding-left: 2.5rem;
}
.part-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 0.35rem;
}
.part-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.part-summary {
  color: var(--slate);
  margin: 0;
  font-size: 0.98rem;
}
.parts--index .part {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  align-items: center;
}
.parts--index .part-num {
  padding-top: 0;
}
.parts--index .part-title {
  margin-bottom: 0;
}

/* Bands */
.band {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.band--navy {
  background: var(--navy);
  color: var(--ivory);
}
.commitments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.commitments--light {
  margin-top: 3rem;
}
.commitment-title {
  font-size: 1.35rem;
  color: var(--gold-soft);
  margin-bottom: 0.7rem;
}
.commitment-title--dark {
  color: var(--ink);
}
.commitment-detail {
  color: rgba(245, 241, 232, 0.82);
  margin: 0;
}
.commitment-detail--dark {
  color: var(--slate);
}

/* Pathways */
.pathways {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.pathway {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(26, 39, 56, 0.14);
  padding: 2.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pathway:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px -28px rgba(26, 39, 56, 0.55);
}
.pathway-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.pathway-title {
  font-size: 1.6rem;
  margin: 1rem 0 0.8rem;
}
.pathway-detail {
  color: var(--slate);
}
.pathway-go {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Inscription */
.inscription {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: clamp(5rem, 11vw, 8rem) 0;
}
.inscription-inner {
  max-width: 740px;
}
.inscription blockquote {
  margin: 2.5rem 0;
}
.inscription-verse {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--gold-soft);
  line-height: 1.4;
  margin: 0 0 1.2rem;
}
.inscription-cite {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.6);
  font-style: normal;
}
.inscription-line {
  font-size: 1.1rem;
  color: rgba(245, 241, 232, 0.85);
  max-width: 56ch;
  margin: 2.5rem auto 0;
}

/* Page heads */
.pagehead--navy {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.pagehead-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.pagehead-lede {
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(245, 241, 232, 0.82);
}

/* Prose */
.prose {
  max-width: 64ch;
}
.prose h2 {
  font-size: 1.5rem;
  margin: 2.2rem 0 0.8rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose--light {
  color: rgba(245, 241, 232, 0.85);
  max-width: 70ch;
}

/* Program walkthrough */
.walkthrough {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(26, 39, 56, 0.14);
}
.walk-part {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(26, 39, 56, 0.14);
}
.walk-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
}
.walk-title {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}
.walk-detail {
  color: var(--slate);
  max-width: 62ch;
  margin: 0;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

/* Two-col + scorecard */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.scorecard {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.scorecard li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(26, 39, 56, 0.12);
  color: var(--ink);
}
.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 1px solid var(--gold);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* Three-up */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.upcard {
  background: var(--ivory);
  border: 1px solid rgba(26, 39, 56, 0.14);
  border-top: 3px solid var(--gold);
  padding: 2.2rem;
}
.upcard-title {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.upcard p {
  color: var(--slate);
  margin: 0;
}

/* Forms */
.form-wrap {
  max-width: 760px;
  margin-inline: auto;
}
.form-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ivory);
  margin-bottom: 1rem;
}
.form-note {
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.95rem;
  max-width: 58ch;
  margin-bottom: 2rem;
}
.form {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.optional {
  color: rgba(245, 241, 232, 0.5);
  text-transform: none;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ivory);
  background: rgba(245, 241, 232, 0.05);
  border: 1px solid rgba(196, 174, 140, 0.35);
  padding: 0.85rem 0.95rem;
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea {
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 241, 232, 0.4);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 241, 232, 0.08);
  outline: none;
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #c97a6d;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c4ae8c' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field select option {
  color: #1a2738;
}
.field--check {
  margin-top: 0.4rem;
}
.checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  flex-direction: row;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: rgba(245, 241, 232, 0.88);
}
.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.field-error {
  color: #e0a99e;
  font-size: 0.85rem;
  font-family: var(--sans);
}
.form-error-banner {
  background: rgba(201, 122, 109, 0.15);
  border: 1px solid rgba(201, 122, 109, 0.5);
  color: #e7c2ba;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-success {
  border: 1px solid var(--gold);
  background: rgba(160, 137, 88, 0.12);
  padding: 2.5rem;
  text-align: center;
}
.form-success-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}
.form-success p:last-child {
  color: rgba(245, 241, 232, 0.8);
  margin: 0;
}

/* Contact */
.contact-block {
  text-align: center;
}
.contact-line {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
}
.contact-line a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.contact-org {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(245, 241, 232, 0.75);
  padding: clamp(3rem, 6vw, 4.5rem) 0 3rem;
  border-top: 1px solid rgba(196, 174, 140, 0.18);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.footer-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.footer-line {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ivory);
  margin: 0;
  line-height: 1.4;
}
.footer-contact {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--gold-soft);
}
.footer-contact:hover {
  color: var(--gold);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav a {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 241, 232, 0.7);
}
.footer-nav a:hover {
  color: var(--gold-soft);
}
.footer-eho {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}
.eho-logo {
  width: 52px;
  height: 52px;
  color: var(--gold-soft);
}
.eho-statement {
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.6);
  margin: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Admin */
body.admin {
  background: var(--paper);
}
.admin-header {
  background: var(--ink);
  color: var(--ivory);
  padding: 1.1rem 0;
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header .brand-name,
.admin-header .brand-sub {
  color: var(--ivory);
}
.admin-header .textlink {
  color: var(--gold-soft);
  border-color: var(--gold);
}
.admin-main {
  padding: 3rem 0 5rem;
}
.admin-section {
  margin-bottom: 3.5rem;
}
.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 1rem;
}
.admin-section-head h2 {
  font-size: 1.5rem;
}
.count {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gold);
  margin-left: 0.4rem;
}
.admin-empty {
  color: var(--slate);
  font-style: italic;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(26, 39, 56, 0.14);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #fff;
}
.admin-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--ivory);
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(26, 39, 56, 0.14);
  white-space: nowrap;
}
.admin-table td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(26, 39, 56, 0.08);
  vertical-align: top;
}
.admin-table tr:hover td {
  background: var(--paper);
}
.nowrap {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--slate);
}
.cell-message {
  min-width: 280px;
  max-width: 420px;
}

/* Responsive */
@media (max-width: 880px) {
  .stats,
  .commitments,
  .pathways,
  .three-up,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .parts {
    grid-template-columns: 1fr;
  }
  .parts .part:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
  .parts .part:nth-child(even) {
    padding-left: 0;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .walk-part {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid rgba(196, 174, 140, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open {
    max-height: 340px;
  }
  .nav-links li {
    border-top: 1px solid rgba(196, 174, 140, 0.12);
  }
  .nav-links a {
    display: block;
    padding: 1rem var(--gutter);
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
