/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(20, 83, 45, 0.12);
  box-shadow: 0 4px 20px rgba(17, 17, 17, 0.04);
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  min-width: 160px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
}

.brand-mark img {
  height: 58px;
  width: auto;
}

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

.nav-link {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--primary);
}

.navbar .btn-primary {
  background-color: var(--primary);
}

.navbar .btn-primary:hover {
  background-color: var(--primary);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.14);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--ink);
  transition: var(--transition);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.86);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--surface);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--surface);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}
