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

body {
  font-family: Georgia, serif;
  color: #2c2c2c;
  background: #faf9f7;
  line-height: 1.7;
}

/* ─── NAV ─── */
nav {
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0ddd8;
  background: #faf9f7;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2c2c2c;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav ul a:hover,
nav ul a.active { color: #8b6f47; }
nav ul a.active { border-bottom: 1px solid #8b6f47; padding-bottom: 2px; }

/* ─── FOOTER ─── */
footer {
  background: #2c2c2c;
  color: #888;
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.8rem;
}

footer a { color: #8b6f47; text-decoration: none; }

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b6f47;
  margin-bottom: 2rem;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  nav ul { gap: 1rem; }
  nav ul a { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  nav ul { gap: 0.6rem; }
  nav ul a { font-size: 0.65rem; letter-spacing: 0.05em; }
}
