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

:root {
  --bg: #0c0c0b;
  --surface: #141413;
  --border: #2a2a28;
  --text: #e8e4dc;
  --muted: #9a9890;
  --accent: #c8b89a;
  --accent-dim: #9a8e80;
}

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

img { -webkit-user-drag: none; user-select: none; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(12,12,11,0.95) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text);
  transition: color 0.2s;
}
.nav-logo::before,
.nav-logo::after {
  content: '|';
  font-family: 'DM Mono', monospace;
  font-size: 1.4em;
  font-weight: 300;
  vertical-align: middle;
  margin: 0 0.3em;
  color: var(--accent);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* ── PAGE WRAPPER ── */
.page {
  min-height: 100vh;
  padding: 7rem 3rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── PAGE TITLE ── */
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.page-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent-dim);
  border-top: 1px solid var(--border);
}

/* ── UTILITY ── */
.divider {
  width: 2rem;
  height: 1px;
  background: var(--accent-dim);
  margin: 1.5rem 0;
}

/* ── MOBILE BREAKPOINTS ── */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.65rem; letter-spacing: 0.12em; }
  .page { padding: 5rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .nav-links { gap: 0.9rem; }
  .nav-links a { letter-spacing: 0.08em; }
}
