:root {
  color-scheme: light;
  --ink: #25313c;
  --muted: #64727d;
  --paper: #fffdf8;
  --cream: #f7f0e2;
  --line: #e4dac8;
  --accent: #e8785d;
  --accent-dark: #a84736;
  --green: #5e8069;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(232, 120, 93, .12), transparent 28rem),
    linear-gradient(180deg, var(--cream), #f9f6ef 28rem, #f4efe5);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

a { color: var(--accent-dark); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

.site-header {
  border-bottom: 1px solid rgba(120, 100, 74, .14);
  background: rgba(255, 253, 248, .78);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  width: min(1120px, calc(100% - 36px));
  min-height: 68px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand span { color: var(--accent); }
.nav-links { display: flex; gap: 18px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--accent-dark); }

main {
  width: min(820px, calc(100% - 36px));
  margin: 64px auto 88px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 10px;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.lede { max-width: 660px; color: var(--muted); font-size: 18px; }
.updated { color: var(--muted); font-size: 14px; }

.notice {
  margin: 30px 0 38px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 255, 255, .62);
}

.policy {
  padding: 30px clamp(22px, 5vw, 52px) 44px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 22px 55px rgba(70, 54, 35, .08);
}

h2 {
  margin: 38px 0 8px;
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -.02em;
}

h3 { margin: 24px 0 4px; font-size: 17px; }
p, ul { margin-top: 8px; }
li + li { margin-top: 7px; }
.policy h2:first-child { margin-top: 0; }
.summary-table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; }
.summary-table th, .summary-table td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.summary-table th { width: 32%; background: #f8f1e5; }

footer {
  padding: 26px 18px 42px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 580px) {
  .nav { min-height: 60px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 13px; }
  main { margin-top: 42px; }
  .policy { border-radius: 16px; }
  .summary-table th, .summary-table td { display: block; width: 100%; }
}

@media print {
  body { background: white; }
  .site-header { position: static; }
  main { margin-top: 32px; }
  .policy { border: 0; box-shadow: none; padding: 0; }
}
