.elementor-2824 .elementor-element.elementor-element-d5be1b5{--display:flex;--flex-wrap:nowrap;}.elementor-2824 .elementor-element.elementor-element-295768d{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-295768d */nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(250,249,247,0.97);
  border-bottom: 1px solid #e4ddd4;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex: 1;
  justify-content: center;
  padding: 0 24px;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d3830;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: #b8892a; }
.nav-links .active a { color: #b8892a; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #b8892a;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { background: #d4a84b; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #3d3830;
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile dropdown */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 499;
  background: #faf9f7;
  border-bottom: 1px solid #e4ddd4;
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #e4ddd4;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3d3830;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile ul li:last-child a { border-bottom: none; }
.nav-mobile ul li a:hover { color: #b8892a; }

/* Hide nav links, show hamburger at smaller sizes */
@media (max-width: 1080px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}/* End custom CSS */