:root {
  color-scheme: light;
  --paper: #f6f0e6;
  --paper-deep: #eadfce;
  --ink: #251a16;
  --muted: #736862;
  --line: rgba(65, 45, 36, .18);
  --peach: #df8e6f;
  --peach-soft: #f3c3ad;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 2%, rgba(223, 142, 111, .23), transparent 27rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; }

.legal-nav {
  position: sticky;
  z-index: 5;
  top: 0;
  min-height: 72px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 240, 230, .88);
  backdrop-filter: blur(18px);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .24em;
}

.legal-brand img {
  width: 34px;
  height: 34px;
  padding: 2px;
  object-fit: contain;
  border-radius: 9px;
  background: #fffaf5;
}

.legal-links { display: flex; align-items: center; gap: 6px; }

.legal-links a {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.legal-links a:hover,
.legal-links a[aria-current="page"] { color: var(--ink); background: rgba(255, 255, 255, .62); }

.legal-links a:focus-visible { outline: 2px solid var(--peach); outline-offset: 2px; }

.legal-shell { width: min(900px, calc(100% - 44px)); margin: 0 auto; }

.legal-hero { padding: clamp(82px, 11vw, 142px) 0 clamp(64px, 8vw, 104px); }

.legal-eyebrow {
  display: block;
  margin-bottom: 20px;
  color: #a35237;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 9vw, 104px);
  font-weight: 520;
  line-height: .92;
  letter-spacing: -.065em;
}

.legal-lede { max-width: 650px; margin: 34px 0 0; color: var(--muted); font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55; }

.legal-meta { margin-top: 24px; color: #9b7161; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.legal-summary {
  margin-bottom: 72px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(132, 78, 57, .24);
  background: rgba(255, 255, 255, .43);
  box-shadow: 0 24px 70px rgba(91, 54, 39, .07);
}

.legal-summary strong { display: block; margin-bottom: 8px; font-size: 18px; }
.legal-summary p { margin: 0; color: var(--muted); }

.legal-body { padding-bottom: 120px; }

.legal-section {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 24px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.legal-number { padding-top: 4px; color: #b56447; font-size: 11px; font-weight: 800; letter-spacing: .18em; }

.legal-content h2 { margin: 0 0 17px; font-size: clamp(24px, 3.2vw, 34px); font-weight: 650; line-height: 1.15; letter-spacing: -.035em; }
.legal-content h3 { margin: 28px 0 8px; font-size: 16px; }
.legal-content p { margin: 0 0 14px; color: #534943; }
.legal-content ul { margin: 10px 0 18px; padding-left: 22px; color: #534943; }
.legal-content li { margin: 7px 0; }
.legal-content a { text-decoration-color: var(--peach); text-underline-offset: 3px; }

.legal-footer {
  min-height: 110px;
  padding: 28px clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.legal-footer a { text-underline-offset: 3px; }

@media (max-width: 620px) {
  .legal-nav { min-height: 64px; gap: 12px; padding-inline: 18px; }
  .legal-brand { gap: 8px; font-size: 11px; letter-spacing: .18em; }
  .legal-links a { min-height: 44px; padding-inline: 10px; font-size: 12px; }
  .legal-links a:first-child { display: none; }
  .legal-shell { width: min(100% - 36px, 900px); }
  .legal-hero { padding-top: 70px; }
  .legal-section { grid-template-columns: 1fr; gap: 10px; }
  .legal-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
