/* ── SHARED NAV & FOOTER ── */

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; display: flex; align-items: center; padding: 0 6%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.nav-inner {
  width: 100%; max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-mark { display: flex; align-items: center; }
.logo-svg { display: block; }
.logo-wordmark {
  font-size: 0.975rem; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin-left: 0.55rem;
}
.logo-wordmark span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; color: var(--text-2); font-weight: 500;
  text-decoration: none; padding: 0.4rem 0.8rem;
  border-radius: 6px; transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg); }
.nav-links a.active { color: var(--text); font-weight: 600; }
.nav-cta {
  background: var(--teal); color: #fff;
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none; padding: 0.5rem 1.1rem;
  border-radius: 7px; transition: background 0.15s;
  letter-spacing: -0.01em;
}
.nav-cta:hover { background: #0d6560; }

/* FOOTER */
footer {
  background: var(--text); color: rgba(255,255,255,0.6);
  padding: 2.25rem 6%;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.25rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.footer-logo .logo-wordmark { color: #fff; font-size: 0.9rem; margin-left: 0.4rem; }
.footer-logo .logo-wordmark span { color: var(--teal-lt); }
.footer-copy { font-size: 0.78rem; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

/* RESPONSIVE */
@media (max-width: 680px) {
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { gap: 1rem; }
}
