:root {
  --bone: #FAF6EC;
  --bone-deep: #F1E9D4;
  --ink: #1B1734;
  --ink-soft: #4C4669;
  --ink-mute: #7E7895;
  --ink-faint: #B7B2C7;
  --rule: #E4DCC5;
  --indigo: #1F1B3F;
  --accent: #B8924A;
  --accent-soft: rgba(184, 146, 74, 0.12);
  --rose: #C99A8E;
  --mist: #C9C7E0;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'DM Sans', -apple-system, Helvetica Neue, sans-serif;
}

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

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

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 246, 236, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s ease;
}

nav.scrolled {
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  max-width: 800px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  padding: 14px 32px;
  border-radius: 80px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Add any other specific styles from your index.html here */
