:root {
  --background: #f7f5f0;
  --surface: #fffdf8;
  --surface-strong: #f0ece3;
  --text: #111111;
  --muted: #666666;
  --border: #e1ded7;
  --accent: #1f3a5f;
  --gold: #b89b5e;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Aptos", "Avenir Next", "Segoe UI", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(31, 58, 95, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(31, 58, 95, 0.026) 1px, transparent 1px),
    var(--background);
  background-size: 54px 54px;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text);
}

.brand strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 28px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--gold);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, calc(100% - 40px));
}

.hero {
  display: block;
  padding: clamp(56px, 7vw, 88px) 0 clamp(30px, 4vw, 48px);
}

.hero > div {
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6.4vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero .subtitle {
  max-width: 760px;
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  color: var(--accent);
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #3b3b3b;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.66;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #152a46;
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
  border-top: 1px solid var(--border);
}

.overview-section {
  padding: clamp(30px, 4vw, 48px) 0 clamp(54px, 7vw, 84px);
}

.overview-copy {
  max-width: 860px;
}

.overview-copy .section-label {
  display: inline-block;
  margin-bottom: 18px;
}

.overview-copy .section-copy {
  max-width: 780px;
  margin-top: 24px;
}

.section.tight {
  padding-top: 54px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(32px, 6vw, 88px);
}

.section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.section-copy {
  color: #383838;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.75;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.asset-card,
.info-card,
.profile-card,
.contact-card {
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.82);
}

.asset-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
}

.asset-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-card h3 {
  margin-top: 18px;
}

.asset-card p,
.info-card p,
.profile-card p {
  color: var(--muted);
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.topic-list li {
  display: flex;
  gap: 10px;
  color: #3f3f3f;
  font-size: 14px;
}

.topic-list li::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.64);
}

.pillar {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--border);
}

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

.pillar small {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillar h3 {
  margin-top: 16px;
  font-size: 28px;
}

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

.page-hero {
  padding: clamp(74px, 10vw, 124px) 0 clamp(52px, 7vw, 86px);
}

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

.page-hero .lead {
  max-width: 820px;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.prose p {
  margin: 0 0 22px;
  color: #383838;
  font-size: 18px;
  line-height: 1.78;
}

.info-card {
  padding: 28px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.info-row dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-row dd {
  margin: 0;
  color: var(--text);
}

.asset-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(300px, 0.48fr);
  gap: 42px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.asset-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.list-block {
  display: grid;
  gap: 22px;
}

.list-block h3 {
  font-size: 26px;
}

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

.plain-list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: #3f3f3f;
}

.content-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.content-areas li {
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.78);
  color: #383838;
}

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

.profile-card {
  padding: clamp(24px, 3vw, 34px);
}

.initials {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--accent);
  font-family: var(--serif);
  font-size: 26px;
}

.role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.home-contact-section {
  background: rgba(255, 253, 248, 0.42);
}

.home-contact-section .notice {
  max-width: 650px;
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.contact-form label {
  color: #2f2f2f;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-weight: 400;
}

.contact-form .button {
  font-weight: 600;
  letter-spacing: 0.075em;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 160px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.12);
}

.notice {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 253, 248, 0.78);
  color: var(--muted);
  font-size: 14px;
}

.policy-shell {
  display: grid;
  gap: 18px;
}

.policy-block {
  padding: 26px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.78);
}

.policy-block h2 {
  font-size: 30px;
}

.policy-block p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.72);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 38px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
}

.footer-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.footer-copy {
  max-width: 460px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero,
  .section-grid,
  .split-content,
  .asset-section,
  .contact-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .pillar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: min(100% - 28px, 1180px);
    min-height: 68px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand span {
    font-size: 10px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(247, 245, 240, 0.98);
  }

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

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
  }

  .container,
  .narrow,
  .footer-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 11.4vw, 48px);
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .topic-list,
  .content-areas,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
