/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 105, 30, 0.15);
  transition: all 0.3s ease;
}

.navbar--scrolled {
  background: rgba(255, 248, 240, 0.98);
  box-shadow: 0 2px 20px rgba(61, 35, 20, 0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ---- Logo ---- */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo-om {
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(212,105,30,0.3));
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-brown);
  letter-spacing: 0.5px;
}

.navbar__logo-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ---- Desktop Links ---- */
.navbar__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.navbar__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar__link:hover {
  color: var(--primary);
  background: rgba(212, 105, 30, 0.06);
}

.navbar__link:hover::after,
.navbar__link--active::after {
  left: 14px;
  right: 14px;
}

.navbar__link--active {
  color: var(--primary);
  background: rgba(212, 105, 30, 0.08);
}

/* ---- Hamburger ---- */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  height: 2.5px;
  background: var(--deep-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar__hamburger--open span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}
.navbar__hamburger--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger--open span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

/* ---- Mobile Menu ---- */
.navbar__mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--cream);
  border-top: 1px solid rgba(212,105,30,0.12);
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.navbar__mobile--open {
  max-height: 500px;
  opacity: 1;
}

.navbar__mobile ul {
  list-style: none;
  padding: 12px 0 20px;
}

.navbar__mobile-link {
  display: block;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.navbar__mobile-link:hover,
.navbar__mobile-link--active {
  color: var(--primary);
  background: rgba(212, 105, 30, 0.06);
  border-left-color: var(--primary);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .navbar__links {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }
  .navbar__mobile {
    display: block;
  }
}

@media (max-width: 400px) {
  .navbar__logo-name {
    font-size: 1.1rem;
  }
  .navbar__logo-tag {
    display: none;
  }
}
