:root {
  color-scheme: light;
  --ink: #15201d;
  --muted: #60706a;
  --paper: #f6f5ef;
  --surface: #fffef9;
  --line: #dce2dc;
  --fern: #17694b;
  --fern-dark: #0e4934;
  --accent: #d8efe4;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  line-height: 1.65;
}

a {
  color: var(--fern-dark);
  text-underline-offset: 0.18em;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 245, 239, 0.92);
}

.header-inner,
.page,
.home {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.header-link {
  font-size: 0.92rem;
  font-weight: 650;
}

.page {
  padding-block: 72px 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--fern);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: -0.035em;
  line-height: 1.16;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
}

.intro {
  max-width: 680px;
  margin: 24px 0 16px;
  color: var(--muted);
  font-size: 1.12rem;
}

.effective-date {
  display: inline-block;
  margin: 6px 0 48px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--fern-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.policy-section {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.policy-section p,
.policy-section ul {
  margin-block: 12px 0;
}

.policy-section ul {
  padding-left: 1.2rem;
}

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

.contact-card {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.home {
  display: grid;
  min-height: calc(100vh - 73px);
  align-content: center;
  padding-block: 72px;
}

.home p {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.1rem;
}

.button {
  width: fit-content;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--fern);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

@media (max-width: 560px) {
  .header-inner,
  .page,
  .home {
    width: min(100% - 28px, 820px);
  }

  .page {
    padding-block: 48px 72px;
  }
}

