header .nav-actions {
  display: none;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border: 1px solid var(--text, #4A3E37);
  background: var(--silk, #F8F1EA);
  color: var(--text, #4A3E37);
  font: 300 12px/1.2 "Inter", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.body-link {
  color: inherit;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  text-underline-offset: 0.16em;
}

.body-link:hover,
.body-link:focus-visible {
  color: var(--text, #4A3E37);
  border-bottom-color: var(--text, #4A3E37);
}

header .nav-item {
  position: relative;
}

header nav:not(.mobile-nav-panel) > ul {
  margin: 0;
  padding: 0;
}

header nav:not(.mobile-nav-panel) > ul > li:last-child {
  margin-left: clamp(0px, 0.5vw, 8px);
  padding-left: clamp(14px, 1.4vw, 22px);
  border-left: 0.5px solid var(--strong-line, rgba(74, 62, 55, 0.22));
}

header.nav-menu-active {
  border-bottom: 0.5px solid var(--line, #D9C9B9);
  background: rgba(248, 241, 234, 0.98);
  mix-blend-mode: normal;
}

header .nav-item--has-menu::before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 260px;
  height: 18px;
  content: "";
  transform: translateX(-50%);
}

header .nav-parent[data-active="true"]::after {
  transform: scaleX(1);
}

header .nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: flex !important;
  min-width: 224px;
  flex-direction: column;
  gap: 0 !important;
  padding: 14px 0;
  margin: 0;
  border-top: 0.5px solid var(--line, #D9C9B9);
  border-bottom: 0.5px solid var(--line, #D9C9B9);
  background: rgba(248, 241, 234, 0.98);
  box-shadow: 0 24px 40px rgba(74, 62, 55, 0.08);
  color: var(--text, #4A3E37);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -6px, 0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  visibility: hidden;
}

header .nav-item--has-menu:hover .nav-submenu,
header .nav-item--has-menu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  visibility: visible;
}

header .nav-submenu a {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
}

header .nav-submenu a::after {
  right: 18px;
  bottom: 6px;
  left: 18px;
}

header .mobile-menu-toggle {
  display: none;
  width: 32px;
  min-width: 32px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

header .mobile-menu-toggle::before {
  content: none;
}

header .mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  margin-left: -9px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

header .mobile-menu-toggle span:first-child {
  transform: translateY(calc(-50% - 4px));
}

header .mobile-menu-toggle span:last-child {
  transform: translateY(calc(-50% + 4px));
}

header.nav-open .mobile-menu-toggle span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

header.nav-open .mobile-menu-toggle span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

header nav a[aria-current="page"]::after,
header .mobile-inquire[aria-current="page"]::after {
  transform: scaleX(1);
}

header .mobile-nav-panel {
  display: none;
}

.footer-social__text {
  display: inline-block;
  padding-bottom: 8px;
}

@media (max-width: 900px) {
  header.site-header,
  header[aria-label="Site header"] {
    gap: 18px;
    padding: 40px 50px;
  }

  header nav:not(.mobile-nav-panel) {
    display: none !important;
  }

  header .nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
  }

  header .mobile-inquire {
    display: none !important;
  }

  header .mobile-menu-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    margin: -14px 0;
  }

  header .mobile-nav-panel {
    position: fixed;
    inset: 0;
    display: none !important;
    width: 100vw !important;
    max-height: none;
    min-height: 100vh;
    min-height: 100svh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 128px 50px 54px;
    border: 0;
    background: var(--silk, #F8F1EA);
    box-shadow: none;
    color: var(--text, #4A3E37);
    font-family: "Inter", sans-serif;
    -webkit-overflow-scrolling: touch;
    mix-blend-mode: normal;
  }

  header.nav-open .mobile-nav-panel {
    display: block !important;
  }

  header.nav-open {
    border-bottom: 0;
    background: transparent;
    mix-blend-mode: normal;
  }

  header.nav-open .logo {
    opacity: 0;
    pointer-events: none;
  }

  header.nav-open .mobile-menu-toggle {
    z-index: 1;
  }

  header .mobile-nav-panel ul {
    display: flex !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  header .mobile-nav-panel li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  header .mobile-nav-panel > ul > li > a {
    position: relative;
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    color: var(--text, #4A3E37) !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(28px, 7.2vw, 32px) !important;
    font-style: normal !important;
    font-weight: 300 !important;
    letter-spacing: 0px !important;
    line-height: 1.08 !important;
    text-transform: none !important;
    white-space: normal !important;
  }

  header .mobile-nav-panel > ul > li:not(.nav-item--has-menu) {
    margin-top: 26px !important;
  }

  header .mobile-nav-panel .mobile-nav-heading {
    position: relative;
    display: flex !important;
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    color: var(--text, #4A3E37) !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(28px, 7.2vw, 32px) !important;
    font-style: normal !important;
    font-weight: 300 !important;
    letter-spacing: 0px !important;
    line-height: 1.08 !important;
    text-transform: none !important;
    white-space: normal !important;
  }

  header .mobile-nav-panel .nav-item--has-menu {
    position: static;
  }

  header .mobile-nav-panel .nav-parent {
    justify-content: flex-start;
  }

  header .mobile-nav-panel .nav-submenu {
    position: static !important;
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 0 0 22px !important;
    margin: 28px 0 8px 14px !important;
    border: 0 !important;
    border-left: 0.5px solid var(--line, rgba(74, 62, 55, 0.12)) !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
  }

  header .mobile-nav-panel .nav-submenu a {
    min-height: auto !important;
    padding: 0 !important;
    color: var(--accent, #6B584E) !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(16px, 4.4vw, 18px) !important;
    font-style: italic !important;
    font-weight: 300 !important;
    letter-spacing: 0px !important;
    line-height: 1.42 !important;
    text-transform: none !important;
    white-space: normal !important;
  }

  header .mobile-nav-panel .nav-submenu li + li {
    margin-top: 20px !important;
  }

  header .mobile-nav-panel a::after {
    display: none !important;
  }

  body:has(header.nav-open) {
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  body.has-scrolled header.site-header:not(.nav-open),
  body.has-scrolled header[aria-label="Site header"]:not(.nav-open) {
    border-bottom: 0.5px solid var(--line, rgba(74, 62, 55, 0.12)) !important;
    background: var(--silk, #F8F1EA) !important;
    mix-blend-mode: normal !important;
    transition: none !important;
  }
}

@media (max-width: 767px) {
  .sticky-progress {
    display: none !important;
    opacity: 0 !important;
    transform: none !important;
  }

  .bg-text,
  .outline-circle {
    display: none !important;
  }

  .cta-ring {
    width: min(72vw, 320px) !important;
    height: min(72vw, 320px) !important;
  }
}

footer .footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 1.7vw, 24px);
  text-align: left;
}

footer.footer-has-links {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: clamp(22px, 2vw, 30px);
  padding-bottom: clamp(22px, 2vw, 30px);
  text-align: left;
}

footer.footer-has-links .footer-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

footer.footer-has-links .footer-social {
  justify-content: flex-end;
  text-align: right;
}

footer.footer-has-links .footer-links,
footer.footer-has-links .footer-social {
  flex: 1 1 0;
}

footer .footer-links a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  color: inherit;
  text-decoration: none;
}

footer .footer-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.72;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s ease;
}

footer .footer-links a:hover::after,
footer .footer-links a:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  footer.footer-has-links {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 28px;
    text-align: center;
  }

  footer.footer-has-links .footer-logo {
    position: static;
    order: 0;
    transform: none;
  }

  footer.footer-has-links .footer-links {
    order: 1;
    justify-content: center;
    text-align: center;
  }

  footer.footer-has-links .footer-social {
    order: 2;
    justify-content: center;
    text-align: center;
  }

  footer .footer-links {
    width: min(100%, 320px);
    flex-wrap: wrap;
    gap: 8px 20px;
  }
}
