:root {
  color-scheme: dark;
  --black: #030405;
  --black-soft: #090b0d;
  --bone: #f0eee8;
  --ash: #a5a7a6;
  --green: #183c2b;
  --green-bright: #3f7658;
  --line: rgba(240, 238, 232, 0.16);
  --max: 68rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 20rem;
  background:
    radial-gradient(circle at 12% 22%, rgba(24, 60, 43, 0.22), transparent 28rem),
    var(--black);
  color: var(--bone);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.72;
}

body::before {
  content: "";
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(circle at 13% 37%, transparent 0 1px, #fff 1px 2px, transparent 2px 4px),
    repeating-linear-gradient(117deg, transparent 0 3px, #fff 3px 4px, transparent 4px 9px);
  background-size: 9px 11px, 17px 23px;
  mix-blend-mode: soft-light;
}

a { color: inherit; }
.shell { width: min(calc(100% - 2.25rem), var(--max)); margin-inline: auto; }

.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 5, 0.9);
  backdrop-filter: blur(16px) saturate(0.8);
}

.legal-nav {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-logo { display: inline-flex; width: 10rem; }
.legal-logo img { display: block; width: 100%; height: auto; }
.back-link {
  color: rgba(240, 238, 232, 0.78);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.back-link:hover, .back-link:focus-visible { color: var(--bone); }

.legal-main { min-height: calc(100vh - 11rem); padding-block: clamp(4rem, 8vw, 7rem); }
.legal-intro { max-width: 49rem; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-bright);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}
.lead { max-width: 43rem; margin: 1.5rem 0 0; color: var(--ash); font-size: clamp(1.05rem, 2vw, 1.2rem); }

.legal-content { max-width: 50rem; }
.legal-section { padding-block: 2rem; border-top: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 1px solid var(--line); }
.legal-section h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}
.legal-section h3 { margin: 1.5rem 0 0.45rem; font-size: 1rem; }
.legal-section p { margin: 0.8rem 0; color: #c4c5c2; }
.legal-section p:first-of-type { margin-top: 0; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 0.8rem 0 0; padding-left: 1.25rem; color: #c4c5c2; }
.legal-section li + li { margin-top: 0.35rem; }
.legal-section a { color: var(--bone); text-underline-offset: 0.28em; }
.legal-section a:hover, .legal-section a:focus-visible { color: #79a68a; }
.address { font-style: normal; color: #d8d8d3; }
.address strong { color: var(--bone); }
.note { color: var(--ash); font-size: 0.92rem; }

.legal-footer { margin-top: 4rem; border-top: 1px solid var(--line); background: #010202; }
.legal-footer-inner {
  min-height: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #747879;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.legal-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.65rem 1.2rem; }
.legal-footer a { color: inherit; text-underline-offset: 0.3em; }
.legal-footer a:hover, .legal-footer a:focus-visible { color: var(--bone); }

:focus-visible { outline: 2px solid var(--bone); outline-offset: 4px; }

@media (max-width: 40rem) {
  .shell { width: min(calc(100% - 1.5rem), var(--max)); }
  .legal-nav { min-height: 4.75rem; }
  .legal-logo { width: 7.6rem; }
  .back-link { font-size: 0.76rem; letter-spacing: 0.09em; }
  .legal-main { padding-block: 3.25rem; }
  .legal-intro { padding-bottom: 2.25rem; }
  .legal-section { padding-block: 1.65rem; }
  .legal-footer-inner { min-height: 0; flex-direction: column; align-items: flex-start; padding-block: 1.6rem; }
  .legal-footer-links { justify-content: flex-start; }
}

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