:root {
  --bg: #FCFCFD;
  --bg-alt: #F4F4F5;
  --primary: #8A1515;
  --secondary: #158A8A;
  --text: #3B3B3B;
  --text-muted: #6B6B6B;
  --serif: 'Zen Antique', Georgia, serif;
  --sans: 'Source Sans 3', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(252, 252, 253, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59, 59, 59, 0.06);
}

.nav-logo {
  display: inline-flex; align-items: center; text-decoration: none;
}
.nav-logo img { height: 45px; width: auto; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--primary); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.75rem); left: 50%;
  transform: translateX(-50%); background: var(--bg);
  border: 1px solid rgba(59, 59, 59, 0.08); border-radius: 8px;
  padding: 0.5rem 0; min-width: 160px;
  box-shadow: 0 8px 30px rgba(59, 59, 59, 0.08);
  opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 0.6rem 1.25rem; font-size: 0.88rem;
  font-weight: 500; color: var(--text-muted); white-space: nowrap;
}
.dropdown-menu li a:hover { color: var(--primary); background: var(--bg-alt); }

/* ── PLACEHOLDER ── */
.placeholder {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 8rem 2.5rem 4rem;
}

.placeholder-badge {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 50px;
  background: rgba(138, 21, 21, 0.1); color: var(--primary);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 2rem;
}

.placeholder h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.025em; margin-bottom: 1.25rem;
}

.placeholder h1 em { font-style: normal; color: var(--primary); }

.placeholder p {
  font-size: 1.15rem; color: var(--text-muted); max-width: 480px;
  line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 2.5rem; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(59, 59, 59, 0.06);
}
.footer-left { font-size: 0.85rem; color: var(--text-muted); }
.footer-right a {
  font-size: 0.85rem; color: var(--text-muted); text-decoration: none;
  margin-left: 1.5rem; transition: color 0.2s;
}
.footer-right a:hover { color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-links { display: none; }
  nav { padding: 1rem 1.5rem; }
}
