:root {
  --sand: #F2EDE4; --ink: #1A1208; --terr: #C4622D;
  --terr2: #E8854A; --cream: #FAF7F2; --muted: #7A7060;
  --border: rgba(26,18,8,0.12);
}
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: #FAF7F2;
  border-bottom: 1px solid rgba(26,18,8,0.15);
  box-shadow: 0 2px 8px rgba(26,18,8,0.08);
}
.site-nav .nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900;
  color: #1A1208; text-decoration: none;
  letter-spacing: -0.5px; flex-shrink: 0;
}
.site-nav .nav-logo span { color: #C4622D; }
.site-nav .nav-links {
  display: flex; gap: 28px; list-style: none;
  margin: 0 auto; padding: 0;
}
.site-nav .nav-links a {
  font-size: 14px; color: #7A7060;
  text-decoration: none; transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.site-nav .nav-links a:hover { color: #1A1208; }
.site-nav .nav-links a.active {
  color: #1A1208; font-weight: 500;
  border-bottom: 2px solid #C4622D; padding-bottom: 2px;
}
.site-nav .nav-right { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.site-nav .btn-ghost {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: #1A1208; background: none;
  border: 1px solid rgba(26,18,8,0.2); border-radius: 100px;
  padding: 7px 18px; cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.site-nav .btn-ghost:hover { background: #F2EDE4; }
.site-nav .btn-primary {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: #fff; background: #C4622D;
  border: none; border-radius: 100px;
  padding: 7px 18px; cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.site-nav .btn-primary:hover { background: #E8854A; }
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .site-nav .nav-links { display: none; }
}
