:root {
  --navy: #0A1628;
  --navy-soft: #12243F;
  --gold: #C9A961;
  --gold-soft: #A68849;
  --cream: #F5EFE3;
  --cream-muted: #B9B2A3;
  --border: rgba(201, 169, 97, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy); color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300; line-height: 1.7; min-height: 100vh; position: relative;
}

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.8 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
main, nav, footer { position: relative; z-index: 2; }

.container { max-width: 820px; margin: 0 auto; padding: 0 2rem; }

nav {
  position: fixed; top: 0; left: 0; right: 0; padding: 1.25rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100; background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none;
}
.nav-mark { height: 34px; width: auto; }
.nav-text {
  font-family: 'Albert Sans', sans-serif; font-size: 0.95rem;
  letter-spacing: 0.32em; color: var(--gold); font-weight: 600; text-transform: uppercase;
}
.nav-back {
  font-family: 'Albert Sans', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.28em; color: var(--cream-muted); text-decoration: none;
  text-transform: uppercase; font-weight: 500; transition: color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav-back:hover { color: var(--gold); border-bottom-color: var(--gold); }

.legal {
  padding: 9rem 2rem 6rem;
}

.legal-label {
  font-family: 'Albert Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.legal-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.legal-title {
  font-family: 'Albert Sans', sans-serif; font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1rem; line-height: 1.2;
}

.legal-meta {
  font-size: 0.85rem; color: var(--cream-muted); margin-bottom: 3rem;
  font-style: italic;
}

.legal h2 {
  font-family: 'Albert Sans', sans-serif; font-size: 1.1rem;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold); margin-top: 2.75rem; margin-bottom: 1rem;
  line-height: 1.3;
}

.legal p, .legal ul {
  color: var(--cream-muted); font-size: 0.97rem;
  line-height: 1.8; margin-bottom: 1rem; max-width: 720px;
}

.legal ul {
  list-style: none; padding-left: 0;
}
.legal ul li {
  padding-left: 1.25rem; position: relative; margin-bottom: 0.5rem;
}
.legal ul li::before {
  content: '·'; position: absolute; left: 0.25rem; top: 0; color: var(--gold);
  font-size: 1.4rem; line-height: 1;
}

.legal strong { color: var(--cream); font-weight: 500; }
.legal em { font-style: italic; color: var(--cream-muted); opacity: 0.8; }

.legal a {
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s, color 0.3s;
}
.legal a:hover { border-bottom-color: var(--gold); color: var(--gold); }

footer {
  padding: 3rem 2rem 2.5rem; text-align: center;
  font-family: 'Albert Sans', sans-serif; font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.28em;
  color: var(--cream-muted); text-transform: uppercase;
  border-top: 1px solid var(--border);
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem;
}
.footer-links a {
  color: var(--cream-muted); text-decoration: none;
  transition: color 0.3s; border-bottom: 1px solid transparent;
}
.footer-links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.divider { color: var(--border); }

@media (max-width: 640px) {
  nav { padding: 0.9rem 1.25rem; }
  .nav-mark { height: 28px; }
  .nav-text { font-size: 0.78rem; letter-spacing: 0.25em; }
  .nav-back { font-size: 0.7rem; }
  .legal { padding: 7rem 1.5rem 4rem; }
}
