:root {
  --black: #0d0b0a;
  --ink: #19130f;
  --mahogany: #4d2117;
  --brick: #8e3b25;
  --gold: #d4a755;
  --cream: #f8efe1;
  --paper: #fffaf1;
  --smoke: #efe2d0;
  --muted: #766958;
  --line: #dbc8ac;
  --shadow: 0 30px 90px rgba(25, 19, 15, 0.2);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.skip-link {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 50;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(248, 239, 225, 0.16);
  background: rgba(13, 11, 10, 0.78);
  color: var(--paper);
  backdrop-filter: blur(18px);
  transition:
    min-height 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(13, 11, 10, 0.94);
  box-shadow: 0 18px 42px rgba(13, 11, 10, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 167, 85, 0.7);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.1rem;
}

.brand span:last-child {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.42rem;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 1px;
  margin: 7px auto;
  background: var(--paper);
  transition: transform 0.2s;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--black);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 11, 10, 0.94), rgba(13, 11, 10, 0.72) 28%, rgba(13, 11, 10, 0.18) 68%),
    linear-gradient(0deg, rgba(13, 11, 10, 0.7), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  padding: 148px 0 210px clamp(20px, 5vw, 72px);
}

.eyebrow,
.section-label,
.mission-card span,
.method-section span,
.pilot-grid span,
.budget-card span,
.contact-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.82;
}

.hero p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.2rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

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

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.button.secondary {
  color: var(--paper);
}

.hero-panel {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  background: rgba(13, 11, 10, 0.56);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 126px;
  padding: 24px clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(255, 250, 241, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: rgba(212, 167, 85, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  color: var(--paper);
  line-height: 1.38;
}

.mission-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1px;
  background: var(--line);
}

.mission-card {
  padding: clamp(30px, 5vw, 58px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.mission-card.accent {
  background: var(--mahogany);
  color: var(--paper);
}

.mission-card p {
  max-width: 760px;
  margin: 12px 0 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.02;
}

.section,
.program-section,
.advisor-section,
.pilot-section,
.outcomes-section,
.fund-section,
.contact-section {
  padding: clamp(78px, 10vw, 136px) clamp(20px, 5vw, 72px);
}

.program-section {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 92px);
  background: var(--cream);
}

.section-copy h2,
.advisor-copy h2,
.section-heading h2,
.outcomes-section h2,
.fund-copy h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.1rem, 5.6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
}

.section-copy p,
.advisor-copy p,
.fund-copy p,
.contact-section p,
.budget-card p,
.contact-card p {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.method-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(20px, 5vw, 72px);
  background: var(--line);
}

.method-section article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
}

.method-section article:nth-child(2),
.method-section article:nth-child(4) {
  background: var(--smoke);
}

.method-section h3,
.pilot-grid strong,
.role-card > span,
.budget-card strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
}

.method-section h3 {
  margin-top: 52px;
}

.method-section p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.advisor-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 167, 85, 0.18), transparent 26%),
    linear-gradient(135deg, var(--black), #21110d 58%, var(--mahogany));
}

.advisor-copy h2 {
  color: var(--paper);
}

.advisor-copy p {
  color: rgba(255, 250, 241, 0.72);
}

.role-card {
  padding: 30px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.role-card > span {
  color: var(--gold);
  font-size: 2rem;
}

.role-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0 0 0 20px;
  color: rgba(255, 250, 241, 0.82);
}

.role-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: rgba(255, 250, 241, 0.18);
}

.role-meta strong {
  padding: 14px 10px;
  background: rgba(13, 11, 10, 0.36);
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.pilot-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 0.9fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  background: var(--line);
}

.pilot-grid article {
  min-height: 250px;
  padding: 28px;
  background: var(--cream);
}

.pilot-grid strong {
  margin-top: 42px;
}

.pilot-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.outcomes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  background: var(--cream);
}

.outcome-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.outcome-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: var(--paper);
}

.outcome-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--brick);
  font-weight: 800;
}

.outcome-list p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.5;
}

.fund-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.56fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  background: var(--paper);
}

.budget-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(212, 167, 85, 0.12), transparent 44%),
    var(--cream);
  box-shadow: var(--shadow);
}

.budget-card strong {
  margin-top: 18px;
  color: var(--brick);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  letter-spacing: -0.03em;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  color: var(--paper);
  background: var(--black);
}

.contact-section h2 {
  color: var(--paper);
}

.contact-section p {
  color: rgba(255, 250, 241, 0.72);
}

.contact-card {
  padding: 30px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  background: rgba(255, 250, 241, 0.08);
}

.contact-card a {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  text-decoration: none;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 250, 241, 0.68);
  background: var(--black);
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .method-section,
  .pilot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-section,
  .outcomes-section,
  .fund-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  section[id] {
    scroll-margin-top: 86px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand span:last-child {
    font-size: 1.26rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
    background: rgba(13, 11, 10, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 11, 10, 0.94), rgba(13, 11, 10, 0.68)),
      linear-gradient(0deg, rgba(13, 11, 10, 0.74), transparent 42%);
  }

  .hero-copy {
    width: 100%;
    padding: 122px 20px 34px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero p {
    font-size: 1.05rem;
    line-height: 1.62;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    position: relative;
    left: auto;
    right: auto;
    grid-template-columns: 1fr;
    background: rgba(13, 11, 10, 0.84);
  }

  .hero-panel div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .mission-strip,
  .program-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .method-section,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .method-section article,
  .pilot-grid article {
    min-height: 0;
  }

  .role-meta {
    grid-template-columns: 1fr;
  }

  .contact-card a {
    font-size: 1.75rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 4rem;
  }

  .section-copy h2,
  .advisor-copy h2,
  .section-heading h2,
  .outcomes-section h2,
  .fund-copy h2,
  .contact-section h2 {
    font-size: 2.82rem;
  }

  .mission-card p {
    font-size: 1.9rem;
  }
}
