:root {
  --nav-height: 72px;
}

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #ddd0be;
  box-shadow: 0 2px 8px rgba(45, 36, 25, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  height: 44px;
  width: auto;
}

.nav-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #2d2419;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #2d2419;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #e8d5bc;
  color: #a14622;
  outline: none;
}

.nav-links .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2d2419;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links .nav-cta {
  background: #a14622;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: #7f3218;
  color: #fff;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #2d2419;
  transition: transform 0.2s, opacity 0.2s;
  border-radius: 2px;
}

.nav-mobile-menu {
  display: none;
  position: sticky;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #faf6f0;
  border-bottom: 1px solid #ddd0be;
  padding: 12px 24px 20px;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(45, 36, 25, 0.12);
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #2d2419;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-mobile-menu a:hover {
  background: #e8d5bc;
}

.nav-mobile-menu .nav-cta {
  background: #a14622;
  color: #fff;
  text-align: center;
  margin-top: 8px;
  font-weight: 600;
}

.nav-mobile-menu .nav-cta:hover {
  background: #7f3218;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 16px;
  }
  .nav-logo {
    height: 38px;
  }
  .nav-brand-name {
    font-size: 0.95rem;
  }
}
