:root {
  --forest: #173b2a;
  --forest-deep: #0d261a;
  --gold: #c49a3a;
  --ink: #18201b;
  --muted: #617067;
  --paper: #ffffff;
  --canvas: #f1f5f1;
  --line: #d8e0da;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.12;
}

.legal-header {
  background: var(--forest-deep);
  color: var(--paper);
}

.legal-header__inner {
  display: flex;
  width: min(960px, calc(100% - 36px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.legal-header img {
  width: 164px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.legal-header a:last-child {
  color: #f0d89a;
  font-size: 0.82rem;
  font-weight: 760;
  text-decoration: none;
}

.legal-main {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 68px 0 88px;
}

.legal-hero {
  padding: 38px;
  border-left: 6px solid var(--gold);
  background: var(--paper);
}

.legal-eyebrow {
  margin-bottom: 10px;
  color: #8b691d;
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.legal-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content {
  padding: 14px 38px 38px;
  background: var(--paper);
}

.legal-content section {
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
  color: #4f5e55;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--forest);
  font-weight: 740;
}

.legal-callout {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: #fbf6e9;
}

.legal-footer {
  padding: 26px 18px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 620px) {
  .legal-header__inner {
    min-height: 66px;
  }

  .legal-header img {
    width: 138px;
  }

  .legal-main {
    padding: 24px 0 54px;
  }

  .legal-hero,
  .legal-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .legal-hero h1 {
    font-size: 2.3rem;
  }
}
