.legal-body {
  background: var(--ivory);
}

.legal-header {
  position: relative;
  overflow: hidden;
  padding: 42px clamp(20px, 5vw, 72px) 110px;
  background: var(--navy-900);
  color: var(--white);
}

.legal-header::after {
  position: absolute;
  right: -4vw;
  bottom: -11vw;
  color: rgba(255, 255, 255, .035);
  content: "LR";
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(190px, 31vw, 470px);
  font-weight: 600;
  letter-spacing: -.1em;
  line-height: .7;
  pointer-events: none;
}

.legal-nav,
.legal-hero,
.legal-card {
  width: min(900px, 100%);
  margin-inline: auto;
}

.legal-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.legal-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-back svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.legal-hero {
  position: relative;
  z-index: 1;
  padding-top: clamp(70px, 10vw, 122px);
}

.legal-hero .eyebrow {
  color: var(--yellow);
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .96;
}

.legal-hero > p:last-child {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.legal-main {
  position: relative;
  z-index: 2;
  padding: 0 20px 96px;
}

.legal-card {
  margin-top: -48px;
  padding: clamp(36px, 6vw, 72px);
  border-top: 5px solid var(--yellow);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.legal-section + .legal-section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--navy-900);
  font-family: "Libre Bodoni", Georgia, serif;
  font-size: clamp(27px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.legal-section p,
.legal-section li {
  color: var(--slate);
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 13px;
}

.legal-section ul,
.legal-section ol {
  margin: 18px 0 0;
  padding-left: 24px;
}

.legal-section li {
  padding-left: 7px;
}

.legal-section li + li {
  margin-top: 11px;
}

.legal-section strong {
  color: var(--navy-900);
}

.legal-section a {
  color: var(--blue);
  font-weight: 600;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 4px solid var(--yellow);
  background: var(--ivory);
  color: var(--navy-800);
}

.legal-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 13px;
}

.legal-footer {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--navy-950);
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
}

.legal-footer p {
  margin: 0;
}

.legal-footer a {
  color: var(--white);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .legal-header { padding-top: 24px; }
  .legal-brand span { display: none; }
  .legal-brand img { width: 128px; }
  .legal-back { letter-spacing: .08em; }
  .legal-hero { padding-top: 70px; }
  .legal-main { padding-inline: 12px; }
  .legal-card { padding: 38px 24px; }
  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
