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

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:          #0d1117;
  --bg-card:     #080d13;
  --border:      #1a2333;
  --border-hover:#253045;
  --text-primary:#f0f2f8;
  --text-muted:  #9aa3b8;
  --text-dim:    #5a6880;
  --available:   #3a6858;
  --sold:        #5a3535;
  --font-serif:  'EB Garamond', Georgia, serif;
  --font-sans:   'Raleway', sans-serif;
}

/* ─── Base ───────────────────────────────────────────────── */
html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  min-height: 100vh;
}

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

img { display: block; width: 100%; }

/* ─── Nav ────────────────────────────────────────────────── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  border-bottom: 0.5px solid var(--border);
}

.site-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

/* ─── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ─── h1 ─────────────────────────────────────────────────── */
h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* ─── Responsive nav ─────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1.5rem; }
  h1  { font-size: 38px; }
}