.elementor-37 .elementor-element.elementor-element-ddfd302{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-37 .elementor-element.elementor-element-bdc3b07{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-bdc3b07 *//* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: linear-gradient(to bottom, rgba(8,10,14,0.95) 0%, transparent 100%);
    transition: background 0.4s;
  }

  nav.scrolled {
    background: rgba(8,10,14,0.97);
    border-bottom: 1px solid var(--border-gold);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .nav-logo svg {
    width: 36px;
    height: 36px;
  }

  .nav-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  .nav-cta {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-decoration: none;
    border: 1px solid var(--border-gold-strong);
    padding: 0.55rem 1.4rem;
    transition: all 0.3s;
  }

  .nav-cta:hover {
    background: rgba(201,149,42,0.1);
    border-color: var(--gold-light);
    color: var(--gold-pale);
  }
  /* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #C9952A;
  transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #0f0f0f;
  padding: 80px 20px;
  transition: 0.4s ease;
  z-index: 1000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 25px;
}

.mobile-menu a {
  color: #C9952A;
  text-decoration: none;
  font-size: 18px;
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* MOBILE */
@media(max-width:768px){

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

#navbar {
  position: fixed; /* or sticky if you prefer */
  top: 0;
  left: -100;
  width: 100%;
  z-index: 9999; /* VERY important */
  background: rgba(10, 10, 10, 0.85); /* optional but recommended */
  backdrop-filter: blur(8px); /* premium look */
}/* End custom CSS */