:root {
  --bg: #cbb57a;
  --panel: #9e8c5c;
  --panel-deeper: #6f6442;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.86);
  --muted2: rgba(255, 255, 255, 0.72);
  --accent: rgba(35, 35, 35, 0.55);

  --container: 980px;
  --radius-lg: 46px;
  --radius-md: 34px;
  --radius-sm: 18px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  --border-soft: 1px solid rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: clamp(44px, 6vw, 72px) 0;
}

.section-tight {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(68px, 7vw, 96px);
}

.site-header {
  padding: 24px 0 10px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0.95;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--text);
}

.header-spacer {
  width: 120px;
}

.page-hero {
  padding: clamp(54px, 7vw, 92px) 0 clamp(18px, 3vw, 28px);
}

.page-hero-inner {
  text-align: center;
}

.page-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
}

.page-subtitle {
  margin: 12px auto 0;
  max-width: 760px;
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.6;
}

.legal-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow);
  border: var(--border-soft);
}

.legal-meta {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.legal-card h2 {
  margin: 22px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.legal-card h3 {
  margin: 18px 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

.legal-card ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.legal-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-link:hover {
  opacity: 0.9;
}

.site-footer {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.16);
  padding: 18px 0 14px;
}

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

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.footer-link:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 8px;
}

.copyright {
  color: var(--muted2);
  font-size: 11px;
}

@media (max-width: 820px) {
  .header-spacer {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
