:root {
  color-scheme: light;
  --ink: #141614;
  --muted: #5d635e;
  --line: #d9ddd9;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --accent: #1e4f45;
  --accent-strong: #12342e;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 650;
}

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

.hero {
  padding: 84px 0 72px;
}

.page {
  padding: 64px 0 72px;
}

.page-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  font-weight: 760;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.entity-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1rem;
}

.contact-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
}

.section-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.section-grid article,
.facts > div,
.content-section {
  background: var(--surface);
}

.section-grid article {
  min-height: 230px;
  padding: 28px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  background: var(--line);
}

.facts > div {
  padding: 24px;
}

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

.content-section {
  max-width: 820px;
  margin: 0 0 20px;
  padding: 28px;
  border: 1px solid var(--line);
}

.site-footer {
  min-height: 86px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .page {
    padding: 42px 0 56px;
  }

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

  .section-grid article {
    min-height: auto;
  }
}
