:root {
  --forest: #315B49;
  --forest-dark: #234536;
  --leaf: #4f735f;
  --sage: #dfe8e1;
  --sage-light: #f2f6f3;
  --cream: #faf8f3;
  --paper: #ffffff;
  --ink: #202721;
  --muted: #606a62;
  --line: #d8dfd9;
  --accent: #b58b55;
  --shadow: 0 18px 45px rgba(24, 49, 40, 0.08);
  --radius: 10px;
  --shell: 1120px;
  --reading: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: var(--forest); text-underline-offset: 0.18em; }
a:hover { color: var(--leaf); }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-200%);
  background: var(--forest-dark);
  color: white;
  padding: .7rem 1rem;
  border-radius: 5px;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}
.site-header {
  border-bottom: 1px solid rgba(35, 69, 54, .12);
  background: rgba(250, 248, 243, .96);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
}
.wordmark, .footer-brand {
  color: var(--forest-dark);
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 85% 15%, rgba(79, 115, 95, .16), transparent 36%),
    linear-gradient(180deg, var(--sage-light), var(--cream));
}
.hero-content { max-width: 810px; }
.eyebrow {
  color: var(--leaf);
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 780px;
  margin: .6rem 0 1.1rem;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 7vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.hero .lede {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  background: var(--forest);
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.button:hover { background: var(--forest-dark); color: white; }
.button.secondary { background: transparent; color: var(--forest); }

.section { padding: 76px 0; }
.section.alt { background: var(--paper); }
.section-heading { max-width: 700px; margin-bottom: 36px; }
.section h2 {
  margin: 0 0 12px;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.16;
}
.section-heading p { color: var(--muted); font-size: 1.08rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  min-height: 220px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 30px rgba(24,49,40,.04);
}
.card h3 { margin: 0 0 10px; color: var(--forest-dark); font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
}
.value { border-top: 2px solid var(--sage); padding-top: 20px; }
.value h3 { margin: 0 0 8px; color: var(--forest); }
.value p { margin: 0; color: var(--muted); }

.cta-panel {
  padding: 42px;
  border-radius: 14px;
  background: var(--forest-dark);
  color: white;
}
.cta-panel h2 { color: white; }
.cta-panel p { max-width: 680px; color: rgba(255,255,255,.8); }
.cta-panel .button { border-color: white; background: white; color: var(--forest-dark); }
.cta-panel .button.secondary { border-color: white; background: transparent; color: white; }

.policy-layout {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 225px minmax(0, var(--reading));
  gap: 56px;
  align-items: start;
  padding: 56px 0 88px;
}
.policy-sidebar {
  position: sticky;
  top: 24px;
  grid-column: 1;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
}
.sidebar-title {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.policy-sidebar nav { display: grid; }
.policy-sidebar a {
  padding: 7px 8px;
  border-radius: 5px;
  color: var(--muted);
  font-size: .88rem;
  text-decoration: none;
}
.policy-sidebar a:hover, .policy-sidebar a.is-current {
  background: var(--sage-light);
  color: var(--forest-dark);
}
.policy-article {
  grid-column: 2;
  min-width: 0;
  padding: 45px 48px 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.policy-article > h1 {
  margin: 0 0 16px;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.policy-article > p:first-of-type,
.policy-article > p:nth-of-type(2) {
  color: var(--muted);
  font-size: .93rem;
}
.policy-article h2 {
  margin: 2.4rem 0 .8rem;
  padding-top: .25rem;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.25;
}
.policy-article h3 { margin: 1.7rem 0 .55rem; color: var(--forest); }
.policy-article p { margin: 0 0 1.05rem; }
.policy-article ul, .policy-article ol { padding-left: 1.4rem; }
.policy-article li { margin: .45rem 0; }
.policy-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 2rem;
  font-size: .93rem;
}
.policy-article th, .policy-article td {
  padding: 11px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.policy-article th { background: var(--sage-light); color: var(--forest-dark); }
.policy-article blockquote {
  margin: 1.6rem 0;
  padding: 18px 22px;
  border-left: 4px solid var(--leaf);
  background: var(--sage-light);
}
.policy-article strong { color: var(--forest-dark); }

.site-footer {
  padding: 58px 0 25px;
  background: var(--forest-dark);
  color: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 50px;
}
.footer-grid h2 {
  margin: 0 0 12px;
  color: white;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-grid nav { display: grid; align-content: start; }
.footer-grid nav a, .text-button {
  padding: 4px 0;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  text-align: left;
  text-decoration: none;
}
.footer-grid nav a:hover, .text-button:hover { color: white; }
.footer-brand { color: white; }
.text-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .78rem;
}

.notice {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sage-light);
  color: var(--muted);
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; gap: 22px; }
  .policy-sidebar { position: static; grid-column: 1; }
  .policy-sidebar nav { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .policy-article { grid-column: 1; padding: 34px 28px 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .shell, .policy-layout { width: min(calc(100% - 28px), var(--shell)); }
  .hero { padding: 66px 0 60px; }
  .section { padding: 58px 0; }
  .cta-panel { padding: 30px 24px; }
  .policy-article { padding: 28px 20px 34px; border-radius: 9px; }
  .policy-sidebar nav { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
