:root {
  --brown: #4c2806;
  --ink: #111111;
  --muted: #6f6862;
  --paper: #fef9ef;
  --soft: #fffaf0;
  --line: #f2e6cd;
  --orange: #f66f00;
}

* { box-sizing: border-box; }
html { background: #111; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Inter, system-ui, sans-serif;
  margin: 0 auto;
  max-width: 1265px;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
.site-header {
  align-items: center;
  background: rgba(254, 249, 239, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 60px;
  justify-content: space-between;
  padding: 0 80px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand img { display: block; height: auto; width: 48px; }
.nav {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 14px;
  gap: 30px;
}
.contact-pill {
  background: rgba(43, 43, 46, 0.06);
  border-radius: 8px;
  color: var(--brown);
  padding: 13px 20px;
}
main {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  margin: 0 80px;
}
section {
  border-bottom: 1px solid var(--line);
  padding: 82px 40px;
}
.legal-hero {
  background-image: linear-gradient(90deg, rgba(254,249,239,0.98) 0%, rgba(254,249,239,0.84) 58%, rgba(254,249,239,0.36) 100%), url("/assets/wrldwide-ai-hero-systems.png");
  background-position: center;
  background-size: cover;
}
.eyebrow {
  color: var(--orange);
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}
h1, h2 {
  color: var(--brown);
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}
h1 {
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.92;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin-top: 42px;
}
p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 20px 0 0;
}
.legal-body {
  max-width: 860px;
}
.legal-body a {
  color: var(--brown);
  font-weight: 700;
}
.legal-body strong {
  color: var(--ink);
}
footer {
  align-items: start;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 42px;
  grid-template-columns: 1.5fr 1fr;
  margin: 0 80px;
  padding: 42px 40px;
}
footer div {
  display: grid;
  gap: 13px;
}
footer strong {
  color: var(--brown);
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
footer a {
  color: var(--muted);
  font-size: 14px;
}
footer a:hover { color: var(--brown); }
footer p {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 18px;
  }
  .brand img { width: 42px; }
  .nav a:not(.contact-pill) { display: none; }
  main, footer { margin: 0 16px; }
  section { padding: 54px 18px; }
  h1 { font-size: 58px; }
  footer { grid-template-columns: 1fr; padding: 34px 18px; }
}
