.elementor-23 .elementor-element.elementor-element-854f11f{--display:flex;}.elementor-23 .elementor-element.elementor-element-7a60103{z-index:86;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap');

:root {
  --gold: #B8943E;
  --gold-light: #D4B96A;
  --gold-dark: #9A7A2E;
  --gold-pale: #F5EDD6;
  --navy: #0C1B2E;
  --navy-mid: #162B45;
  --navy-light: #1E3A5C;
  --slate: #3A4A5C;
  --silver: #8A95A3;
  --mist: #B8C0CA;
  --cream: #FAF8F3;
  --cream-dark: #EFE9DD;
  --white: #FFFFFF;

  --font-display: 'Bodoni MT', 'Bodoni 72', 'Didot', 'Georgia', serif;
  --font-body: 'Syne', sans-serif;
  --font-logo: 'Times New Roman', Times, serif;

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}
.nav {
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  transform: none;
  z-index: 1000;
  padding: 1.8rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.42s var(--ease), color 0.3s ease;
  box-sizing: border-box;
  mix-blend-mode: normal;
  background: transparent;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.nav.scrolled {
  padding: 1rem 4%;
}
.nav.on-light .nav-logo-main,
.nav.on-light .nav-logo-sub,
.nav.on-light .nav-links a {
  color: var(--navy);
}

.nav.on-light .nav-links a::after {
  background: var(--navy);
}

.nav.on-light .menu-btn span {
  background: var(--navy);
}

.nav.on-dark .nav-logo-main,
.nav.on-dark .nav-logo-sub,
.nav.on-dark .nav-links a {
  color: var(--white);
}

.nav.on-dark .nav-links a::after {
  background: var(--white);
}

.nav.on-dark .menu-btn span {
  background: var(--white);
}
.nav.scrolled {
  padding: 1rem 4%;
}

.nav-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-logo);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-sub {
  margin-top: 0.18rem;
  font-family: var(--font-logo);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.72em;
  text-transform: uppercase;
  color: var(--white);
  padding-left: 0;
  margin-left: 0.38em;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-left: auto;
  margin-right: 9.5rem;
  white-space: nowrap;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-btn span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.28s var(--ease);
}

/* ===== CONTACT CTA BUTTON ===== */
.nav-contact-btn {
  position: fixed;
  top: 1.8rem;
  right: 4%;
  z-index: 1001;
  padding: 0.65rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.nav-contact-btn.on-dark {
  background: var(--white);
  color: var(--navy);
}

.nav-contact-btn.on-dark:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-contact-btn.on-light {
  background: var(--navy);
  color: var(--white);
}

.nav-contact-btn.on-light:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-contact-btn.nav-scrolled {
  top: 1rem;
}

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.42s var(--ease);
}

.fullscreen-menu.open {
  opacity: 1;
  visibility: visible;
}

.fullscreen-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.21s;
  opacity: 0;
  transform: translateY(40px);
}

.fullscreen-menu.open a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s;
}

.fullscreen-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.open a:nth-child(5) { transition-delay: 0.3s; }

.fullscreen-menu a:hover {
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-contact-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 1rem 5%;
  }
}/* End custom CSS */