/* ─── Sticky CTA (mobile only) ─── */
.sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--color-copper);
    padding: 12px 24px;
    text-align: center;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .sticky-cta.visible {
    transform: translateY(0);
  }

  .sticky-cta a {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
  }

  body {
    padding-bottom: 56px;
  }
}

/* ─── Hamburger Menu ─── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-graphite);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Navigation Panel ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-graphite);
  z-index: 1000;
  padding: 100px 32px 32px;
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 16px 0;
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--color-copper);
}

.mobile-nav .btn {
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block !important;
  }

  .nav-desktop {
    display: none !important;
  }

  .lang-switcher.hide-mobile {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .mobile-nav {
    display: none !important;
  }
}
