@charset "UTF-8";
/* CSS Document */




  .ghxv-nav,
  .ghxv-nav * {
    box-sizing: border-box;
  }

  .ghxv-nav {
    --ghxv-text-light: #ffffff;
    --ghxv-text-dark: #4a4a4a;
    --ghxv-accent: #b8955c;
    --ghxv-header-bg: rgba(0, 0, 0, 0.34);
    --ghxv-header-bg-scrolled: rgba(255, 255, 255, 0.98);
    --ghxv-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    --ghxv-panel-shadow: 12px 0 35px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 9999;
    font-family: "Montserrat", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .ghxv-nav a {
    text-decoration: none;
  }

  .ghxv-nav button {
    font: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .ghxv-nav.ghxv-nav-lock {
    overflow: hidden;
  }

  .ghxv-nav__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: var(--ghxv-header-bg);
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    z-index: 1200;
  }

  .ghxv-nav__header.is-scrolled {
    background: var(--ghxv-header-bg-scrolled);
    box-shadow: var(--ghxv-shadow);
    padding: 11px 0;
  }

  .ghxv-nav__container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
  }

  .ghxv-nav__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .ghxv-nav__left,
  .ghxv-nav__right {
    display: flex;
    align-items: center;
  }

  .ghxv-nav__right {
    justify-content: flex-end;
    gap: 14px;
    white-space: nowrap;
  }

  .ghxv-nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ghxv-text-light);
    line-height: 1;
    transition: color .25s ease;
  }

  .ghxv-nav__header.is-scrolled .ghxv-nav__toggle {
    color: var(--ghxv-text-dark);
  }

  .ghxv-nav__burger {
    display: inline-block;
    width: 22px;
    flex: 0 0 22px;
  }

  .ghxv-nav__burger span {
    display: block;
    height: 2px;
    background: currentColor;
    margin-bottom: 4px;
  }

  .ghxv-nav__burger span:last-child {
    margin-bottom: 0;
  }

  .ghxv-nav__brand {
    display: inline-block;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: inherit;
    white-space: nowrap;
  }

  .ghxv-nav__cta {
    display: inline-block;
    color: var(--ghxv-text-light);
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    transition: color .25s ease, opacity .25s ease;
  }

  .ghxv-nav__cta:hover,
  .ghxv-nav__cta:focus {
    opacity: .75;
  }

  .ghxv-nav__header.is-scrolled .ghxv-nav__cta {
    color: var(--ghxv-text-dark);
  }

  .ghxv-nav__cta-desktop {
    display: inline;
    font-size: 16px;
  }

  .ghxv-nav__cta-mobile {
    display: none;
  }

  .ghxv-nav__lang {
    position: relative;
    display: inline-block;
    white-space: nowrap;
  }

  .ghxv-nav__lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ghxv-text-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1;
  }

  .ghxv-nav__header.is-scrolled .ghxv-nav__lang-toggle {
    color: var(--ghxv-text-dark);
  }

  .ghxv-nav__lang-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    position: relative;
    top: 1px;
  }

  .ghxv-nav__lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 118px;
    margin-top: 10px;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .ghxv-nav__lang.is-open .ghxv-nav__lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .ghxv-nav__lang-menu a {
    display: block;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--ghxv-text-dark);
    white-space: nowrap;
  }

  .ghxv-nav__lang-menu a:hover,
  .ghxv-nav__lang-menu a:focus,
  .ghxv-nav__lang-menu a.is-active {
    color: var(--ghxv-accent);
  }

  .ghxv-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1300;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
  }

  .ghxv-nav__backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .ghxv-nav__panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: calc(100% - 36px);
    height: 100%;
    background: #ffffff;
    color: var(--ghxv-text-dark);
    z-index: 1350;
    padding: 32px 34px 28px;
    overflow-y: auto;
    transform: translateX(-110%);
    transition: transform .62s cubic-bezier(.18, .89, .32, 1.28);
    box-shadow: var(--ghxv-panel-shadow);
    scrollbar-width: thin;
    scrollbar-color: #c8b28a #f3eee6;
  }

  .ghxv-nav__panel.is-open {
    transform: translateX(0);
  }

  .ghxv-nav__panel::-webkit-scrollbar {
    width: 10px;
  }

  .ghxv-nav__panel::-webkit-scrollbar-track {
    background: #f3eee6;
  }

  .ghxv-nav__panel::-webkit-scrollbar-thumb {
    background: #c8b28a;
    border-radius: 10px;
    border: 2px solid #f3eee6;
  }

  .ghxv-nav__panel::-webkit-scrollbar-thumb:hover {
    background: var(--ghxv-accent);
  }

  .ghxv-nav__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  }

  .ghxv-nav__panel-title {
    margin: 0;
    font-family: "Playfair Display", serif;
	  font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ghxv-text-dark);
  }

  .ghxv-nav__close {
    background: transparent;
    border: 0;
    color: rgba(74, 74, 74, .75);
    font-size: 26px;
    line-height: 1;
    padding: 0;
    margin-top: -2px;
  }

  .ghxv-nav__menu,
  .ghxv-nav__utility-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .ghxv-nav__menu li {
    margin-bottom: 8px;
  }

  .ghxv-nav__menu a {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ghxv-text-dark);
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    transition: color .2s ease, padding-left .2s ease;
  }

  .ghxv-nav__menu a:hover,
  .ghxv-nav__menu a:focus {
    color: var(--ghxv-accent);
    padding-left: 6px;
  }

  .ghxv-nav__utility {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, .10);
    text-align: left;
  }

  .ghxv-nav__utility-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    gap: 0;
  }

  .ghxv-nav__utility-list li {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  .ghxv-nav__utility-list li + li::before {
    content: "|";
    display: inline-block;
    margin: 0 10px;
    color: rgba(74, 74, 74, .35);
    font-size: 10px;
    vertical-align: middle;
  }

  .ghxv-nav__utility-list a {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(74, 74, 74, .82);
    transition: color .2s ease;
  }

  .ghxv-nav__utility-list a:hover,
  .ghxv-nav__utility-list a:focus {
    color: var(--ghxv-text-dark);
  }

  .ghxv-nav__social {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, .10);
  }

  .ghxv-nav__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #ffffff;
    color: var(--ghxv-text-dark);
    transition: all .2s ease;
  }

  .ghxv-nav__social a:last-child {
    margin-right: 0;
  }

  .ghxv-nav__social a i {
    color: inherit;
    font-size: 14px;
  }

  .ghxv-nav__social a:hover,
  .ghxv-nav__social a:focus {
    background: var(--ghxv-accent);
    border-color: var(--ghxv-accent);
    color: #ffffff;
  }

  @media (max-width: 991px) {
    .ghxv-nav__brand {
      font-size: 22px;
    }
  }

  @media (max-width: 767px) {
    .ghxv-nav__header {
      padding: 10px 0;
    }

    .ghxv-nav__container {
      width: calc(100% - 32px);
    }

    .ghxv-nav__row {
      gap: 10px;
    }

    .ghxv-nav__left {
      flex: 0 0 60%;
      min-width: 0;
    }

    .ghxv-nav__right {
      flex: 0 0 40%;
      min-width: 0;
      gap: 6px;
    }

    .ghxv-nav__toggle {
      gap: 7px;
      white-space: nowrap;
    }

    .ghxv-nav__burger {
      width: 16px;
      flex-basis: 16px;
    }

    .ghxv-nav__burger span {
      margin-bottom: 3px;
    }

    .ghxv-nav__brand {
      font-size: 15px;
      letter-spacing: .01em;
    }

    .ghxv-nav__cta {
      padding: 8px 9px;
      border: 1px solid #ffffff;
      background: #ffffff;
      color: var(--ghxv-text-dark);
      font-family: "Montserrat", Arial, sans-serif;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .10em;
      text-transform: uppercase;
      line-height: 1;
      opacity: 1;
    }

    .ghxv-nav__cta:hover,
    .ghxv-nav__cta:focus {
      opacity: 1;
      color: var(--ghxv-text-dark);
    }

    .ghxv-nav__header.is-scrolled .ghxv-nav__cta {
      border: 1px solid var(--ghxv-text-dark);
      background: #ffffff;
      color: var(--ghxv-text-dark);
    }

    .ghxv-nav__cta-desktop {
      display: none;
    }

    .ghxv-nav__cta-mobile {
      display: inline;
    }

    .ghxv-nav__lang-toggle {
      font-size: 10px;
      letter-spacing: .10em;
    }

    .ghxv-nav__lang-menu {
      min-width: 104px;
      margin-top: 8px;
    }

    .ghxv-nav__lang-menu a {
      font-size: 10px;
    }

    .ghxv-nav__panel {
      width: 320px;
      padding: 28px 24px 24px;
    }

    .ghxv-nav__panel-title {
      font-size: 18px;
    }

    .ghxv-nav__menu a {
      font-size: 20px;
    }

    .ghxv-nav__utility-list a {
      font-size: 9px;
      letter-spacing: .12em;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ghxv-nav *,
    .ghxv-nav *::before,
    .ghxv-nav *::after {
      transition-duration: .01ms !important;
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
    }
  }




