:root {
  color-scheme: dark;
  --ink: #eaeFEf;
  --muted: rgba(234, 239, 239, 0.7);
  --faint: rgba(234, 239, 239, 0.48);
  --gold: #f1ea99;
  --line: rgba(241, 234, 153, 0.2);
  --page: #050b0f;
}

* { box-sizing: border-box; }

html {
  margin: 0;
  padding: 0;
  background: var(--page);
  font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(120% 90% at 50% 8%, #2c4a56 0%, #16292f 44%, #0a161b 76%, #050b0f 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  mix-blend-mode: overlay;
  opacity: 0.5;
}

a { color: inherit; }

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
  border-radius: 3px;
}

.site-header,
.legal-shell,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(241, 234, 153, 0.13);
}

.brand {
  font-family: 'Iowan Old Style', 'Palatino', Georgia, 'Times New Roman', serif;
  font-size: 23px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand em {
  opacity: 0.5;
  font-style: italic;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-nav a {
  color: rgba(234, 239, 239, 0.58);
  text-decoration: none;
  transition: color 180ms ease;
}

.legal-nav a:hover,
.legal-nav a[aria-current='page'] { color: var(--gold); }

.legal-shell {
  width: min(820px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0 96px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

h1,
h2 {
  font-family: 'Iowan Old Style', 'Palatino', Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 40px rgba(5, 11, 15, 0.65);
}

.effective-date {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: 'Iowan Old Style', 'Palatino', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-style: italic;
}

.gold-rule {
  height: 1px;
  margin: 44px 0 52px;
  background: linear-gradient(90deg, var(--gold), rgba(241, 234, 153, 0.05));
}

.legal-copy h2 {
  margin: 52px 0 15px;
  color: var(--gold);
  font-size: clamp(24px, 3.5vw, 33px);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.legal-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.legal-copy > p:first-child {
  color: rgba(234, 239, 239, 0.88);
  font-family: 'Iowan Old Style', 'Palatino', Georgia, 'Times New Roman', serif;
  font-size: 21px;
  line-height: 1.62;
}

.legal-copy a {
  color: var(--gold);
  text-decoration-color: rgba(241, 234, 153, 0.45);
  text-underline-offset: 3px;
}

.legal-copy a:hover { text-decoration-color: var(--gold); }

.site-footer {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(241, 234, 153, 0.17);
}

.footer-mark {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-note {
  color: rgba(241, 234, 153, 0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: rgba(234, 239, 239, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 680px) {
  .site-header,
  .legal-shell,
  .site-footer {
    width: min(100% - 36px, 820px);
  }

  .site-header {
    align-items: flex-start;
    padding: 24px 0;
  }

  .legal-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    letter-spacing: 0.14em;
  }

  .legal-shell { padding: 62px 0 72px; }
  .gold-rule { margin: 36px 0 42px; }
  .legal-copy h2 { margin-top: 42px; }
  .legal-copy p { font-size: 15px; line-height: 1.72; }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}
