:root {
  --accent: #801414;
  --text: #1a1816;
  --text-muted: #6b6560;
  --border: rgba(26, 24, 22, 0.1);
  --bg: #faf9f7;
  --max-w: 760px;
}

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

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(16px, 3vw, 32px);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.legal-back {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.legal-back:hover { color: var(--accent); text-decoration: none; }

.legal-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--accent);
  text-decoration: none;
}

.legal-page {
  flex: 1;
  padding: clamp(32px, 6vw, 64px) clamp(16px, 3vw, 32px);
}

.legal-content {
  max-width: var(--max-w);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(28px, 5vw, 48px);
}

.legal-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-content p { margin-bottom: 14px; }

.legal-content ul {
  margin: 0 0 16px 1.2em;
}

.legal-content li { margin-bottom: 6px; }

.legal-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 20px clamp(16px, 3vw, 32px);
}

.legal-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

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

.legal-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
}

.legal-footer-links a:hover { color: var(--accent); }
