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

:root {
  --copper-700: #93502b;
  --copper-600: #ac6136;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: #fff;
  color: #111;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.legal-nav__logo {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}
.legal-nav__logo .mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--copper-700);
  text-transform: none;
}

.legal-nav__back {
  font-size: 0.825rem;
  color: rgba(0,0,0,0.45);
  text-decoration: none;
  transition: color 0.18s ease;
}
.legal-nav__back:hover { color: #000; }

.legal-main { padding: 4rem 0 6rem; }

.legal-container { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }

.legal-hero { margin-bottom: 3.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(0,0,0,0.08); }

.legal-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.35); margin-bottom: 0.75rem;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; letter-spacing: -0.01em; color: #0a0a0a; margin-bottom: 0.5rem;
}

.legal-subtitle { font-size: 0.9rem; color: rgba(0,0,0,0.4); }

.legal-body { display: flex; flex-direction: column; gap: 0; }

.legal-body h2 {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; color: #0a0a0a;
  margin-top: 2.5rem; margin-bottom: 0.875rem;
}
.legal-body h2:first-child { margin-top: 0; }

.legal-body p { font-size: 0.925rem; line-height: 1.75; color: rgba(0,0,0,0.6); margin-bottom: 0.875rem; }
.legal-body p:last-child { margin-bottom: 0; }

.legal-body ul { padding-left: 1.5rem; margin-bottom: 0.875rem; }
.legal-body li { font-size: 0.925rem; line-height: 1.75; color: rgba(0,0,0,0.6); margin-bottom: 0.25rem; }

.legal-body a { color: var(--copper-700); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: #000; }

.legal-body strong { color: rgba(0,0,0,0.8); font-weight: 600; }

.legal-info-box {
  background: #fff; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 0.75rem;
  padding: 1.25rem 1.5rem; margin-bottom: 0.875rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.legal-info-box p { margin-bottom: 0 !important; font-size: 0.875rem; }

.legal-footer {
  background: #fff; border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem 2rem; text-align: center;
}
.legal-footer p { font-size: 0.8rem; color: rgba(0,0,0,0.4); }
.legal-footer a { color: rgba(0,0,0,0.55); text-decoration: none; }
.legal-footer a:hover { color: #000; }
