.sidebar {
  position: fixed;
  top: 7dvh;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 7dvh);
  z-index: 99;
  
  /* Replace display: none with visibility & opacity */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.35s, opacity 0.35s ease;
}
.sidebar_content {
    width: calc(300px + 2rem);
  background-color: #000000;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
  position: relative;
  height: 100%;
  z-index: 2;
  font-family: var(--font-sans, sans-serif);

  /* Transition handles slide smoothly now */
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar.active .sidebar_content {
  transform: translateX(0);
}
.sidebar.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* Brand Section */
.brand-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.brand-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Navigation */
.nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  margin-left: -0.6rem;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  opacity: .8;
}

.nav-link:hover {
  color: var(--text-primary);
  background-color: var(--accent-glow);
  transform: translateX(4px);
  opacity: 1 !important;
}

/* Bottom / Footer */
.sidebar-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.meta-row {
  display: flex;
  align-items: center;

}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-link {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.icon-link svg {
  width: 18px;
  height: 18px;
}

.icon-link:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.divider {
  width: 1px;
  height: 16px;
  background-color: var(--border-color);
}

.location-tag {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 300;
    white-space: nowrap;
    margin: auto;
    margin-right: 0;
}

/* Legal Footer */
.legal-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.brand-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.2rem;
}

.gst-num {
  font-family: monospace;
  color: var(--text-secondary);
}.sidebar_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1;
  pointer-events: all;
}