:root {
  --ink: #0b1b2d;
  --navy: #0d2238;
  --navy-2: #143553;
  --orange: #f45b18;
  --orange-dark: #d84609;
  --cream: #fff8ef;
  --paper: #ffffff;
  --mist: #eef3f6;
  --gold: #e5aa58;
  --text: #1e2935;
  --muted: #65717d;
  --line: rgba(13, 34, 56, .14);
  --shadow: 0 18px 50px rgba(11, 27, 45, .12);
  --radius: 1.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; color: white; background: var(--ink); }
.skip-link:focus { top: 1rem; }
.container { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.eyebrow { margin: 0 0 .8rem; color: var(--orange); font-size: .78rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; line-height: 1.05; text-wrap: balance; }
h1 { font-size: clamp(2.9rem, 7vw, 6.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.2rem, 4vw, 4.25rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
p { margin: 0 0 1rem; }
.lead { max-width: 770px; color: #4a5865; font-size: clamp(1.12rem, 2vw, 1.35rem); }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-compact { padding: 4rem 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.75rem; }
.section-head > p { max-width: 560px; margin: 0; color: var(--muted); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.75rem; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1.15rem; border: 2px solid transparent; border-radius: 999px; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-light { color: var(--ink); background: white; }
.btn-outline { color: inherit; border-color: currentColor; background: transparent; }
.text-link { color: var(--orange-dark); font-weight: 800; text-underline-offset: .25em; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.95); backdrop-filter: blur(15px); }
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; color: var(--ink); font-weight: 900; text-decoration: none; }
.brand-stack { display: grid; min-width: 104px; line-height: .84; }
.brand-stack span { display: block; }
.brand-stack span:nth-child(1) { color: var(--orange-dark); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.brand-stack span:nth-child(2) { font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; letter-spacing: -.035em; }
.brand-stack span:nth-child(3) { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; }
.site-footer .brand-stack span:nth-child(1) { color: var(--gold); }
.site-footer .brand-stack span:nth-child(2), .site-footer .brand-stack span:nth-child(3) { color: white; }
.site-nav { display: flex; align-items: center; gap: 1rem; }
.site-nav a { font-size: .92rem; font-weight: 750; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--orange-dark); }
.menu-button { display: none; min-width: 46px; min-height: 46px; border: 0; border-radius: 50%; color: white; background: var(--ink); font-weight: 900; }

.hero { position: relative; min-height: min(820px, calc(100svh - 78px)); display: grid; align-items: end; isolation: isolate; overflow: hidden; color: white; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("hero-kitchen.webp") center / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(4,14,25,.96) 0%, rgba(4,14,25,.82) 36%, rgba(4,14,25,.12) 72%), linear-gradient(0deg, rgba(4,14,25,.76), transparent 55%); }
.hero-inner { width: min(760px, 100%); padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem); }
.hero h1 { color: white; }
.hero h1 em { display: block; color: var(--gold); font-style: italic; }
.hero .lead { margin-top: 1.5rem; color: rgba(255,255,255,.84); }
.hero-note { display: inline-flex; gap: .65rem; align-items: center; margin-bottom: 1.25rem; font-size: .8rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-note::before { content: ""; width: 34px; height: 2px; background: var(--orange); }

.mission-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: start; }
.statement { max-width: 760px; font-family: Georgia, serif; font-size: clamp(1.65rem, 3vw, 2.75rem); line-height: 1.25; }
.fact-panel { padding: 2rem; border-top: 5px solid var(--orange); border-radius: 0 0 var(--radius) var(--radius); background: var(--mist); }
.fact-panel strong { display: block; margin-bottom: .35rem; color: var(--ink); font-family: Georgia, serif; font-size: 1.35rem; }

.senses { color: white; background: var(--navy); }
.senses h2, .senses h3 { color: white; }
.senses .section-head > p { color: rgba(255,255,255,.68); }
.sense-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius); background: rgba(255,255,255,.13); }
.sense { min-height: 245px; padding: 1.7rem; background: var(--navy); }
.sense span { display: grid; width: 46px; aspect-ratio: 1; place-items: center; margin-bottom: 2.5rem; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--gold); font-family: Georgia, serif; font-size: 1.35rem; }
.sense p { margin-top: .75rem; color: rgba(255,255,255,.66); font-size: .92rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card { display: flex; min-height: 100%; flex-direction: column; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 35px rgba(11,27,45,.06); }
.card-number { margin-bottom: 2.5rem; color: var(--orange); font-family: Georgia, serif; font-size: 2rem; }
.card p { color: var(--muted); }
.card .text-link { margin-top: auto; padding-top: 1.2rem; }
.card.featured { color: white; border-color: var(--orange); background: var(--orange); }
.card.featured h3, .card.featured .card-number, .card.featured .text-link { color: white; }
.card.featured p { color: rgba(255,255,255,.82); }
.program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stage-word { display: inline-block; color: var(--gold); font-style: italic; }
.stage-callout { padding: clamp(2rem, 5vw, 4rem); border-left: 6px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; color: white; background: var(--navy); }
.stage-callout h2 { color: white; }
.stage-callout p { max-width: 760px; color: rgba(255,255,255,.74); }
.stage-callout .eyebrow { color: var(--gold); }

.impact { overflow: hidden; color: white; background: var(--orange); }
.impact h2 { color: white; }
.impact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 5rem; align-items: center; }
.impact-quote { font-family: Georgia, serif; font-size: clamp(1.75rem, 3.2vw, 3.1rem); line-height: 1.18; }
.impact-list { border-top: 1px solid rgba(255,255,255,.4); }
.impact-item { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.4); }
.impact-item strong { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }

.cream-band { background: var(--cream); }

.cta { color: white; background: var(--ink); }
.cta h2 { max-width: 780px; color: white; }
.cta p { max-width: 660px; margin-top: 1.2rem; color: rgba(255,255,255,.72); }

.page-hero { padding: clamp(5rem, 10vw, 9rem) 0 4rem; color: white; background: var(--ink); }
.page-hero h1 { max-width: 980px; color: white; }
.page-hero .lead { margin-top: 1.5rem; color: rgba(255,255,255,.72); }
.crumb { margin-bottom: 1.5rem; color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.prose-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 5rem; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.9rem, 3vw, 2.7rem); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #465361; }
.board-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; padding: 0; list-style: none; }
.board-list li { padding: 1rem; border: 1px solid var(--line); border-radius: .75rem; color: var(--ink); font-weight: 750; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.leader-profile { overflow: hidden; border: 1px solid var(--line); border-radius: 1rem; background: white; }
.leader-profile summary { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.4rem; color: var(--ink); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 700; cursor: pointer; list-style: none; }
.leader-profile summary::-webkit-details-marker { display: none; }
.leader-profile summary::after { content: "+"; display: grid; flex: 0 0 38px; width: 38px; aspect-ratio: 1; place-items: center; border-radius: 50%; color: white; background: var(--orange); font-family: Inter, sans-serif; font-size: 1.35rem; line-height: 1; }
.leader-profile[open] summary::after { content: "−"; }
.leader-profile summary:focus-visible { outline: 3px solid rgba(244,91,24,.3); outline-offset: -3px; }
.leader-bio { padding: 0 1.4rem 1.35rem; color: var(--muted); }
.leader-bio p { margin: 0; }
.leader-role { display: block; margin-top: .25rem; color: var(--orange-dark); font-family: Inter, sans-serif; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.side-note { position: sticky; top: 110px; padding: 1.7rem; border-radius: var(--radius); background: var(--cream); }
.side-note h3 { margin-bottom: .8rem; }
.side-note address { margin-bottom: 1rem; font-style: normal; }
.steps { counter-reset: steps; display: grid; gap: 1rem; margin-top: 2rem; }
.step { position: relative; padding: 1.5rem 1.5rem 1.5rem 5rem; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: steps; content: counter(steps); position: absolute; left: 1.25rem; top: 1.25rem; display: grid; width: 42px; aspect-ratio: 1; place-items: center; border-radius: 50%; color: white; background: var(--orange); font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: .85rem 1rem; border: 1px solid #bcc6ce; border-radius: .65rem; background: white; }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(244,91,24,.2); border-color: var(--orange); }
.form-status { min-height: 1.5rem; margin-top: .8rem; font-weight: 700; }
.hp { position: absolute; left: -9999px; }

.term-jump { position: sticky; top: 78px; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.term-jump-inner { display: flex; gap: .65rem; overflow-x: auto; padding: .8rem 0; scrollbar-width: thin; }
.term-jump a { flex: 0 0 auto; padding: .45rem .75rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: .82rem; font-weight: 800; text-decoration: none; }
.term-jump a:hover { color: white; border-color: var(--orange); background: var(--orange); }
.term-group { scroll-margin-top: 150px; }
.term-group + .term-group { border-top: 1px solid var(--line); }
.term-group-head { display: grid; grid-template-columns: 90px 1fr; gap: 1.5rem; align-items: start; margin-bottom: 2.25rem; }
.term-count { display: grid; width: 74px; aspect-ratio: 1; place-items: center; border-radius: 50%; color: white; background: var(--orange); font-family: Georgia, serif; font-size: 1.45rem; }
.term-count small { display: block; margin-top: -1.5rem; font-family: Inter, sans-serif; font-size: .54rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.term-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.term-card { padding: 1.3rem 1.4rem; border: 1px solid var(--line); border-radius: 1rem; background: white; }
.term-card h3 { margin-bottom: .45rem; font-family: Inter, sans-serif; font-size: 1.08rem; }
.term-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.site-footer { padding: 4.5rem 0 2rem; color: rgba(255,255,255,.74); background: #061321; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-grid h3 { margin-bottom: 1rem; color: white; font-family: Inter, sans-serif; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin: .5rem 0; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-grid address { font-style: normal; }
.social-links { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.social-link { display: grid; width: 38px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: white; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; stroke-width: 1.6; }
.social-link svg rect, .social-link svg circle:not(.fill-dot) { fill: none; }
.social-link.is-pending { opacity: .78; }
.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; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; }

@media (max-width: 900px) {
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav { position: absolute; left: 0; right: 0; top: 78px; display: none; padding: 1rem 1.25rem 1.4rem; border-bottom: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav .btn { width: 100%; }
  .mission-grid, .impact-grid, .prose-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sense-grid { grid-template-columns: repeat(2, 1fr); }
  .sense:last-child { grid-column: 1 / -1; }
  .card-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .side-note { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .term-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 1.5rem, 1160px); }
  .hero { min-height: 720px; }
  .hero::after { background: linear-gradient(90deg, rgba(4,14,25,.96), rgba(4,14,25,.63)), linear-gradient(0deg, rgba(4,14,25,.72), transparent); }
  .section-head { align-items: start; flex-direction: column; }
  .sense-grid, .form-grid, .board-list, .footer-grid { grid-template-columns: 1fr; }
  .sense:last-child { grid-column: auto; }
  .sense { min-height: auto; }
  .sense span { margin-bottom: 1rem; }
  .impact-item { grid-template-columns: 1fr; gap: .35rem; }
  .footer-bottom { flex-direction: column; }
  .term-group-head { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
