:root {
  --ink: #103930;
  --ink-soft: #49635d;
  --paper: #fffdf7;
  --canvas: #f5f1e8;
  --line: #d8ded7;
  --accent: #ff735e;
  --accent-soft: #ffe8df;
  --lime: #c7fb43;
  --white: #ffffff;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 92% 6%, rgba(199, 251, 67, 0.24), transparent 24rem),
    var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: #a33225;
}

.site-header {
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner,
.page-shell,
.footer-inner {
  margin: 0 auto;
  max-width: 1120px;
  padding-left: 28px;
  padding-right: 28px;
}

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

.brand {
  align-items: center;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  height: 11px;
  margin-left: 2px;
  width: 11px;
}

.header-link {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.page-shell {
  padding-bottom: 72px;
  padding-top: 76px;
}

.eyebrow {
  color: #bb3e30;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.7rem);
  margin: 0;
  max-width: 850px;
}

.intro {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.4vw, 1.32rem);
  margin: 24px 0 0;
  max-width: 760px;
}

.date-line {
  border-left: 4px solid var(--accent);
  font-size: 0.9rem;
  margin: 30px 0 0;
  padding-left: 14px;
}

.summary-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 52px 0 64px;
}

.summary-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 168px;
  padding: 24px;
}

.summary-number {
  align-items: center;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 32px;
  width: 34px;
}

.summary-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.content-layout {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 220px minmax(0, 1fr);
}

.contents {
  position: sticky;
  top: 104px;
}

.contents p {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.contents ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.contents a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-decoration: none;
}

.policy-content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 6vw, 64px);
}

.policy-section {
  scroll-margin-top: 104px;
}

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

.policy-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  margin: 0 0 18px;
}

.policy-section h3 {
  font-size: 1.18rem;
  margin: 28px 0 8px;
}

.policy-section p,
.policy-section ul {
  color: var(--ink-soft);
}

.policy-section ul {
  padding-left: 22px;
}

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

.policy-section strong {
  color: var(--ink);
}

.callout {
  background: var(--accent-soft);
  border-radius: 16px;
  color: var(--ink) !important;
  margin-top: 24px;
  padding: 20px 22px;
}

.button {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-top: 8px;
  padding: 12px 20px;
  text-decoration: none;
}

.button:hover {
  background: #1b5145;
  color: var(--white);
}

.site-footer {
  background: var(--ink);
  color: #e7eee9;
}

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

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: inherit;
}

.landing {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 188px);
}

.landing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(30px, 7vw, 72px);
  width: 100%;
}

.landing-card h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
}

@media (max-width: 820px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }

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

  .summary-number {
    margin-bottom: 16px;
  }

  .content-layout {
    display: block;
  }

  .contents {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: 22px;
    padding: 20px;
    position: static;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    height: 64px;
  }

  .page-shell {
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }
}

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