.elementor-11 .elementor-element.elementor-element-f11cbc1{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-f11cbc1 *//* ============================================================
   GRAND LEGACY PREMIUM HEADER
============================================================ */

/* Topbar */
.topbar {
  background: #4A1A1A;
  color: #FFF8ED;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 7%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212,175,55,.28);
}

/* Header */
#header {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 1px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background:
    radial-gradient(circle at 88% 12%, rgba(243,216,122,.10), transparent 32%),
    linear-gradient(135deg, rgba(85,31,31,.88), rgba(97,36,36,.78));

  border-bottom: 1px solid rgba(212,175,55,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  width: 120px;
  height: auto;
  transition: .35s ease;
}

.logo img:hover {
  transform: scale(1.04);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
}

nav a {
  color: #FFF8ED;
  opacity: .92;
  text-decoration: none;
  position: relative;
  transition: .3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: #D4AF37;
  transition: .35s ease;
}

nav a:hover {
  color: #F3D87A;
  opacity: 1;
}

nav a:hover::after {
  width: 100%;
}

/* Button */
.btn {
  display: inline-block;
  background: #D4AF37;
  color: #4A1A1A;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #D4AF37;
  transition: .3s ease;
}

.btn:hover {
  background: #F3D87A;
  border-color: #F3D87A;
  color: #4A1A1A;
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  color: #FFF8ED;
  border-color: #D4AF37;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(212,175,55,.35);
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F3D87A;
  transition: transform .25s, opacity .25s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
#mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;

  background:
    radial-gradient(circle at 88% 12%, rgba(243,216,122,.10), transparent 32%),
    linear-gradient(135deg, #551F1F 0%, #612424 45%, #6D2929 100%);

  border-top: 1px solid rgba(212,175,55,.28);
  z-index: 4;
  padding: 0 7%;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

#mobile-nav.open {
  display: flex;
  max-height: 400px;
  padding: 16px 7%;
}

#mobile-nav a {
  color: #FFF8ED;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,175,55,.18);
  opacity: .9;
}

#mobile-nav a:last-child {
  border-bottom: none;
}

#mobile-nav a:hover {
  color: #F3D87A;
  opacity: 1;
}

#mobile-nav .btn {
  margin-top: 12px;
  text-align: center;
  color: #4A1A1A;
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  #header {
    position: absolute;
    flex-direction: row;
  }

  nav.nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .topbar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .hero {
    padding-top: 80px;
    min-height: 600px;
  }

  .feature-strip,
  .intro,
  .cards,
  .why-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .subtitle {
    font-size: 24px;
  }

  .tagline {
    font-size: 24px;
  }
}

@media (min-width: 901px) {
  #mobile-nav {
    display: none !important;
  }
}/* End custom CSS */