@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Cinzel:wght@400;500&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --bg: #1A1714;
  --bg2: #1E1916;
  --bg3: #251F1A;
  --gold: #C17B2F;
  --gold-light: #D4914A;
  --gold-dim: #8B5E2A;
  --text: #F5F2E8;
  --text-muted: #8B7355;
  --text-dim: #5C4E3A;
  --border: rgba(193,123,47,0.15);
  --border-strong: rgba(193,123,47,0.3);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(26,23,20,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--gold); text-decoration: none;
}

.nav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 0.2em; color: var(--gold-dim);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }

.footer-copy {
  font-size: 11px; color: var(--text-dim); width: 100%;
}

/* LEGAL PAGES */
.legal-wrap {
  max-width: 720px; margin: 0 auto;
  padding: 120px 48px 80px;
}

.legal-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 16px;
}

.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 400; line-height: 1.1;
  color: var(--text); margin-bottom: 12px;
}

.legal-date {
  font-size: 12px; color: var(--text-dim); margin-bottom: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}

.legal-section { margin-bottom: 40px; }

.legal-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.legal-section p {
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul {
  list-style: none; padding: 0;
}

.legal-section ul li {
  font-size: 14px; color: var(--text-muted); line-height: 1.8;
  padding-left: 16px; margin-bottom: 6px; position: relative;
}

.legal-section ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold-dim);
}

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

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
  .legal-wrap { padding: 100px 20px 60px; }
  .legal-title { font-size: 36px; }
}
