:root {
  --navy: #07183b;
  --navy-deep: #030917;
  --navy-soft: #13294d;
  --gold: #a97819;
  --gold-soft: #caa45b;
  --ivory: #faf7ef;
  --paper: #fffdf8;
  --warm: #eee6d7;
  --stone: #cfc7b8;
  --mist: #eef1f4;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(7, 24, 59, 0.16);
  --line-light: rgba(255, 250, 240, 0.16);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--gold);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: var(--paper);
  color: var(--navy);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(25px, 3.5vw, 42px);
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(17, 24, 39, 0.76);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a[aria-current="page"] {
  color: var(--navy);
}

.nav-cta,
.button,
button {
  border: 1px solid rgba(169, 120, 25, 0.78);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.button:hover,
button:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

.menu-toggle {
  display: none;
  min-width: 46px;
  padding: 0;
  color: var(--navy);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.masthead {
  min-height: 720px;
  padding: 58px 0 48px;
  background: var(--navy-deep);
  color: #fffaf0;
  position: relative;
  overflow: hidden;
}

.masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.06) 0 1px, transparent 1px 108px),
    linear-gradient(180deg, rgba(169, 120, 25, 0.2), transparent 36%);
  opacity: 0.86;
}

.masthead::after {
  content: "";
  position: absolute;
  right: -18%;
  top: 12%;
  width: 44%;
  height: 74%;
  border-left: 1px solid rgba(169, 120, 25, 0.46);
  border-top: 1px solid rgba(255, 250, 240, 0.16);
  transform: skewX(-13deg);
}

.masthead-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  min-height: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.rule {
  width: 108px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 32px;
}

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

h1 {
  margin: 0;
  font-size: clamp(50px, 7vw, 104px);
  line-height: 0.98;
}

.masthead .lead {
  max-width: 900px;
  margin: 30px 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.36;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.feature-strip span {
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.76);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-strip span:last-child {
  border-right: 0;
}

.page-hero {
  padding: 96px 0 80px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero.dark {
  background: var(--navy-deep);
  color: #fffaf0;
  position: relative;
  overflow: hidden;
}

.page-hero.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.05) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, rgba(169, 120, 25, 0.18), transparent 38%);
}

.page-hero.dark > .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero .lead {
  max-width: 860px;
  margin-top: 26px;
  color: rgba(17, 24, 39, 0.74);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.38;
}

.page-hero.dark .lead {
  color: rgba(255, 250, 240, 0.76);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

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

.section.ivory {
  background: var(--ivory);
}

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

.section.navy {
  background: var(--navy);
  color: #fffaf0;
  border-bottom-color: rgba(255, 250, 240, 0.12);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 44px;
}

.section-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.05;
}

.section-intro {
  margin: 18px 0 0;
  max-width: 780px;
  color: rgba(17, 24, 39, 0.72);
  font-size: 20px;
}

.navy .section-intro,
.navy .body-copy,
.navy .muted {
  color: rgba(255, 250, 240, 0.74);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.text-panel,
.award-card,
.experience-item {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  padding: 28px;
}

.navy .card,
.navy .text-panel,
.navy .award-card,
.navy .experience-item {
  background: rgba(255, 250, 240, 0.04);
  border-color: rgba(255, 250, 240, 0.14);
}

.card h3,
.text-panel h3,
.award-card h3,
.experience-item h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
}

.navy .card h3,
.navy .text-panel h3,
.navy .award-card h3,
.navy .experience-item h3 {
  color: #fffaf0;
}

.card p,
.text-panel p,
.award-card p,
.experience-item p {
  margin: 16px 0 0;
  color: rgba(17, 24, 39, 0.72);
}

.navy .card p,
.navy .text-panel p,
.navy .award-card p,
.navy .experience-item p {
  color: rgba(255, 250, 240, 0.72);
}

.card-link {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.card-link .index {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-link .arrow {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 58px;
  align-items: start;
}

.body-copy {
  font-size: 18px;
  color: rgba(17, 24, 39, 0.76);
}

.body-copy p {
  margin: 0 0 22px;
}

.profile-link-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-link-row span {
  color: rgba(17, 24, 39, 0.52);
}

.profile-link-row a {
  color: var(--navy);
  text-decoration: none;
}

.profile-link-row a:hover {
  color: var(--gold);
}

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

.list li {
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  color: rgba(17, 24, 39, 0.78);
}

.navy .list li {
  border-color: rgba(255, 250, 240, 0.14);
  color: rgba(255, 250, 240, 0.75);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-frame {
  border: 1px solid var(--line);
  background: var(--warm);
  overflow: hidden;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-portrait {
  aspect-ratio: 4 / 5;
}

.founder-portrait img {
  object-position: center 38%;
}

.contact-portrait {
  aspect-ratio: 4 / 5;
}

.contact-portrait img {
  object-position: center 38%;
}

.advocacy-image {
  aspect-ratio: 16 / 9;
  background: #15171a;
}

.advocacy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(0.94) brightness(0.72);
  opacity: 0.74;
}

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

.award-logo {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
}

.award-logo img {
  max-height: 126px;
  width: auto;
  object-fit: contain;
}

.recognition-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.recognition-mark {
  min-height: 260px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.recognition-mark:last-child {
  border-right: 0;
}

.recognition-mark .issuer {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
}

.recognition-mark .status {
  margin-top: 16px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.recognition-mark .year {
  margin-top: 10px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.95;
}

.recognition-mark .category {
  margin-top: 18px;
  color: rgba(17, 24, 39, 0.76);
  font-size: 17px;
  line-height: 1.35;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
  gap: 54px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(17, 24, 39, 0.78);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 24, 59, 0.22);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  font-size: 16px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note,
.legal-note {
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid rgba(169, 120, 25, 0.5);
  color: var(--navy);
  background: rgba(169, 120, 25, 0.08);
}

.form-status.is-visible {
  display: block;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: var(--navy-deep);
  color: #fffaf0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) repeat(3, minmax(160px, 0.4fr));
  gap: 42px;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.18em;
  font-size: 30px;
}

.footer-tag {
  margin-top: 16px;
  color: rgba(255, 250, 240, 0.7);
  max-width: 440px;
}

.footer-col h2 {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 14px;
}

.footer-legal {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  color: rgba(255, 250, 240, 0.58);
  font-size: 12px;
}

.muted {
  color: var(--muted);
}

.compact {
  max-width: 820px;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 16px;
  }

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

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

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .header-inner {
    width: min(100% - 34px, var(--max));
    min-height: 76px;
  }

  .brand {
    white-space: normal;
    max-width: 72%;
    font-size: 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 16px;
  }

  .masthead {
    min-height: 700px;
    padding: 42px 0 34px;
  }

  .masthead-inner,
  .container,
  .footer-inner {
    width: min(100% - 34px, var(--max));
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  }

  .feature-strip span:last-child {
    border-bottom: 0;
  }

  .section,
  .page-hero {
    padding: 62px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .award-grid,
  .recognition-strip,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .recognition-mark {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .recognition-mark:last-child {
    border-bottom: 0;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 560px) {
  .header-inner,
  .masthead-inner,
  .container,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    max-width: 76%;
    font-size: 24px;
    letter-spacing: 0.14em;
  }

  h1 {
    font-size: 42px;
    line-height: 1.03;
  }

  .masthead {
    min-height: 620px;
  }

  .masthead .lead,
  .page-hero .lead {
    font-size: 18px;
  }

  .section h2 {
    font-size: 34px;
  }

  .card,
  .text-panel,
  .award-card,
  .experience-item {
    padding: 22px;
  }

  .profile-link-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
