:root {
  color-scheme: dark;
  --ink: #f5f0e7;
  --muted: #aeb7c7;
  --dim: #778196;
  --gold: #e6b868;
  --gold-soft: #f1d29b;
  --night: #08111f;
  --night-deep: #050a13;
  --panel: rgba(18, 31, 51, .68);
  --line: rgba(230, 184, 104, .19);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 13% 19%, rgba(70, 102, 145, .17) 0 1px, transparent 2px),
    radial-gradient(circle at 81% 12%, rgba(230, 184, 104, .22) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 53%, rgba(70, 102, 145, .14) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 74%, rgba(230, 184, 104, .16) 0 1px, transparent 2px),
    linear-gradient(150deg, var(--night) 0%, var(--night-deep) 72%);
  background-size: 180px 180px, 230px 230px, 260px 260px, 310px 310px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

a { color: inherit; text-underline-offset: .22em; }
a:hover { color: var(--gold-soft); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; border-radius: 2px; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  color: var(--night-deep);
  background: var(--gold-soft);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { width: 24px; height: 24px; fill: var(--gold); }
nav a { color: var(--muted); font-size: .9rem; text-decoration: none; }
nav a[aria-current="page"] { color: var(--gold-soft); }

.hero { display: grid; align-content: center; min-height: min(700px, calc(100vh - 88px)); padding-block: 96px; }
.eyebrow { margin: 0 0 28px; color: var(--gold-soft); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.dot { display: inline-block; width: 6px; height: 6px; margin: 0 10px 2px 0; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }

h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero h1 { max-width: 900px; margin: 0; font-size: clamp(3.4rem, 8.5vw, 7.4rem); line-height: .93; letter-spacing: -.055em; }
.hero h1 em { color: var(--gold-soft); font-weight: 400; }
.hero-copy { max-width: 680px; margin: 38px 0 26px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.text-link { width: fit-content; color: var(--gold-soft); font-weight: 650; text-decoration: none; border-bottom: 1px solid var(--line); }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid rgba(255, 255, 255, .08); }
.principles article { padding: 54px 42px 58px 0; }
.principles article + article { padding-left: 42px; border-left: 1px solid rgba(255, 255, 255, .08); }
.principles .number { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.principles h2 { margin: 18px 0 14px; font-size: 1.7rem; line-height: 1.15; }
.principles p { margin: 0; color: var(--muted); font-size: .95rem; }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding-block: 34px 48px; color: var(--dim); font-size: .82rem; }
.site-footer p { margin: 0; }

.policy { padding-block: 88px 120px; }
.policy-title { max-width: 800px; padding-bottom: 64px; }
.policy-title h1 { margin: 0; font-size: clamp(3.4rem, 7vw, 6rem); line-height: 1; letter-spacing: -.045em; }
.effective { margin: 20px 0 0; color: var(--dim); font-size: .88rem; }
.lede { margin: 34px 0 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.32rem); line-height: 1.6; }

.policy-grid { display: grid; grid-template-columns: 280px minmax(0, 720px); gap: 90px; align-items: start; }
.policy-grid aside { position: sticky; top: 28px; padding: 28px; background: var(--panel); border: 1px solid var(--line); border-radius: 4px; backdrop-filter: blur(10px); }
.policy-grid aside h2 { margin: 0 0 18px; font-family: inherit; font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 8px 0 8px 25px; color: var(--muted); font-size: .88rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

.policy-body section { padding: 0 0 44px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.policy-body section + section { padding-top: 44px; }
.policy-body h2 { margin: 0 0 18px; color: var(--gold-soft); font-size: 1.55rem; line-height: 1.25; }
.policy-body p { margin: 0; color: var(--muted); }
.policy-body p + p { margin-top: 16px; }
.policy-body .contact { border-bottom: 0; }
.contact a { color: var(--gold-soft); }

@media (max-width: 820px) {
  .principles { grid-template-columns: 1fr; }
  .principles article { padding: 40px 0; }
  .principles article + article { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, .08); border-left: 0; }
  .policy-grid { grid-template-columns: 1fr; gap: 58px; }
  .policy-grid aside { position: static; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 74px; }
  .brand-mark { width: 21px; height: 21px; }
  .hero { min-height: calc(100vh - 74px); padding-block: 70px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .policy { padding-block: 64px 90px; }
  .policy-title { padding-bottom: 48px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
