:root {
  color-scheme: light;
  --ivory: #f7f3ea;
  --charcoal: #1c1c1a;
  --green: #173c35;
  --gold: #b79a5b;
  --line: rgba(28, 28, 26, 0.16);
  --line-strong: rgba(23, 60, 53, 0.28);
  --measure: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 20px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(12px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--green);
  font-size: 1rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(28, 28, 26, 0.76);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  padding-block: 6px;
  text-decoration: none;
}

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

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(48px, 8vw, 118px);
  min-height: calc(100svh - 78px);
  padding: clamp(72px, 10vw, 128px) clamp(22px, 5vw, 72px) clamp(54px, 7vw, 86px);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: var(--measure);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(4.35rem, 10vw, 9.25rem);
  line-height: 0.92;
}

.hero-kicker {
  max-width: 820px;
  margin: clamp(28px, 5vw, 48px) 0 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.7vw, 2.55rem);
  line-height: 1.16;
}

.hero-intro {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(28, 28, 26, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.institutional-visual {
  position: relative;
  min-height: 430px;
  opacity: 0.96;
}

.seal {
  position: absolute;
  top: 18px;
  right: 0;
  width: min(65vw, 220px);
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.governance-grid {
  position: absolute;
  right: 34px;
  bottom: 14px;
  width: min(76vw, 360px);
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  opacity: 0.7;
}

.governance-grid circle {
  fill: var(--gold);
  stroke: none;
}

.content-section,
.contact-section {
  display: grid;
  grid-template-columns: 84px minmax(0, var(--measure));
  gap: clamp(22px, 5vw, 54px);
  justify-content: center;
  padding: clamp(70px, 10vw, 118px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.section-index {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.2;
}

.section-body {
  max-width: var(--measure);
}

h2 {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
}

.section-body p,
.contact-section p {
  margin: 24px 0 0;
  color: rgba(28, 28, 26, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.secondary-note {
  padding-left: 22px;
  border-left: 1px solid var(--gold);
}

.focus-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: rgba(28, 28, 26, 0.86);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.focus-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border: 1px solid var(--gold);
  background: transparent;
}

.contact-section {
  grid-template-columns: minmax(0, 520px) minmax(260px, 360px);
  align-items: end;
  justify-content: center;
  background: rgba(23, 60, 53, 0.025);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--gold);
  color: var(--charcoal);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 72px);
  color: rgba(28, 28, 26, 0.58);
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .institutional-visual {
    min-height: 260px;
  }

  .seal {
    left: 0;
    right: auto;
    width: 170px;
  }

  .governance-grid {
    right: 0;
    bottom: 0;
    width: min(88vw, 330px);
  }

  .content-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-index {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }

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

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .wordmark {
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 5rem);
  }

  .hero {
    padding-top: 56px;
  }

  .contact-link {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
}
