
/* ========== NAV ========== */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .4s ease;
  backdrop-filter: blur(0px);
}
.nav.scrolled{
  background: rgba(252,250,253,0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo{
  display: flex; align-items: baseline; gap: 8px;
}
.logo-img{
  height: 35px;
}
.nav-links{
  display: flex; gap: 36px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a{
  position: relative;
  padding: 8px 0;
  transition: color .3s;
}
.nav-links a::after{
  content: ""; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width .3s;
}
.nav-links a:hover{ color: var(--wine); }
.nav-links a:hover::after{ width: 100%; }

.menu-toggle{
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span{
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all .3s;
}
@media (max-width: 960px){
  .nav-links{ display: none; }
  .menu-toggle{ display: flex; }
  .nav-actions { display: none; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(46, 204, 113, 0.2);
}
.status-dot {
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
.status-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #2ecc71;
  letter-spacing: 0.5px;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--wine);
  transition: all 0.3s ease;
}
.nav-social:hover {
  background: var(--wine);
  color: #fff;
  border-color: var(--wine);
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(229, 62, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}
.status-indicator.closed {
  background: rgba(229, 62, 62, 0.08);
  border: 1px solid rgba(229, 62, 62, 0.2);
}
.status-indicator.closed .status-dot {
  background-color: #e53e3e;
  animation: pulse-red 2s infinite;
}
.status-indicator.closed .status-text {
  color: #e53e3e;
}
