/* ══════════════════════════════════════════════════════════
   RagGo — Nav & Footer
   ══════════════════════════════════════════════════════════ */

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242,236,224,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bg-border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo:hover { text-decoration: none; }
.logo-icon { width: 28px; height: 28px; object-fit: contain; background: #fff; border-radius: 6px; padding: 2px; }
.logo-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a:not(.btn) {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:not(.btn):hover { color: var(--text); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid #1e2130;
  padding: 44px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: #5a5e72;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.65); }
.footer-copy { font-size: 12px; color: #353848; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-inner, .footer-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 22px; text-align: center; }
}
