:root {
  --ink: #102d29;
  --teal: #0f8179;
  --paper: #fffdf7;
  --sand: #f3ead6;
  --line: #d8ccb5;
  --warm: #d94c2f;
}
* { box-sizing: border-box; }
html { color: var(--ink); background: var(--sand); font-family: "Trebuchet MS", "Gill Sans", sans-serif; }
body { margin: 0; min-height: 100vh; background: radial-gradient(circle at 92% 4%, #cae9df 0, transparent 35rem), repeating-linear-gradient(120deg, rgba(16,45,41,.035) 0 1px, transparent 1px 34px), var(--paper); }
a { color: inherit; }
.legal-topbar { min-height: 88px; padding: 20px clamp(20px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.legal-brand { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; font-weight: 900; font-size: 1.25rem; }
.legal-brand span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: white; background: var(--teal); font-family: Georgia, serif; font-size: 1.6rem; }
.legal-back { padding: 12px 18px; border-radius: 12px; color: white; background: var(--ink); text-decoration: none; font-weight: 800; }
.legal-main { width: min(1080px, calc(100% - 40px)); margin: 0 auto; padding: clamp(54px, 8vw, 100px) 0; }
.legal-kicker { margin: 0 0 14px; color: var(--teal); font: 800 .88rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .18em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 900px; margin: 0; font-size: clamp(3rem, 8vw, 7rem); line-height: .92; letter-spacing: -.045em; }
.legal-lead { max-width: 760px; margin: 28px 0 10px; font-size: clamp(1.15rem, 2.3vw, 1.55rem); line-height: 1.55; }
.legal-updated { color: #61706c; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 48px; }
.legal-card { padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,247,.9); box-shadow: 10px 10px 0 rgba(15,129,121,.08); }
.legal-card:first-child { grid-column: 1 / -1; background: var(--ink); color: white; box-shadow: 10px 10px 0 #f2b83f; }
.legal-card h2 { margin: 0 0 18px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.legal-card p { margin: 0 0 14px; line-height: 1.7; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-data { display: grid; gap: 12px; margin: 0; }
.legal-data div { display: grid; grid-template-columns: minmax(130px, .35fr) 1fr; gap: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.2); }
.legal-data div:last-child { border: 0; padding-bottom: 0; }
.legal-data dt { font-weight: 900; }
.legal-data dd { margin: 0; overflow-wrap: anywhere; }
.site-legal-footer { border-top: 1px solid var(--line); background: var(--ink); color: white; }
.site-legal-footer__inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0; display: grid; gap: 18px; }
.site-legal-footer strong { font-family: Georgia, serif; font-size: 1.5rem; }
.site-legal-footer nav { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.site-legal-footer a { color: inherit; text-underline-offset: 4px; }
.site-legal-footer span { color: #bfd1cb; }
@media (max-width: 720px) {
  .legal-topbar { min-height: 72px; padding: 14px 18px; }
  .legal-brand span { width: 40px; height: 40px; }
  .legal-back { padding: 10px 13px; }
  .legal-main { width: min(100% - 28px, 1080px); padding: 46px 0 68px; }
  .legal-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .legal-card:first-child { grid-column: auto; }
  .legal-data div { grid-template-columns: 1fr; gap: 5px; }
  .site-legal-footer__inner { width: min(100% - 28px, 1180px); }
}