:root {
  --navy: #060a20;
  --cream: #faf6f0;
  --terra: #c4622d;
  --gold: #d4a017;
  --ink: #171b2f;
  --muted: #5f6170;
  --line: rgba(6, 10, 32, 0.14);
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.75;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  border-bottom: 1px solid rgba(250, 246, 240, 0.14);
  background: var(--navy);
  color: var(--cream);
}

.header-inner,
.legal-main,
.footer-inner {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  object-fit: contain;
  padding: 7px;
}

.return-link {
  color: rgba(250, 246, 240, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.return-link:hover,
.return-link:focus-visible,
.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.legal-main { padding: clamp(58px, 9vw, 104px) 0; }

.legal-intro {
  max-width: 780px;
  margin-bottom: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terra);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.98;
}

.updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-sections {
  border-bottom: 1px solid var(--line);
}

.legal-section {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.section-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  line-height: 1.12;
}

.legal-section p { margin: 0; }

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section a {
  color: var(--terra);
  font-weight: 700;
}

.legal-footer {
  background: var(--navy);
  color: rgba(250, 246, 240, 0.72);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.legal-footer p { margin: 0; }

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-footer a {
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 620px) {
  .header-inner,
  .legal-main,
  .footer-inner { width: min(100% - 28px, 980px); }

  .header-inner { min-height: 72px; }
  .brand { font-size: 1.4rem; }
  .brand img { width: 38px; height: 38px; }
  .return-link { font-size: 0.74rem; }
  .legal-section { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
