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

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

:root {
  --bg: #0e0d0b;
  --bg-dark: #0b0a08;
  --bg-card: #141310;
  --border: #383530;
  --border-light: #4a4740;
  --text-primary: #f0ece3;
  --text-secondary: #c8c2b6;
  --text-muted: #9a9590;
  --text-faint: #6a6560;
  --accent: #c8b88a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-secondary);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8;
}

.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
}

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

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 64px;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.nav-name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 36px;
}

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

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

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

footer p {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

footer .footer-links {
  display: flex;
  gap: 28px;
}

footer .footer-links a {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

footer .footer-links a:hover { color: var(--text-muted); }

/* BUTTONS */
.btn-primary {
  background: var(--text-primary);
  color: var(--bg);
  padding: 13px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 0.5px solid var(--border-light);
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--text-secondary);
  border-color: var(--text-muted);
}

/* SECTION HELPERS */
.section { padding: 100px 64px; }
.section-sm { padding: 64px 64px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.accent-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text-primary);
}

h1 { font-size: 68px; line-height: 1.1; }
h2 { font-size: 44px; line-height: 1.2; }
h3 { font-size: 26px; line-height: 1.3; }

/* DIVIDER */
hr {
  border: none;
  border-top: 0.5px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { gap: 20px; }
  .section { padding: 60px 24px; }
  .section-sm { padding: 40px 24px; }
  footer { padding: 32px 24px; flex-direction: column; gap: 20px; text-align: center; }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
}
