:root {
  color-scheme: light dark;
  --page: #f4f1e8;
  --page-glow: rgba(224, 178, 88, 0.24);
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffdf8;
  --text: #20231e;
  --muted: #686c63;
  --line: rgba(32, 35, 30, 0.11);
  --accent: #347458;
  --accent-strong: #20563e;
  --accent-soft: #e2eee6;
  --warm: #d7a44a;
  --shadow: 0 24px 70px rgba(55, 48, 35, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 8%, var(--page-glow), transparent 30rem),
    var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.78;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent-strong);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 40px, 920px);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 17px;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #4a8a6a, #286347);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(40, 99, 71, 0.2);
  font-size: 17px;
  font-weight: 800;
}

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

.page-shell {
  width: min(100% - 40px, 920px);
  margin: 54px auto 80px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 64px);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -94px;
  bottom: -120px;
  background: var(--accent-soft);
  border-radius: 50%;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.16em;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.hero-intro {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}

.policy-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 52px;
  margin: 34px 0 0;
}

.policy-meta div {
  display: grid;
  gap: 2px;
}

.policy-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.policy-meta dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.privacy-summary {
  margin: 22px 0 0;
  padding: 22px 26px;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid rgba(52, 116, 88, 0.14);
  border-radius: 22px;
}

.privacy-summary p {
  margin: 0;
}

.policy-sections {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.policy-section {
  padding: clamp(24px, 4.5vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.policy-section h2,
.contact-card h2 {
  margin: 0 0 16px;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.policy-section p {
  margin: 0 0 14px;
  color: var(--muted);
}

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

.policy-section ul {
  margin: 15px 0 0;
  padding-left: 1.3em;
  color: var(--muted);
}

.policy-section li {
  padding-left: 0.35em;
}

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

.policy-section li::marker {
  color: var(--warm);
}

.contact-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 22px;
  padding: clamp(26px, 5vw, 44px);
  color: #fff;
  background: linear-gradient(145deg, #326f54, #1e513a);
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(32, 86, 62, 0.18);
}

.contact-card .eyebrow,
.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card p {
  max-width: 560px;
  margin: 0;
}

.contact-link {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: #214c38;
  background: #fff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.contact-link:hover {
  background: #f2f7f4;
}

.contact-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.site-footer {
  width: min(100% - 40px, 920px);
  margin: -48px auto 32px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 680px) {
  .header-inner,
  .page-shell,
  .site-footer {
    width: min(100% - 28px, 920px);
  }

  .page-shell {
    margin-top: 24px;
    margin-bottom: 64px;
  }

  .hero {
    border-radius: 24px;
  }

  .contact-card {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-link {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #171916;
    --page-glow: rgba(121, 100, 50, 0.18);
    --surface: rgba(36, 39, 34, 0.76);
    --surface-strong: #22251f;
    --text: #f1f2ed;
    --muted: #b6bab0;
    --line: rgba(241, 242, 237, 0.1);
    --accent: #83c49f;
    --accent-strong: #b2ddc2;
    --accent-soft: #203a2c;
    --warm: #e1b868;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  }

  .contact-link {
    color: #214c38;
  }
}

@media print {
  :root {
    --page: #fff;
    --surface: #fff;
    --surface-strong: #fff;
    --text: #111;
    --muted: #333;
    --line: #ddd;
  }

  body {
    background: #fff;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .privacy-summary {
    display: none;
  }

  .page-shell {
    width: 100%;
    margin: 0;
  }

  .hero,
  .policy-section,
  .contact-card {
    break-inside: avoid;
    color: #111;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: none;
  }

  .contact-card p,
  .contact-card .eyebrow {
    color: #333;
  }

  .contact-link {
    color: #111;
    background: #fff;
  }
}
