:root {
  --paper: #fbf6f1;
  --card: #fffaf6;
  --ink: #302426;
  --muted: #716461;
  --line: #e5d3c7;
  --rose: #8d4057;
  --rose-deep: #633346;
  --soft: #f3e6dc;
  --shadow: 0 24px 60px rgba(89, 54, 48, .12);
}

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf6 0%, var(--paper) 46%, var(--soft) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a { color: var(--rose-deep); }

a:focus-visible,
button:focus-visible {
  outline: 3px solid #aa6478;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5;
  padding: 9px 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 9px;
  transform: translateY(-160%);
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 241, .94);
}

.header-inner,
.legal-page,
.footer-inner {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  text-decoration: none;
}

.home-link { font-weight: 700; }

.legal-page { padding: 64px 0 76px; }

.eyebrow {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--rose-deep);
  line-height: 1.16;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.3rem);
  font-weight: 500;
}

.updated {
  margin: 12px 0 32px;
  color: var(--muted);
}

.legal-card {
  padding: clamp(26px, 6vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 246, .92);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 34px 0 8px;
  font-size: 1.55rem;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p,
.legal-card ul,
.legal-card ol { margin: 0 0 18px; }

.legal-card li + li { margin-top: 8px; }

.notice {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--rose);
  border-radius: 12px;
  background: var(--soft);
}

.button {
  display: inline-block;
  margin: 8px 0 18px;
  padding: 13px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--rose-deep);
  font-weight: 800;
  text-decoration: none;
}

.small { color: var(--muted); font-size: .92rem; }

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  background: #33272a;
  color: #f7eeea;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
}

.site-footer a { color: #f7eeea; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-inner { min-height: 68px; }
  .legal-page { padding: 42px 0 56px; }
  .legal-card { border-radius: 20px; }
}

