.heum-navigation-layout {
  position: relative;
}

.heum-menu-trigger {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 76px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(73, 8, 13, 0.18);
  border-radius: 999px;
  color: #49080d;
  background: #fffdf9;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 18px rgba(73, 8, 13, 0.07);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.heum-menu-trigger:hover {
  border-color: rgba(73, 8, 13, 0.38);
  background: #f4eee6;
  transform: translateY(-1px);
}

.heum-menu-trigger[aria-expanded="true"] {
  color: #fff;
  border-color: #49080d;
  background: #49080d;
}

.heum-menu-icon {
  display: grid;
  gap: 3px;
  width: 15px;
}

.heum-menu-icon i {
  display: block;
  width: 100%;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
}

.nav-wrap.heum-navigation-layout {
  gap: 13px;
}

.nav-wrap.heum-navigation-layout .nav-cta {
  margin-left: auto;
}

.header-inner.heum-navigation-layout {
  justify-content: flex-start;
  gap: 13px;
}

.header-inner.heum-navigation-layout .top-nav {
  margin-left: auto;
}

.heum-side-layer[hidden] {
  display: none;
}

.heum-side-layer {
  position: fixed;
  z-index: 1000;
  inset: 0;
}

.heum-side-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(31, 9, 11, 0.6);
  opacity: 0;
  cursor: default;
  transition: opacity 220ms ease;
}

.heum-side-drawer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(390px, calc(100vw - 26px));
  flex-direction: column;
  overflow-y: auto;
  padding: 24px;
  color: #241a19;
  background:
    radial-gradient(circle at 0 0, rgba(164, 123, 60, 0.14), transparent 31%),
    #fcf9f5;
  box-shadow: 24px 0 70px rgba(37, 8, 11, 0.22);
  transform: translateX(-104%);
  transition: transform 240ms cubic-bezier(0.22, 0.78, 0.25, 1);
}

.heum-side-layer.is-open .heum-side-backdrop {
  opacity: 1;
}

.heum-side-layer.is-open .heum-side-drawer {
  transform: translateX(0);
}

.heum-side-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(73, 8, 13, 0.13);
}

.heum-side-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.heum-side-brand img {
  width: 34px;
  height: 34px;
}

.heum-side-brand small,
.heum-side-brand strong {
  display: block;
}

.heum-side-brand small {
  margin-bottom: 1px;
  color: #7a6a62;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.heum-side-brand strong {
  color: #49080d;
  font-size: 16px;
  letter-spacing: -0.035em;
}

.heum-side-close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(73, 8, 13, 0.16);
  border-radius: 50%;
  color: #49080d;
  background: #fff;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.heum-side-content {
  padding: 25px 0 28px;
}

.heum-side-eyebrow {
  margin: 0 0 10px;
  color: #7a6a62;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heum-side-nav {
  display: grid;
  gap: 6px;
}

.heum-side-link {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: #3d2927;
  background: transparent;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.heum-side-link:hover {
  border-color: rgba(73, 8, 13, 0.12);
  background: #fff;
  transform: translateX(2px);
}

.heum-side-link[aria-current="page"] {
  color: #fff;
  background: #49080d;
  box-shadow: 0 12px 28px rgba(73, 8, 13, 0.18);
}

.heum-side-number {
  color: #a47b3c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.heum-side-link[aria-current="page"] .heum-side-number,
.heum-side-link[aria-current="page"] .heum-side-arrow {
  color: #f2d69e;
}

.heum-side-link strong,
.heum-side-link small {
  display: block;
}

.heum-side-link strong {
  font-size: 15px;
  letter-spacing: -0.03em;
}

.heum-side-link small {
  margin-top: 2px;
  color: #7a6a62;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.heum-side-link[aria-current="page"] small {
  color: rgba(255, 255, 255, 0.74);
}

.heum-side-arrow {
  color: #8f7d76;
  font-size: 15px;
}

.heum-side-divider {
  height: 1px;
  margin: 22px 0;
  background: rgba(73, 8, 13, 0.12);
}

.heum-side-quicklinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.heum-side-quicklinks a {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 9px;
  border: 1px solid rgba(73, 8, 13, 0.14);
  border-radius: 13px;
  color: #49080d;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.heum-side-cta {
  margin-top: auto;
  padding: 20px;
  border-radius: 21px;
  color: #fff;
  background: #49080d;
}

.heum-side-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.heum-side-cta a {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding: 0 15px;
  border-radius: 13px;
  color: #49080d;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

body.heum-side-menu-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  body .nav-wrap.heum-navigation-layout,
  body .header-inner.heum-navigation-layout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
  }

  body .nav-wrap.heum-navigation-layout {
    min-height: 64px;
    padding: 9px 14px;
  }

  body .header-inner.heum-navigation-layout {
    width: min(calc(100% - 28px), 1160px);
    min-height: 66px;
    margin-inline: auto;
    padding: 8px 0;
  }

  .heum-menu-trigger {
    min-width: 43px;
    width: 43px;
    min-height: 43px;
    padding: 0;
    border-radius: 50%;
  }

  .heum-menu-trigger-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  body .nav-wrap.heum-navigation-layout .nav-logo,
  body .header-inner.heum-navigation-layout .brand {
    min-width: 0;
    margin: 0;
  }

  body .header-inner.heum-navigation-layout .brand span {
    font-size: 14px;
    white-space: nowrap;
  }

  body .header-inner.heum-navigation-layout .brand img {
    width: 29px;
    height: 29px;
  }

  body .header-inner.heum-navigation-layout .top-nav {
    width: auto;
    margin: 0;
    padding: 0;
    justify-self: end;
    overflow: visible;
  }

  body .header-inner.heum-navigation-layout .top-nav a:not(.nav-primary) {
    display: none;
  }

  body .header-inner.heum-navigation-layout .top-nav .nav-primary {
    min-height: 41px;
    margin: 0;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  body .nav-wrap.heum-navigation-layout .nav-cta {
    grid-column: 3;
    grid-row: 1;
    margin: 0;
  }

  .heum-side-drawer {
    padding: 20px 18px;
  }
}

@media (max-width: 390px) {
  body .nav-wrap.heum-navigation-layout .nav-logo span,
  body .header-inner.heum-navigation-layout .brand span {
    font-size: 12.5px !important;
  }

  body .nav-wrap.heum-navigation-layout .nav-cta {
    max-width: 92px;
    padding-inline: 10px !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (prefers-reduced-motion: reduce) {
  .heum-side-backdrop,
  .heum-side-drawer,
  .heum-menu-trigger,
  .heum-side-link {
    transition-duration: 0.01ms !important;
  }
}
