*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #0f0f0f;
  --surface:   #1a1814;
  --accent:    #d4af37;
  --text:      #f0f0f0;
  --text-muted:#888880;
  --font-serif:'Cormorant Garamond', 'SF Pro Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, 'SF Pro Text', 'Segoe UI', 'Helvetica Neue', system-ui, sans-serif;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
main {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 5% 6rem;
}
.eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}
.license-body {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-muted);
  white-space: pre-wrap;
}
/* Placeholder shown until content is added */
.placeholder {
  padding: 3rem;
  border: 1px dashed rgba(212,175,55,0.2);
  text-align: center;
  color: rgba(212,175,55,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
footer {
  text-align: center;
  padding: 2rem 5%;
  background: #0a0a0a;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-top: 1px solid #222;
}
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--accent); }
