:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --paper: #fffdf8;
  --ink: #181915;
  --muted: #62665d;
  --line: #ded8ca;
  --green: #487860;
  --green-dark: #244d3b;
  --amber: #d99a35;
  --rose: #d7656f;
  --shadow: 0 24px 70px rgba(37, 48, 38, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(72, 120, 96, 0.14), transparent 28rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(247, 244, 237, 0.92));
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.site-header {
  min-height: 84px;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fffdf8;
  background: var(--green-dark);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(36, 77, 59, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.74);
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 168px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: 48px 0 72px;
}

.hero-copy,
.policy-hero {
  max-width: 720px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

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

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
}

.primary-button {
  color: #fffdf8;
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(36, 77, 59, 0.22);
}

.secondary-button {
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(36, 77, 59, 0.12);
}

.support-panel {
  padding: 22px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(36, 77, 59, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(72, 120, 96, 0.12);
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: #f5f0e4;
  border: 1px solid var(--line);
  text-decoration: none;
}

.contact-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.28;
}

.panel-note,
.info-card p,
.prose p,
.policy-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.panel-note {
  margin: 18px 0 0;
}

.content-band,
.split-section,
.policy-card {
  margin-bottom: 84px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(36, 77, 59, 0.12);
  border-radius: var(--radius);
}

.info-card:nth-child(2) {
  background: rgba(241, 233, 217, 0.92);
}

.info-card:nth-child(3) {
  background: rgba(255, 248, 236, 0.88);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  padding: 42px 0 8px;
  border-top: 1px solid var(--line);
}

.policy-hero {
  padding: 74px 0 44px;
}

.policy-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.updated {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(36, 77, 59, 0.12);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 720;
}

.policy-card {
  padding: clamp(24px, 5vw, 54px);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(36, 77, 59, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-card section + section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
}

.policy-card p {
  max-width: 820px;
  margin-bottom: 0;
}

.policy-card a {
  color: var(--green-dark);
  font-weight: 740;
}

.site-footer {
  min-height: 84px;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer span {
  margin-right: auto;
}

.site-footer a {
  text-decoration: none;
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.skip-link {
  color: var(--green-dark);
  font-weight: 760;
}

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

  .site-header {
    min-height: 72px;
  }

  .nav-links a {
    padding: 0 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 44px 0 58px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

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

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

  .policy-hero {
    padding-top: 48px;
  }

  .site-footer {
    flex-wrap: wrap;
    padding: 22px 0;
  }
}
