.vb-burger {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.vb-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.vb-burger:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.vb-burger:hover span:nth-child(1),
.vb-burger:hover span:nth-child(4) {
  width: 16px;
}

.vb-burger:hover span:nth-child(2),
.vb-burger:hover span:nth-child(3) {
  width: 26px;
}

.vb-burger-black {
  border-color: rgba(0, 0, 0, 0.28);
}

.vb-burger-black span {
  background: #111111;
}

.vb-burger-black:hover {
  border-color: rgba(0, 0, 0, 0.55);
}

.vb-header-left,
.vb-header-right {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.vb-header-logo {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  transition-delay: 120ms;
}

@media (min-width: 768px) {
  .vb-header-logo.vb-header-logo-centered {
    transform: translate3d(-50%, -10px, 0);
  }
}

.vb-header-right {
  transition-delay: 200ms;
}

.vb-hero-intro-title,
.vb-hero-intro-copy {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1100ms ease, transform 1100ms ease;
}

.vb-hero-intro-copy {
  transition-delay: 180ms;
}

body.vb-intro-ready .vb-header-left,
body.vb-intro-ready .vb-header-right,
body.vb-intro-ready .vb-hero-intro-title,
body.vb-intro-ready .vb-hero-intro-copy {
  opacity: 1;
  transform: translateY(0);
}

body.vb-intro-ready .vb-header-logo {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  body.vb-intro-ready .vb-header-logo.vb-header-logo-centered {
    transform: translate3d(-50%, 0, 0);
  }
}

.vb-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75vh;
  background: linear-gradient(165deg, rgba(12, 13, 12, 0.98), rgba(28, 30, 28, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 65;
  transform: translateY(-102%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.35s ease;
}

.vb-menu-open .vb-menu-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.vb-menu-inner {
  width: min(1220px, 92vw);
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
}

.vb-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.vb-links a {
  width: fit-content;
  position: relative;
  display: inline-block;
  color: #f5f5f5;
  text-decoration: none;
  font-family: "the-seasons", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(22px, 3.8vw, 32px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  transform: translateY(14px);
  opacity: 0;
  transition: color 0.25s ease, opacity 0.45s ease, transform 0.45s ease;
}

.vb-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #c9c2ad;
  transition: width 0.35s ease;
}

.vb-links a:hover {
  color: #c9c2ad;
}

.vb-links a:hover::after {
  width: 100%;
}

.vb-menu-open .vb-links a {
  opacity: 1;
  transform: translateY(0);
}

.vb-menu-open .vb-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.vb-menu-open .vb-links a:nth-child(2) {
  transition-delay: 0.17s;
}

.vb-menu-open .vb-links a:nth-child(3) {
  transition-delay: 0.24s;
}

.vb-menu-open .vb-links a:nth-child(4) {
  transition-delay: 0.31s;
}

.vb-contact {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.vb-contact p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #c9c2ad;
}

.vb-contact a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(18px, 1.7vw, 26px);
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.vb-contact a:hover {
  color: #c9c2ad;
  border-color: #c9c2ad;
}

.vb-menu-open .vb-burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.vb-menu-open .vb-burger span:nth-child(2) {
  opacity: 0;
}

.vb-menu-open .vb-burger span:nth-child(3) {
  opacity: 0;
}

.vb-menu-open .vb-burger span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 900px) {
  .vb-burger {
    width: 46px;
    height: 46px;
  }

  .vb-burger span {
    width: 20px;
  }

  .vb-menu-panel {
    height: 82vh;
  }

  .vb-menu-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vb-links {
    gap: 10px;
  }

  .vb-links a {
    font-size: clamp(20px, 6.5vw, 30px);
    line-height: 1.06;
  }

  .vb-contact {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .vb-contact a {
    font-size: clamp(16px, 5vw, 22px);
  }
}
