@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #008c2e;
  --background: #ffffff;
  --surface: #f7f7f8;
  --text: #141414;
  --muted: rgba(20, 20, 20, 0.62);
  --faint: rgba(20, 20, 20, 0.1);
  --rule: rgba(20, 20, 20, 0.14);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(18px);
}

.brand,
.contact-link {
  font-weight: 700;
  text-decoration: none;
}

.brand {
  color: var(--accent);
  font-size: 24px;
}

.contact-link {
  color: var(--text);
  font-size: 15px;
}

.page-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  width: min(var(--max-width), calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.section-index {
  position: sticky;
  top: 104px;
  align-self: start;
  padding-top: 8px;
  border-top: 4px solid var(--accent);
}

.index-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-index nav {
  display: grid;
  gap: 10px;
}

.section-index a {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.policy {
  min-width: 0;
}

.hero {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--rule);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.22;
}

.policy-section {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: 44px;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
  scroll-margin-top: 96px;
}

.policy-section h2 {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 20px;
  line-height: 1.2;
}

.policy-section h3,
.policy-section p,
.policy-section ul {
  grid-column: 2;
}

.policy-section h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 17px;
}

.policy-section p {
  margin-bottom: 18px;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  padding-left: 20px;
}

.policy-section li + li {
  margin-top: 10px;
}

.policy-section strong {
  color: var(--text);
}

.contact-card {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 8px;
}

.contact-card h2 {
  grid-column: 1;
}

.contact-card p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    width: min(100% - 40px, var(--max-width));
    padding-top: 44px;
  }

  .section-index {
    position: static;
  }

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

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

  .policy-section h3,
  .policy-section p,
  .policy-section ul,
  .contact-card h2 {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 0 20px;
  }

  .brand {
    font-size: 22px;
  }

  .page-shell {
    width: min(100% - 32px, var(--max-width));
  }

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

  .hero {
    padding-bottom: 38px;
  }

  .policy-section {
    padding: 34px 0;
  }

  .contact-card {
    padding: 24px;
  }
}
