:root {
  --ink: #10212d;
  --muted: #5d7280;
  --line: #dfe8ec;
  --paper: #f5f8f9;
  --panel: #ffffff;
  --brand: #0b7a6e;
  --gold: #b98524;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

a { color: var(--brand); }

.site-header {
  background: #071218;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.header-inner,
.legal-main,
.footer-inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.back-link {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 13px;
}

.back-link:hover { color: #fff; }

.legal-main {
  padding: 64px 0 80px;
}

.legal-intro {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.1;
}

.effective {
  color: var(--muted);
  margin: 0;
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 21px;
}

.legal-section h3 {
  margin: 22px 0 8px;
  font-size: 16px;
}

.legal-section p { margin: 10px 0; }

.legal-section ul,
.legal-section ol {
  padding-left: 22px;
  margin: 12px 0;
}

.notice {
  border-left: 3px solid var(--gold);
  background: #fff;
  padding: 18px 20px;
  margin: 22px 0 4px;
}

.contact-block {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
}

.site-footer {
  background: #071218;
  color: rgba(255,255,255,.58);
  padding: 26px 0;
  font-size: 12px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .header-inner { padding: 16px 0; }
  .legal-main { padding-top: 44px; }
}
