*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #000000;
  --gold:      #C5993A;
  --gold-l:    #D4AD5A;
  --gold-d:    #A07A2E;
  --surface:   #050505;
  --surface-2: #0A0A0A;
  --border:    #1F1F22;
  --border-2:  #2A2A2D;
  --gold-m:    rgba(197, 153, 58, .06);
  --gold-m2:   rgba(197, 153, 58, .12);
  --white:     #F5F2ED;
  --white-2:   #C8C4BC;
  --white-3:   #8A8680;
  --white-4:   #5A5754;
  --f-display: 'Outfit', -apple-system, system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --max-w: 880px;
}

html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--f-display);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.7;
  font-size: 17px;
}

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

a { color: inherit; text-decoration: none; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}
.nav-brand {
  display: flex; align-items: center;
}
.nav-brand img { height: 32px; width: auto; display: block; }
.nav-back {
  font-size: 14px; color: var(--white-3); font-weight: 400;
  letter-spacing: .02em;
  transition: color .25s var(--ease);
}
.nav-back:hover { color: var(--gold); }

/* PAGE */
main {
  padding-top: 160px;
  padding-bottom: 120px;
}
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid var(--gold-m2);
  border-radius: 999px;
  background: var(--gold-m);
  margin-bottom: 28px;
}

h1.page-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}
.lede {
  font-size: 18px;
  color: var(--white-2);
  font-weight: 300;
  margin-bottom: 12px;
  max-width: 720px;
}
.updated {
  font-size: 13px;
  color: var(--white-4);
  letter-spacing: .04em;
  margin-bottom: 56px;
}

article h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-top: 56px;
  margin-bottom: 16px;
  color: var(--white);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
article h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--gold-l);
}
article p {
  color: var(--white-2);
  margin-bottom: 16px;
  font-weight: 300;
}
article ul, article ol {
  color: var(--white-2);
  margin: 0 0 16px 24px;
  font-weight: 300;
}
article li { margin-bottom: 8px; }
article strong { color: var(--white); font-weight: 500; }
article a { color: var(--gold); border-bottom: 1px solid var(--gold-m2); transition: border-color .25s var(--ease); }
article a:hover { border-color: var(--gold); }

.placeholder {
  color: var(--white-4);
  font-style: italic;
  font-weight: 300;
}

/* FOOTER */
.legal-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  background: var(--surface);
}
.legal-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--white-4);
  letter-spacing: .02em;
}
.legal-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.legal-footer-links a { color: var(--white-3); transition: color .25s var(--ease); }
.legal-footer-links a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .nav { padding: 0 24px; height: 64px; }
  .nav-brand img { height: 26px; }
  main { padding-top: 120px; padding-bottom: 80px; }
  .wrap { padding: 0 24px; }
  article h2 { font-size: 21px; margin-top: 44px; }
  .legal-footer { padding: 32px 24px; }
}
