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

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

:root {
  --cream: #faf8f4;
  --ink: #1a1814;
  --ink-soft: #6b6760;
  --ink-muted: #b0aca5;
  --border: rgba(26,24,20,0.1);
  --border-hover: rgba(26,24,20,0.22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.nav-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav-logo em {
  font-style: italic;
  color: var(--ink-soft);
}

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  transition: color 0.2s;
  padding-bottom: 2px;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  border-bottom: 0.5px solid var(--ink);
}

/* ── PAGE FADE IN ── */
main {
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 3rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
}

footer .footer-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink-soft);
}

footer .footer-copy {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}
