:root {
  color-scheme: dark;
  --ink: #170d0f;
  --ink-soft: #2a191c;
  --paper: #f4f0ea;
  --paper-deep: #e8e0d5;
  --white: #fffdf9;
  --muted: #c7bcb5;
  --muted-dark: #6e6260;
  --scarlet: #a20f1c;
  --scarlet-bright: #d62c25;
  --ember: #ef5a27;
  --gold: #e9b96b;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(23, 13, 15, 0.14);
  --radius: 1.25rem;
  --shell: min(1180px, calc(100vw - 3rem));
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Manrope", "Avenir Next", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: -0.008em;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line-dark);
  background: rgba(18, 9, 10, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.wordmark-logo {
  width: 3.75rem;
  height: 3.75rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 1.1rem rgba(214, 44, 37, 0.28));
}

.wordmark-copy {
  display: grid;
  line-height: 1.08;
}

.wordmark-copy strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.wordmark-copy span {
  margin-top: 0.32rem;
  color: #d4c9c3;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.primary-nav a {
  position: relative;
  color: #e7dfdb;
  font-size: 0.9rem;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.28rem 0;
  background: white;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 47rem;
  overflow: hidden;
  place-items: center;
  background: #0c0809;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 6, 7, 0.98) 0%, rgba(8, 6, 7, 0.87) 38%, rgba(8, 6, 7, 0.3) 72%, rgba(8, 6, 7, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 6, 7, 0.62), transparent 25%, transparent 72%, rgba(8, 6, 7, 0.9));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19rem;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  padding-block: 10rem 6.5rem;
}

.hero-copy {
  max-width: 50rem;
}

.eyebrow,
.kicker {
  margin: 0 0 1.15rem;
  color: var(--scarlet);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  color: var(--white);
}

.eyebrow span {
  width: 2.5rem;
  height: 1px;
  margin-right: 0.9rem;
  background: var(--ember);
}

.hero-coming {
  display: inline-flex;
  max-width: 46rem;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.55rem;
  margin: -0.3rem 0 1.5rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(233, 185, 107, 0.34);
  border-left: 3px solid var(--scarlet-bright);
  border-radius: 0.55rem;
  background: rgba(23, 13, 15, 0.62);
  color: #f7eee6;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.hero-coming strong {
  color: var(--gold);
  font-size: 0.92em;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-coming span {
  color: rgba(255, 253, 249, 0.56);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 7vw, 6.75rem);
}

h1 em,
h2 em {
  color: inherit;
  font-style: normal;
  font-weight: 600;
}

.hero-lede {
  max-width: 40rem;
  margin: 1.8rem 0 0;
  color: #d9cfca;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.3rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.primary-nav a:focus-visible,
.faq-list summary:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--scarlet-bright), #a20f1c);
  box-shadow: 0 0.9rem 2.5rem rgba(162, 15, 28, 0.28);
  color: white;
}

.button-primary:hover {
  background: linear-gradient(135deg, #ed3a31, #b81522);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  backdrop-filter: blur(8px);
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.hero-principles {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(16, 9, 11, 0.62);
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.hero-principles > p {
  margin: 0 0 0.7rem;
  color: #d9cdc8;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-principles ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-principles li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-block: 0.75rem;
  border-top: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 1.25rem;
}

.hero-principles li span {
  color: var(--white);
  font-family: var(--body);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.signal-bar {
  border-block: 1px solid var(--line-dark);
  background: #130b0d;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid p {
  position: relative;
  margin: 0;
  padding: 1.15rem 1rem;
  color: #dfd5d0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.signal-grid p + p {
  border-left: 1px solid var(--line-dark);
}

.section {
  padding-block: clamp(5.5rem, 9vw, 8.5rem);
}

.programs,
.expectations,
.questions {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  column-gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3.75rem;
}

.section-heading .kicker {
  grid-column: 1 / -1;
}

.section-heading h2,
.approach-copy h2,
.commitments-heading h2,
.closing h2 {
  font-size: clamp(2.55rem, 5vw, 4.75rem);
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted-dark);
  font-size: 1.07rem;
}

.section-heading.compact {
  display: block;
  max-width: 47rem;
}

.section-heading.compact > p:last-child {
  max-width: 39rem;
  margin-top: 1.4rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.program-card {
  position: relative;
  min-height: 30rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fffaf4;
}

.program-card::after {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(162, 15, 28, 0.25);
  border-radius: 50%;
  content: "";
}

.program-card.featured {
  background: var(--ink);
  color: white;
  transform: translateY(-1.2rem);
}

.program-card .card-number {
  display: inline-flex;
  min-width: 2.6rem;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(162, 15, 28, 0.28);
  border-radius: 50%;
  color: var(--scarlet);
  font-size: 0.74rem;
  font-weight: 900;
}

.program-card.featured .card-number {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.program-card h3 {
  min-height: 4.2rem;
  margin: 2.2rem 0 1rem;
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 1.12;
}

.program-card p {
  margin: 0 0 1.7rem;
  color: var(--muted-dark);
}

.program-card.featured p,
.program-card.featured li {
  color: #cec1bc;
}

.program-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.2rem;
  border-top: 1px solid var(--line-light);
  color: #4b4141;
  font-size: 0.9rem;
  font-weight: 700;
}

.program-card.featured li {
  border-color: var(--line-dark);
}

.program-card li::before {
  position: absolute;
  top: 1.32rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--ember);
  content: "";
}

.future-services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 18%, rgba(239, 90, 39, 0.2), transparent 27%),
    radial-gradient(circle at 91% 84%, rgba(162, 15, 28, 0.32), transparent 32%),
    linear-gradient(135deg, #12090a 0%, #260b0f 58%, #3c070d 100%);
}

.future-services::before {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(233, 185, 107, 0.19);
  border-radius: calc(var(--radius) + 0.4rem);
  content: "";
  pointer-events: none;
}

.future-year {
  position: absolute;
  top: 50%;
  right: -0.03em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: clamp(12rem, 34vw, 35rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.7;
  pointer-events: none;
  transform: translateY(-46%);
  user-select: none;
}

.future-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.future-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.future-badge span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0.45rem rgba(239, 90, 39, 0.14);
}

.future-intro h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.future-intro > p:last-child {
  max-width: 43rem;
  margin: 1.8rem 0 0;
  color: #d8cbc6;
  font-size: 1.08rem;
}

.future-programs {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.future-card {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-block: 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.future-card > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(233, 185, 107, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.future-card p {
  margin: 0 0 0.35rem;
  color: #bfaaa4;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.future-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.15;
}

.future-note {
  margin: 1.4rem 0 0;
  color: #b9aaa5;
  font-size: 0.88rem;
}

.approach {
  position: relative;
  overflow: hidden;
  background: #170d0f;
}

.approach::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  content: "";
  background:
    radial-gradient(circle at 18% 35%, rgba(214, 44, 37, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(128, 9, 20, 0.35), transparent 70%);
}

.approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.kicker-light {
  color: var(--white);
}

.approach-statement blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.65rem);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.approach-copy {
  padding: clamp(2rem, 5vw, 4rem);
  border-left: 1px solid var(--line-dark);
}

.approach-copy h2 {
  margin-bottom: 2rem;
}

.approach-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.journey {
  counter-reset: steps;
  border-top: 1px solid var(--line-light);
}

.journey-step {
  display: grid;
  grid-template-columns: 5rem minmax(12rem, 0.65fr) minmax(18rem, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding-block: 1.65rem;
  border-bottom: 1px solid var(--line-light);
}

.journey-step > span {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(162, 15, 28, 0.25);
  border-radius: 50%;
  color: var(--scarlet);
  font-size: 0.76rem;
  font-weight: 900;
}

.journey-step > div {
  display: contents;
}

.journey-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.journey-step p {
  margin: 0;
  color: var(--muted-dark);
}

.commitments {
  background: #3c070d;
  color: white;
}

.commitments-heading {
  max-width: 50rem;
  margin-bottom: 3.5rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.commitment-grid article {
  padding: 2rem 1.7rem 2.3rem;
}

.commitment-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.commitment-grid article > span {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.commitment-grid h3 {
  margin: 1.35rem 0 0.75rem;
  font-family: var(--display);
  font-size: 1.65rem;
}

.commitment-grid p {
  margin: 0;
  color: #d8c5c3;
  font-size: 0.94rem;
}

.questions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--scarlet);
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 43rem;
  margin: -0.3rem 3rem 1.8rem 0;
  color: var(--muted-dark);
}

.contact {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 90, 39, 0.2), transparent 28%),
    linear-gradient(135deg, #16090c 0%, #2a0d12 54%, #12090a 100%);
}

.contact::after {
  position: absolute;
  right: -7rem;
  bottom: -15rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(233, 185, 107, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1;
}

.contact-intro h2 em {
  color: inherit;
  font-style: normal;
  font-weight: 600;
}

.contact-intro > p:last-child {
  max-width: 31rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.contact-item {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contact-label {
  margin: 0 0 1.1rem;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.25;
}

.contact-item h3 a {
  transition: color 160ms ease;
}

.contact-item h3 a:hover,
.contact-item h3 a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--white);
}

.contact-item > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-link {
  color: var(--white);
  font-weight: 800;
  transition: color 160ms ease;
}

.contact-email {
  overflow-wrap: anywhere;
}

.closing {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 10rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(239, 90, 39, 0.22), transparent 24%),
    radial-gradient(circle at 72% 60%, rgba(162, 15, 28, 0.24), transparent 42%),
    #12090a;
}

.closing-inner {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.closing h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.closing p:not(.kicker) {
  max-width: 46rem;
  margin: 1.5rem auto 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding-top: 4.5rem;
  border-top: 1px solid var(--line-dark);
  background: #0b0708;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.footer-grid > div > p {
  max-width: 33rem;
  margin: 1.35rem 0 0;
  color: #a99d98;
}

.footer-wordmark .wordmark-logo {
  width: 5.25rem;
  height: 5.25rem;
}

.footer-grid nav {
  display: grid;
  gap: 0.7rem;
}

.footer-grid nav a {
  color: #d8ceca;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-grid nav a:hover {
  color: white;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line-dark);
}

.legal p {
  margin: 0;
  color: #857a77;
  font-size: 0.78rem;
}

.emergency-alert {
  border-top: 3px solid #ff7c82;
  border-bottom: 3px solid #710611;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 25%, transparent 75%, rgba(255, 255, 255, 0.08)),
    #b70919;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 -1.2rem 3.5rem rgba(183, 9, 25, 0.22);
}

.emergency-alert-inner {
  display: flex;
  min-height: 9rem;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding-block: 1.5rem;
}

.emergency-symbol {
  flex: 0 0 auto;
  font-size: clamp(3.4rem, 6vw, 5.25rem);
  line-height: 1;
  filter: drop-shadow(0 0.35rem 0.65rem rgba(60, 0, 6, 0.35));
}

.emergency-copy {
  display: grid;
  gap: 0.15rem;
}

.emergency-copy p {
  margin: 0;
  color: #ffe6e7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.emergency-copy strong {
  color: var(--white);
  font-size: clamp(1.65rem, 3.6vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.emergency-copy a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.12em;
}

.emergency-copy a:hover,
.emergency-copy a:focus-visible {
  color: #fff1b8;
}

.crisis-support {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 12% 50%, rgba(84, 210, 193, 0.14), transparent 24%),
    linear-gradient(115deg, #172843, #24264e 58%, #18223b);
}

.crisis-support-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  padding-block: 1.5rem;
}

.crisis-number {
  display: inline-grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border: 2px solid #79dfd1;
  border-radius: 50%;
  color: #b8fff5;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  box-shadow: 0 0 1.5rem rgba(84, 210, 193, 0.15);
}

.crisis-copy {
  display: grid;
  gap: 0.15rem;
}

.crisis-copy strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.crisis-copy p {
  margin: 0;
  color: #c7d8e8;
  font-size: 0.92rem;
}

.crisis-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.crisis-actions a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.crisis-actions a:hover,
.crisis-actions a:focus-visible {
  border-color: #b8fff5;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.crisis-actions .crisis-action-primary {
  border-color: #79dfd1;
  background: #79dfd1;
  color: #102139;
}

.crisis-actions .crisis-action-primary:hover,
.crisis-actions .crisis-action-primary:focus-visible {
  border-color: #b8fff5;
  background: #b8fff5;
}

.local-crisis-support {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 88% 50%, rgba(233, 185, 107, 0.12), transparent 25%),
    linear-gradient(115deg, #101b2b, #182137 58%, #111827);
}

.local-crisis-support-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  padding-block: 1.5rem;
}

.local-crisis-mark {
  display: inline-grid;
  min-width: 4.4rem;
  min-height: 4.4rem;
  padding-inline: 0.65rem;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: #ffe4ad;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 0 1.5rem rgba(233, 185, 107, 0.12);
}

.local-crisis-copy {
  display: grid;
  gap: 0.15rem;
}

.local-crisis-copy strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.local-crisis-copy p {
  margin: 0;
  color: #cbd3df;
  font-size: 0.92rem;
}

.local-crisis-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.local-crisis-actions a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.local-crisis-actions a:hover,
.local-crisis-actions a:focus-visible {
  border-color: #ffe4ad;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.local-crisis-actions .local-crisis-action-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #182137;
}

.local-crisis-actions .local-crisis-action-primary:hover,
.local-crisis-actions .local-crisis-action-primary:focus-visible {
  border-color: #ffe4ad;
  background: #ffe4ad;
}

.meeting-support {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 12% 50%, rgba(183, 9, 25, 0.16), transparent 25%),
    linear-gradient(115deg, #1b1011, #241416 58%, #130c0d);
}

.meeting-support-ca {
  background:
    radial-gradient(circle at 88% 50%, rgba(97, 191, 226, 0.18), transparent 25%),
    linear-gradient(115deg, #0e1722, #16283a 58%, #0b121b);
}

.meeting-support-ha {
  background:
    radial-gradient(circle at 12% 50%, rgba(224, 142, 72, 0.18), transparent 25%),
    linear-gradient(115deg, #1b120d, #342116 58%, #140d0a);
}

.meeting-support-cr {
  background:
    radial-gradient(circle at 88% 50%, rgba(155, 122, 219, 0.2), transparent 25%),
    linear-gradient(115deg, #140f1d, #271b38 58%, #100b18);
}

.meeting-support-food {
  background:
    radial-gradient(circle at 12% 50%, rgba(121, 183, 64, 0.2), transparent 25%),
    linear-gradient(115deg, #0d1810, #172a1b 58%, #0a120c);
}

.meeting-support-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  padding-block: 1.5rem;
}

.meeting-support-mark {
  display: inline-grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border: 2px solid #ef6a75;
  border-radius: 50%;
  color: #ffd7da;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 0 1.5rem rgba(183, 9, 25, 0.18);
}

.meeting-support-copy {
  display: grid;
  gap: 0.15rem;
}

.meeting-support-copy strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.25;
}

.meeting-support-copy p {
  margin: 0;
  color: #dac9ca;
  font-size: 0.92rem;
}

.meeting-support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.meeting-support-actions a {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.meeting-support-actions a:hover,
.meeting-support-actions a:focus-visible {
  border-color: #ffd7da;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.meeting-support-actions .meeting-support-action-primary {
  border-color: #ef6a75;
  background: #ef6a75;
  color: #241013;
}

.meeting-support-actions .meeting-support-action-primary:hover,
.meeting-support-actions .meeting-support-action-primary:focus-visible {
  border-color: #ffd7da;
  background: #ffd7da;
}

.meeting-support-ca .meeting-support-mark {
  border-color: #61bfe2;
  color: #d9f6ff;
  box-shadow: 0 0 1.5rem rgba(97, 191, 226, 0.18);
}

.meeting-support-ca .meeting-support-copy p {
  color: #c7d9e3;
}

.meeting-support-ca .meeting-support-actions a:hover,
.meeting-support-ca .meeting-support-actions a:focus-visible {
  border-color: #d9f6ff;
}

.meeting-support-ca .meeting-support-actions .meeting-support-action-primary {
  border-color: #61bfe2;
  background: #61bfe2;
  color: #0b1822;
}

.meeting-support-ca .meeting-support-actions .meeting-support-action-primary:hover,
.meeting-support-ca .meeting-support-actions .meeting-support-action-primary:focus-visible {
  border-color: #d9f6ff;
  background: #d9f6ff;
}

.meeting-support-ha .meeting-support-mark {
  border-color: #e08e48;
  color: #ffe5ce;
  box-shadow: 0 0 1.5rem rgba(224, 142, 72, 0.18);
}

.meeting-support-ha .meeting-support-copy p {
  color: #e3cfc0;
}

.meeting-support-ha .meeting-support-actions a:hover,
.meeting-support-ha .meeting-support-actions a:focus-visible {
  border-color: #ffe5ce;
}

.meeting-support-ha .meeting-support-actions .meeting-support-action-primary {
  border-color: #e08e48;
  background: #e08e48;
  color: #21130c;
}

.meeting-support-ha .meeting-support-actions .meeting-support-action-primary:hover,
.meeting-support-ha .meeting-support-actions .meeting-support-action-primary:focus-visible {
  border-color: #ffe5ce;
  background: #ffe5ce;
}

.meeting-support-cr .meeting-support-mark {
  border-color: #9b7adb;
  color: #f1e6ff;
  box-shadow: 0 0 1.5rem rgba(155, 122, 219, 0.2);
}

.meeting-support-cr .meeting-support-copy p {
  color: #d9cee9;
}

.meeting-support-cr .meeting-support-actions a:hover,
.meeting-support-cr .meeting-support-actions a:focus-visible {
  border-color: #f1e6ff;
}

.meeting-support-cr .meeting-support-actions .meeting-support-action-primary {
  border-color: #9b7adb;
  background: #9b7adb;
  color: #160e20;
}

.meeting-support-cr .meeting-support-actions .meeting-support-action-primary:hover,
.meeting-support-cr .meeting-support-actions .meeting-support-action-primary:focus-visible {
  border-color: #f1e6ff;
  background: #f1e6ff;
}

.meeting-support-food .meeting-support-mark {
  border-color: #79b740;
  color: #edffd9;
  font-size: 0.72rem;
  box-shadow: 0 0 1.5rem rgba(121, 183, 64, 0.2);
}

.meeting-support-food .meeting-support-copy p {
  color: #d2dfc8;
}

.meeting-support-food .meeting-support-actions a:hover,
.meeting-support-food .meeting-support-actions a:focus-visible {
  border-color: #edffd9;
}

.meeting-support-food .meeting-support-actions .meeting-support-action-primary {
  border-color: #79b740;
  background: #79b740;
  color: #0d190f;
}

.meeting-support-food .meeting-support-actions .meeting-support-action-primary:hover,
.meeting-support-food .meeting-support-actions .meeting-support-action-primary:focus-visible {
  border-color: #edffd9;
  background: #edffd9;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 2rem, 760px);
  }

  .menu-button {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 5.25rem 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem max(1rem, calc((100vw - 760px) / 2));
    border-bottom: 1px solid var(--line-dark);
    background: rgba(18, 9, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-principles {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 6, 7, 0.97) 0%, rgba(8, 6, 7, 0.72) 65%, rgba(8, 6, 7, 0.4) 100%),
      linear-gradient(180deg, rgba(8, 6, 7, 0.56), transparent 35%, rgba(8, 6, 7, 0.8));
  }

  .section-heading,
  .approach-grid,
  .future-grid,
  .questions-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .future-year {
    top: 30%;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading > p:last-child {
    margin-top: 1.4rem;
  }

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

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

  .program-card.featured {
    transform: none;
  }

  .program-card h3 {
    min-height: auto;
  }

  .approach::before {
    width: 100%;
  }

  .approach-copy {
    padding: 2.5rem 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

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

  .commitment-grid article:nth-child(3) {
    border-left: 0;
  }

  .commitment-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-intro h2 {
    max-width: 14ch;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 1.5rem);
  }

  html {
    scroll-padding-top: 5rem;
  }

  .header-inner {
    min-height: 4.65rem;
  }

  .wordmark-logo {
    width: 3.25rem;
    height: 3.25rem;
  }

  .footer-wordmark .wordmark-logo {
    width: 4.5rem;
    height: 4.5rem;
  }

  .wordmark-copy span {
    max-width: 12rem;
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }

  .primary-nav {
    inset-block-start: 4.65rem;
  }

  .hero {
    min-height: 43rem;
  }

  .hero-inner {
    padding-block: 8rem 4.5rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .eyebrow span {
    width: 1.5rem;
  }

  .hero-coming {
    width: 100%;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

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

  .hero-actions {
    display: grid;
  }

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

  .signal-grid p:nth-child(3) {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .signal-grid p:nth-child(4) {
    border-top: 1px solid var(--line-dark);
  }

  .program-card {
    padding: 1.5rem;
  }

  .future-services::before {
    inset: 0.65rem;
  }

  .future-grid {
    gap: 2.75rem;
  }

  .future-intro h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .journey-step {
    grid-template-columns: 3.5rem 1fr;
    gap: 0.9rem;
  }

  .journey-step > div {
    display: block;
  }

  .journey-step p {
    margin-top: 0.5rem;
  }

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

  .commitment-grid article + article,
  .commitment-grid article:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

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

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

  .legal {
    display: grid;
  }

  .emergency-alert-inner {
    flex-direction: column;
    gap: 0.8rem;
    padding-block: 1.75rem;
    text-align: center;
  }

  .crisis-support-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 1.75rem;
    text-align: center;
  }

  .local-crisis-support-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 1.75rem;
    text-align: center;
  }

  .meeting-support-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 1.75rem;
    text-align: center;
  }

  .crisis-actions,
  .local-crisis-actions,
  .meeting-support-actions {
    justify-content: center;
  }
}

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

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

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