:root {
  --bg: #fffbf7;
  --surface: #ffffff;
  --text: #1a1a2e;
  --body: #3d3d56;
  --muted: #6e6e85;
  --accent: #e8553d;
  --border: #e8e4e0;
  --soft: #fff3ea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
a:hover { color: #c9432e; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 251, 247, 0.96);
}
.header-inner,
.legal-wrap,
.footer-inner {
  width: min(100% - 40px, 880px);
  margin: 0 auto;
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.back-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.legal-wrap { padding: 72px 0 88px; }
.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1,
h2 {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.25rem, 7vw, 3.6rem);
  line-height: 1.1;
}
h2 {
  margin: 42px 0 10px;
  font-size: 1.55rem;
  line-height: 1.25;
}
p,
li { font-size: 1rem; }
.updated {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}
.summary {
  margin-bottom: 42px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--soft);
}
ul { padding-left: 1.35rem; }
li + li { margin-top: 7px; }
.contact-card {
  margin-top: 48px;
  padding: 24px 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.contact-card h2 { margin-top: 0; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 640px) {
  .header-inner,
  .footer-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .legal-wrap { padding: 52px 0 64px; }
  .footer-links { flex-direction: column; gap: 8px; }
}
