@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

:root {
  --anchor: #1E2A44;
  --spark: #F4C542;
  --bg: #F8F6F2;
  --card: #FFFFFF;
  --text: #1F2A38;
  --neutral: #E0D9C8;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ====================== HEADER ====================== */
header {
  background: var(--bg);
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.4rem 5%;
  border-bottom: 1px solid var(--neutral);
}

.nav-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--anchor);
}

.logo img { height: 54px; }

/* Desktop Nav */
nav a {
  color: var(--text);
  margin-left: 2.2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s;
}

nav a:hover { color: var(--spark); }

/* ====================== MOBILE HAMBURGER ====================== */
.mobile-menu {
  display: none;
  font-size: 1.8rem;
  cursor: