:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #52605b;
  --line: #d7dfdc;
  --paper: #f8fbf7;
  --panel: #ffffff;
  --brand: #136f63;
  --brand-dark: #0b4d45;
  --mint: #d9f2e8;
  --gold: #f4bd51;
  --blue: #dce9ff;
  --shadow: 0 24px 70px rgba(24, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: var(--brand-dark);
  text-decoration-color: rgba(19, 111, 99, 0.34);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentColor;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
  text-decoration: none;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.site-header nav a:hover,
.site-header nav a[aria-current="page"],
.site-footer nav a:hover {
  color: var(--ink);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 48px 0 72px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.lede {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.22;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
}

.hero-visual {
  border: 1px solid rgba(19, 111, 99, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #edf8f2);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 34px);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.band {
  background: var(--ink);
  color: #ffffff;
  padding: 64px 0;
}

.section-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.section-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.section-grid h2,
.band p {
  color: #ffffff;
}

.band p {
  opacity: 0.78;
}

.plain-section {
  padding: 72px 0;
}

.content-narrow,
.document {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.document {
  padding: 54px 0 84px;
}

.document-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.document-header h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

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

.document section:last-child {
  border-bottom: 0;
}

.contact-panel {
  border: 1px solid rgba(19, 111, 99, 0.22) !important;
  border-radius: 8px;
  background: var(--mint);
  padding: 24px !important;
  margin: 24px 0;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 26px;
  }

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

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .section-grid,
  .content-narrow,
  .document {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    gap: 28px;
    padding-bottom: 50px;
  }

  .action-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    padding: 14px;
  }
}

