/* ── Unified Navigation – Marketing Theme (Cream) ────────── */
/* Shared across homepage, about, and all service/landing pages */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #C4BFB7;
}

.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
  position: relative;
}

.site-header .nav-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #A85A28;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s;
}

.site-header .nav-brand span {
  color: #3a4d44;
}

.site-header .nav-brand:hover {
  color: #8f491f;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .nav-links a {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3a4d44;
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.site-header .nav-links a:hover {
  color: #A85A28;
  background: rgba(168, 90, 40, 0.06);
}

.site-header .nav-links a.active {
  color: #A85A28;
  font-weight: 700;
}

.site-header .nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #A85A28;
  color: #fff !important;
  font-family: system-ui, -apple-system, "Segoe UI", "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(168, 90, 40, 0.25);
}

.site-header .nav-cta:hover {
  background: #8f491f;
  color: #fff !important;
  transform: translateY(-1px);
}

.site-header .nav-login {
  font-size: 0.86rem;
  font-weight: 600;
  color: #3a4d44;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.site-header .nav-login:hover {
  color: #A85A28;
  background: rgba(168, 90, 40, 0.06);
}

.site-header .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.site-header .nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #3a4d44;
  border-radius: 2px;
  transition: 0.2s;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header .nav-links,
  .site-header .nav-cta-wrap {
    display: none;
  }

  .site-header .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: -20px;
    right: -20px;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 20px 1rem;
    border-bottom: 1px solid #C4BFB7;
    gap: 0.15rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 50;
  }

  .site-header .nav-links.mobile-open a {
    padding: 0.6rem 0.65rem;
    font-size: 0.95rem;
  }

  .site-header .nav-toggle {
    display: flex;
  }
}
