:root {
  --paper: #f5f1ea;
  --paper-2: #efeae0;
  --ink: #1a1815;
  --text: #2a2723;
  --muted: #6b665d;
  --rule: #d8d1c1;
  --rule-soft: #e6dfd0;
  --accent: #7a2418;
  --blue: #0b2340;
  --white: #ffffff;
  --serif: "Fraunces", "Tiempos Headline", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}
p { margin: 0; }
.shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.topbar {
  width: min(1160px, calc(100% - 48px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--rule);
}
.brand img { width: 96px; height: 48px; object-fit: contain; }
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .16s, border-color .16s;
}
.nav a:hover,
.nav .active { color: var(--ink); border-color: var(--ink); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .18s, opacity .18s;
}
.nav-toggle-lines {
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav.is-open { display: block; }
.mobile-nav-inner {
  display: grid;
  padding: 8px 0 14px;
}
.mobile-nav a {
  padding: 13px 0;
  border-top: 1px solid var(--rule-soft);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.legal-hero {
  padding: clamp(54px, 8vw, 96px) 0 44px;
  border-bottom: 1px solid var(--rule);
}
.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
}
.legal-hero p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}
.updated {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 10px;
  border: 1px solid var(--rule);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.legal-band { padding: 48px 0 88px; }
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 24px;
  padding: 20px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,.42);
}
.legal-toc span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.legal-toc nav {
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.legal-toc a:hover { color: var(--accent); }
.legal-doc {
  display: grid;
  gap: 16px;
}
.legal-section {
  padding: 28px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,.48);
}
.legal-section h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
}
.legal-section h3 {
  margin: 20px 0 8px;
  color: var(--ink);
  font-size: 18px;
}
.legal-section p,
.legal-section li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.72;
}
.legal-section p + p { margin-top: 12px; }
.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}
.legal-callout {
  margin-top: 18px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(122,36,24,.06);
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}
.legal-section a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer {
  padding: 48px 0 26px;
  background: var(--ink);
  color: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(130px, .7fr));
  gap: 34px;
}
.footer-brand {
  display: inline-flex;
  width: 154px;
  margin-bottom: 18px;
}
.footer-brand img { width: 96px; height: 48px; object-fit: contain; }
.footer-brand-copy {
  max-width: 320px;
  color: #d8d1c1;
  font-size: 13px;
  line-height: 1.7;
}
.footer-label {
  display: block;
  margin-bottom: 14px;
  color: #a7b5c6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-nav,
.footer-links,
.footer-contact { display: grid; gap: 10px; }
.footer-nav a,
.footer-links a,
.footer-contact a {
  color: #d8d1c1;
  font-size: 13px;
  transition: color .16s;
}
.footer-nav a:hover,
.footer-links a:hover,
.footer-contact a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(245,241,234,.16);
  color: #a7b5c6;
  font-size: 12px;
}

@media (max-width: 900px) {
  .topbar { min-height: 56px; }
  .brand img { width: 88px; height: 44px; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .shell,
  .topbar,
  .mobile-nav { width: min(100% - 30px, 1160px); }
  .topbar { min-height: 54px; }
  .brand img { width: 82px; height: 42px; }
  .legal-hero { padding: 42px 0 34px; }
  .legal-band { padding: 28px 0 58px; }
  .legal-section { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
