:root {
  color-scheme: light;
  --bg: #f7f8f5;
  --paper: #ffffff;
  --ink: #17201c;
  --muted: #66736e;
  --line: #dfe6df;
  --brand: #0f5f4a;
  --brand-dark: #0b4034;
  --accent: #d7f0df;
  --shadow: 0 24px 70px rgba(26, 42, 35, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(15, 95, 74, 0.1), transparent 32rem),
    linear-gradient(180deg, #fbfcfa 0%, var(--bg) 42%, #eef3ee 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(223, 230, 223, 0.8);
  background: rgba(247, 248, 245, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  border-radius: 999px;
  color: #42504a;
  font-size: 0.92rem;
  font-weight: 650;
  padding: 9px 14px;
  text-decoration: none;
}

.header-nav a:hover {
  background: #edf3ed;
  color: var(--brand-dark);
}

.hero {
  padding: clamp(78px, 11vw, 132px) clamp(20px, 4vw, 56px) 54px;
}

.hero-compact {
  padding-bottom: 34px;
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 840px;
  margin: 0;
  color: #10231c;
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero-copy {
  max-width: 690px;
  margin: 30px 0 0;
  color: #41504a;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 10px 16px;
  box-shadow: 0 12px 32px rgba(23, 32, 28, 0.06);
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-meta strong {
  color: var(--brand-dark);
  font-size: 0.95rem;
}

.summary-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 34px;
}

.summary-card {
  min-height: 210px;
  border: 1px solid rgba(223, 230, 223, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 26px;
  box-shadow: 0 18px 46px rgba(23, 32, 28, 0.06);
}

.summary-number {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.summary-card h2 {
  margin: 34px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.policy-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 88px;
}

.policy-shell.single-column {
  display: block;
  max-width: 920px;
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 20px;
  box-shadow: 0 18px 50px rgba(23, 32, 28, 0.06);
}

.toc p {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  border-radius: 6px;
  color: #54625d;
  font-size: 0.9rem;
  line-height: 1.25;
  padding: 9px 10px;
  text-decoration: none;
}

.toc a:hover {
  background: #edf3ed;
  color: var(--brand-dark);
}

.policy-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-block,
.policy-section {
  padding: clamp(28px, 5vw, 52px);
}

.intro-block {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(15, 95, 74, 0.08), transparent 48%),
    #ffffff;
}

.intro-block p {
  max-width: 780px;
  margin: 0;
  color: #33423c;
  font-size: 1.08rem;
}

.intro-block p + p {
  margin-top: 16px;
}

.policy-section {
  border-bottom: 1px solid var(--line);
}

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

.policy-section h2 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #13241d;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.policy-section h3 {
  margin: 28px 0 10px;
  color: var(--brand-dark);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.policy-section p {
  max-width: 850px;
  margin: 0;
  color: #4d5b55;
}

.policy-section p + p {
  margin-top: 14px;
}

.policy-section ul {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.ordered-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 16px 0 0;
  padding-left: 24px;
}

.ordered-list li {
  color: #3f4c47;
  padding-left: 8px;
}

.ordered-list li::marker {
  color: var(--brand);
  font-weight: 850;
}

.ordered-list a,
.policy-section a {
  color: var(--brand-dark);
  text-decoration-color: rgba(15, 95, 74, 0.35);
  text-underline-offset: 4px;
}

.policy-section li {
  position: relative;
  padding-left: 24px;
  color: #3f4c47;
}

.policy-section li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(215, 240, 223, 0.64), rgba(255, 255, 255, 0.92)),
    #fff;
}

.contact-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 0;
}

.contact-panel dl div {
  border: 1px solid rgba(15, 95, 74, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 8px 0 0;
  color: #17201c;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-panel a {
  color: var(--brand-dark);
  text-decoration-color: rgba(15, 95, 74, 0.35);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .summary-card {
    min-height: 0;
  }

  .policy-shell {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .contact-panel dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-nav a {
    flex: 0 0 auto;
  }

  .hero {
    padding: 58px 20px 36px;
  }

  h1 {
    font-size: 3rem;
    letter-spacing: -0.045em;
  }

  .hero-meta {
    align-items: flex-start;
    border-radius: var(--radius);
    flex-direction: column;
    gap: 2px;
  }

  .policy-shell,
  .summary-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .intro-block,
  .policy-section {
    padding: 26px 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
