:root {
  --navy: #1a1f3a;
  --gold: #c9a84c;
  --cream: #f8f5f0;
  --burgundy: #6b2737;
  --dark-text: #2c2c2c;
  --light-gold: #f0e6cc;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 31, 58, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav .logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav .logo span {
  color: #fff;
  font-weight: 400;
}

.site-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.site-nav .nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s;
}

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

.site-footer {
  background: var(--navy);
  color: #f5f5f5;
  padding: 2.5rem 5%;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0.85rem;
  color: #d9d9d9;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer .footer-links a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer .footer-links a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .site-nav .nav-links {
    display: none;
  }

  .site-footer .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
