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

:root {
  --ink:    #0e0e0e;
  --paper:  #f5f2eb;
  --cream:  #ede9df;
  --accent: #2b6cb0;
  --accent2:#d97706;
  --muted:  #6b6659;
  --rule:   #c8c2b4;
}

html, body {
  height: 100%;
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 62px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover  { color: var(--ink); background: var(--cream); }
.nav-links a.active { color: var(--ink); background: var(--cream); }

/* ── HOME ── */
.home-hero {
  min-height: calc(100vh - 62px);
  display: grid;
  grid-template-columns: 1fr;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.75rem;
}
.hero-body strong { color: var(--ink); font-weight: 500; }

.feature-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.legal-header {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.legal-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.legal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.legal-date {
  font-size: 0.875rem;
  color: var(--muted);
}
.legal-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  margin: 2.25rem 0 0.6rem;
  color: var(--ink);
}
.legal-body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #3a3a35;
  margin-bottom: 0.75rem;
}
.legal-body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}
.legal-body ul li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #3a3a35;
  margin-bottom: 0.35rem;
}
.legal-body a { color: var(--accent); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-left { padding: 3rem 1.5rem; }
  nav { padding: 0 1.25rem; }
  .legal-wrap { padding: 2.5rem 1.25rem 4rem; }
  footer { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}
