:root {
  --navy: #06162a;
  --gold: #d8b679;
  --paper: #f7f4ed;
  --ink: #0a1a2d;
  --muted: #5d6874;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 12px max(24px, calc((100vw - 1000px) / 2));
  background: var(--navy);
  color: rgba(255,255,255,.74);
  font-size: .75rem;
}

.legal-header .brand {
  display: block;
  width: 52px;
  height: 62px;
  overflow: hidden;
}

.brand-logo-full {
  width: 52px;
  height: 62px;
  object-fit: cover;
  object-position: center top;
}

.legal-page {
  width: min(900px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 100px 0 130px;
}

.section-kicker {
  margin: 0 0 20px;
  color: #8b6a35;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
}

h1 {
  margin: 0 0 55px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 500;
}

p { margin: 0; color: var(--muted); }

.legal-page section {
  padding: 30px 0;
  border-top: 1px solid rgba(10,26,45,.14);
}

.legal-warning {
  margin-bottom: 45px;
  padding: 25px;
  border-left: 3px solid var(--gold);
  background: #fffaf0;
}

.legal-warning strong { display: block; margin-bottom: 5px; }

.legal-disclaimer {
  margin-top: 45px;
  padding: 25px;
  background: var(--navy);
  color: rgba(255,255,255,.65);
  font-size: .78rem;
}

@media (max-width: 600px) {
  .legal-page { padding-top: 70px; }
  .legal-header { padding-inline: 20px; }
}
