.page__logo {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}

.page__logo:hover {
  transform: scale(1.08);
}

.menu-drawer {
  position: absolute;
  left: 50px;
  top: 709px;
  width: 1820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
}

.menu-drawer--hidden {
  display: none;
}

.menu-panel {
  position: relative;
  width: 100%;
  height: 260px;
  background: #000;
  border-radius: 30px;
}

.menu-panel__brand {
  position: absolute;
  left: 100px;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid #fff;
  color: #fff;
}

.menu-panel__brand-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.menu-panel__brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: lowercase;
  text-align: center;
  white-space: nowrap;
}

.menu-panel__intro {
  position: absolute;
  left: 320px;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: #fff;
}

.menu-panel__desc {
  width: 343px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.menu-panel__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 35px;
  row-gap: 10px;
}

.menu-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: lowercase;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.menu-panel__cta:hover,
.menu-panel__cta:focus-visible {
  opacity: 0.75;
}

.menu-panel__cta img {
  display: block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.menu-panel__tabs {
  position: absolute;
  top: 197px;
  left: 0;
  right: 0;
}

.menu-tab {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.menu-tab:nth-child(1) { left: 320px; }
.menu-tab:nth-child(2) { left: 475px; }
.menu-tab:nth-child(3) { left: 695px; }
.menu-tab:nth-child(4) { left: 851px; }
.menu-tab:nth-child(5) { left: 1010px; }

.menu-tab:hover,
.menu-tab:focus-visible {
  background: #920000;
}

.menu-panel__social {
  position: absolute;
  left: 1580px;
  top: 182px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-panel__social-link {
  display: block;
  transition: opacity 0.2s ease;
}

.menu-panel__social-link:hover,
.menu-panel__social-link:focus-visible {
  opacity: 0.75;
}

.menu-panel__social-link img {
  display: block;
  width: 40px;
  height: 40px;
}

.menu-panel__subscribe {
  position: absolute;
  left: 1390px;
  top: 30px;
  width: 330px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: #fff;
}

.menu-panel__subscribe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.menu-panel__email-form {
  position: relative;
  width: 100%;
  height: 40px;
}

.menu-panel__email-field {
  position: relative;
  display: block;
  height: 40px;
  background: #000;
  border: 1px solid #fff;
  border-radius: 50px;
  overflow: hidden;
}

.menu-panel__email-field input {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  outline: none;
}

.menu-panel__email-field input::placeholder {
  color: #fff;
  opacity: 1;
}

.menu-panel__email-field img {
  position: absolute;
  right: 3px;
  top: 2px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  filter: invert(1);
}

.menu-panel__email-field img:hover {
  opacity: 0.75;
}

.menu-panel__email-submit {
  position: absolute;
  right: 3px;
  top: 2px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.menu-panel__email-submit:hover,
.menu-panel__email-submit:focus-visible {
  opacity: 0.75;
}

.menu-panel__email-submit img {
  display: block;
  width: 35px;
  height: 35px;
}

.menu-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #000;
  border: none;
  border-radius: 70px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.menu-drawer__close:hover,
.menu-drawer__close:focus-visible {
  opacity: 0.75;
}

.menu-drawer__close img {
  display: block;
  width: 14px;
  height: 14px;
}

.menu-drawer__close-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.menu-drawer__close-cross::before,
.menu-drawer__close-cross::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
}

.menu-drawer__close-cross::before {
  transform: rotate(45deg);
}

.menu-drawer__close-cross::after {
  transform: rotate(-45deg);
}

.menu-drawer--light .menu-panel {
  background: #fff;
}

.menu-drawer--light .menu-panel__brand {
  border-color: #000;
  color: #000;
}

.menu-drawer--light .menu-panel__intro {
  color: #000;
}

.menu-drawer--light .menu-panel__desc {
  color: #000;
}

.menu-drawer--light .menu-panel__cta {
  color: #000;
}

.menu-drawer--light .menu-panel__cta img {
  filter: invert(1);
}

.menu-drawer--light .menu-tab {
  color: #000;
}

.menu-drawer--light .menu-tab:hover,
.menu-drawer--light .menu-tab:focus-visible {
  background: #920000;
  color: #fff;
}

.menu-drawer--light .menu-panel__social-link img {
  filter: invert(1);
}

.menu-drawer--light .menu-panel__subscribe {
  color: #000;
}

.menu-drawer--light .menu-panel__subscribe-title {
  color: #000;
}

.menu-drawer--light .menu-panel__email-field {
  background: #fff;
  border-color: #000;
}

.menu-drawer--light .menu-panel__email-field input {
  color: #000;
}

.menu-drawer--light .menu-panel__email-field input::placeholder {
  color: #000;
}

.menu-drawer--light .menu-panel__email-field img {
  filter: none;
}

.menu-drawer--light .menu-panel__email-submit img {
  filter: invert(1);
}

.menu-drawer--light .menu-drawer__close {
  background: #fff;
}

.menu-drawer--light .menu-drawer__close-cross::before,
.menu-drawer--light .menu-drawer__close-cross::after {
  background: #000;
}