:root {
  --bg: #f8f7f2;
  --paper: #fffdf8;
  --ink: #111114;
  --muted: #5b5b66;
  --line: #e5e0d2;
  --accent: #214f8b;
  --accent-deep: #0f2e58;
  --gold: #b98a2e;
  --shadow: 0 24px 80px rgba(15, 46, 88, 0.08);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(33, 79, 139, 0.10), transparent 33rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 60%, #f3efe4 100%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 247, 242, 0.78);
  border-bottom: 1px solid rgba(229, 224, 210, 0.8);
}

.nav-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 750;
}

.logo span:last-child {
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: background 150ms ease, color 150ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(33, 79, 139, 0.08);
  color: var(--accent-deep);
}

main {
  min-height: calc(100vh - 170px);
}

.section,
.hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 0 36px;
}

.hero-inner {
  max-width: 940px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  background: rgba(33, 79, 139, 0.08);
  border: 1px solid rgba(33, 79, 139, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 28px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 .tight,
.page-hero h1 .tight {
  letter-spacing: 0.035em;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.6);
}

.scroll-note {
  margin-top: 56px;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: 64px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 32px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.card {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 14px 50px rgba(17, 17, 20, 0.035);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(33, 79, 139, 0.10);
  color: var(--accent-deep);
  font-weight: 800;
  margin-bottom: 18px;
}

.mission-band {
  margin-top: 28px;
  padding: 34px;
  border-radius: calc(var(--radius) + 8px);
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.mission-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.mission-band strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  color: white;
}

.mission-mark {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: var(--gold);
}

.page-hero {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0 34px;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.16rem;
}

.profile-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
}

.avatar {
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(33, 79, 139, 0.18), rgba(185, 138, 46, 0.18)),
    var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent-deep);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.role {
  color: var(--accent-deep);
  font-weight: 800;
  margin-bottom: 8px;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(33, 79, 139, 0.08);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 750;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  border-left: 2px solid var(--line);
  padding: 6px 0 18px 24px;
}

.timeline-item .term {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.callout {
  background: rgba(33, 79, 139, 0.08);
  border: 1px solid rgba(33, 79, 139, 0.14);
  border-radius: var(--radius);
  padding: 28px;
}

.callout p:last-child {
  margin-bottom: 0;
}

.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 56px auto 0;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-wordmark {
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .nav-wrap {
    align-items: flex-start;
    padding: 16px 0;
    flex-direction: column;
  }

  .section-heading,
  .mission-band,
  .timeline-item {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 68vh;
    padding-top: 54px;
  }

  .hero h1,
  .page-hero h1 {
    letter-spacing: 0.055em;
  }
}

@media (max-width: 560px) {
  .profile-card {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    padding-left: 9px;
    padding-right: 9px;
    font-size: 0.88rem;
  }

  .card,
  .callout,
  .mission-band {
    padding: 22px;
  }
}
