/* ═══ NAVIGATION ═══ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(10,10,15,0.55);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: height var(--t-base) var(--ease),
              background var(--t-base),
              box-shadow var(--t-base),
              backdrop-filter var(--t-base),
              border-color var(--t-base);
}
.site-nav > .container {
  display: flex;
  align-items: center;
  width: 100%;
}
.site-nav.scrolled {
  height: var(--nav-h-scrolled);
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom-color: var(--c-border);
  box-shadow: 0 1px 0 var(--c-border), 0 8px 40px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: var(--sp-6);
  width: 100%;
}

/* ── LOGO ─────────────────────────────────── */
.nav-logo {
  display: flex; align-items: center; gap: var(--sp-4);
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
}
.nav-logo__svg,
.nav-logo svg {
  width: 144px;
  height: auto;
  display: block;
  transition: width var(--t-base) var(--ease);
}
.site-nav.scrolled .nav-logo__svg,
.site-nav.scrolled .nav-logo svg {
  width: 112px;
}

/* Status pill — replaces the static AGENCY badge */
.nav-logo__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 9px;
  border-radius: 100px;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.28);
  color: #00E5A0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
  transition: opacity var(--t-base);
}
.nav-logo__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00E5A0;
  box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.6);
  animation: nav-dot-pulse 2.4s infinite;
}
@keyframes nav-dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0, 229, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-logo__dot { animation: none; }
}
.site-nav.scrolled .nav-logo__status {
  opacity: 0;
  pointer-events: none;
  width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
}

/* ── LINKS ────────────────────────────────── */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
  flex: 1; justify-content: center;
  margin: 0; padding: 0;
}
.nav-links a {
  display: flex; align-items: center;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-text-muted);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
  height: 38px;
  text-decoration: none;
}
/* Accent underline — grows from center on hover/active */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-accent);
  transform: translateX(-50%) scaleX(0);
  opacity: 0;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base);
}
.nav-links a:hover {
  color: var(--c-text);
  background: rgba(255,255,255,0.05);
}
.nav-links a.current,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--c-accent);
  background: rgba(200,255,0,0.06);
}
.nav-links a:hover::after,
.nav-links a.current::after,
.nav-links .current-menu-item > a::after,
.nav-links .current_page_item > a::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* ── ACTIONS ──────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-shrink: 0;
}

/* Two-line phone block: hours on top, number below */
.nav-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
  transition: color var(--t-fast);
  color: var(--c-text);
}
.nav-phone__hours {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--c-text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t-fast), opacity var(--t-base);
}
.nav-phone__num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
}
.nav-phone__icon {
  color: var(--c-accent);
  flex-shrink: 0;
}
.nav-phone:hover { color: var(--c-accent); }
.nav-phone:hover .nav-phone__num { color: var(--c-accent); }
.site-nav.scrolled .nav-phone__hours {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.nav-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  height: 42px;
  padding: 0 var(--sp-5);
}
.site-nav.scrolled .nav-actions .btn {
  height: 38px;
  padding: 0 var(--sp-4);
}

/* BURGER */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: var(--sp-2); cursor: pointer;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 14px; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.nav-mobile {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--c-bg);
  z-index: 99;
  display: flex; flex-direction: column;
  padding: var(--sp-8) var(--sp-6);
  gap: var(--sp-2);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  display: block; padding: var(--sp-4) var(--sp-2);
  font-size: var(--text-xl); font-weight: 700;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-fast), padding-left var(--t-base);
}
.nav-mobile a:hover { color: var(--c-accent); padding-left: var(--sp-4); }
.nav-mobile .btn { margin-top: var(--sp-6); }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .nav-logo__svg,
  .nav-logo svg { width: 124px; }
}
@media (max-width: 600px) {
  .nav-logo__status { display: none; }
  .nav-logo__svg,
  .nav-logo svg { width: 108px; }
}
@media (max-width: 480px) {
  .nav-actions .btn span { display: none; }
  .nav-actions .btn { padding: 0 var(--sp-3); }
}
