:root {
  --gold: #d4a827;
  --gold-bright: #facc15;
  --gold-deep: #8a6d1a;
  --bg: #08080a;
  --bg-soft: #111113;
  --text: #f4f1e8;
  --text-muted: #8d8a82;
  --border: rgba(212, 168, 39, 0.18);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body::before {
  content: "";
  position: fixed;
  top: -25%; left: 50%;
  transform: translateX(-50%);
  width: 90vw; height: 60vh;
  background: radial-gradient(ellipse at center, rgba(212,168,39,0.08), transparent 62%);
  pointer-events: none; z-index: 0;
}
.header-bar {
  background: #000;
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; max-width: 760px; margin: 0 auto;
}
.brand {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px;
  letter-spacing: -0.01em; color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700; color: #1a1408;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 14px;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }

main { flex: 1; position: relative; z-index: 1; }
.doc { max-width: 760px; margin: 0 auto; padding: 60px 28px 80px; width: 100%; }
.doc .eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.doc h1 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: -0.02em;
  margin-bottom: 12px; line-height: 1.1;
}
.doc .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 40px; }
.doc h2 {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.4rem;
  margin: 40px 0 14px; color: var(--text); letter-spacing: -0.01em;
}
.doc h3 {
  font-weight: 600; font-size: 1.05rem; margin: 26px 0 10px; color: var(--text);
}
.doc p { margin-bottom: 16px; color: #d8d4c8; font-size: 1rem; }
.doc ul { margin: 0 0 16px 22px; color: #d8d4c8; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border); }
.doc a:hover { border-color: var(--gold); }
.doc strong { color: var(--text); font-weight: 600; }
.callout {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); border-radius: 12px;
  padding: 20px 24px; margin: 24px 0;
}
.callout p { margin-bottom: 0; color: var(--text); }

/* Contact form */
.contact-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px; margin-top: 24px;
}
.contact-row { margin-bottom: 18px; }
.contact-row label { display:block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.contact-row input, .contact-row textarea {
  width: 100%; background: #0a0a0c; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; color: var(--text);
  font-family: 'Sora'; font-size: 15px;
}
.contact-row textarea { min-height: 120px; resize: vertical; }
.email-big {
  font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--gold);
  text-decoration: none; border: none;
}
.email-big:hover { color: var(--gold-bright); }

footer {
  border-top: 1px solid var(--border); padding: 40px 0;
  position: relative; z-index: 1;
}
.foot-inner {
  max-width: 760px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text-muted);
}
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--text-muted); text-decoration: none; transition: color 0.25s; }
.foot-links a:hover { color: var(--gold); }

@media (max-width: 600px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .foot-inner { flex-direction: column; }
  .doc { padding: 40px 24px 60px; }
}
