.movva-site-header {
  --movva-orange: #ff3600;
  --movva-orange-deep: #e92f00;
  --movva-green: #78a57b;
  --movva-green-deep: #648f68;
  --movva-ink: #172019;
  --movva-white: #ffffff;
  position: relative;
  z-index: 9990;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-bottom: 1px solid rgba(23, 32, 25, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(39, 51, 41, 0.08);
  color: var(--movva-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.movva-site-header,
.movva-site-header * {
  box-sizing: border-box;
}

.movva-site-header.is-sticky {
  position: sticky;
  top: 0;
}

.admin-bar .movva-site-header.is-sticky {
  top: 32px;
}

.movva-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 45px rgba(39, 51, 41, 0.12);
}

.movva-header-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--movva-orange) 0 64%, var(--movva-green) 64% 78%, var(--movva-orange) 78% 100%);
}

.movva-site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 48px);
  width: 100%;
  max-width: 1480px;
  min-height: 90px;
  margin: 0 auto;
  padding: 12px clamp(22px, 4vw, 64px);
  transition: min-height 0.25s ease, padding 0.25s ease;
}

.movva-site-header.is-scrolled .movva-site-header-inner {
  min-height: 78px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.movva-site-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--movva-ink);
  text-decoration: none !important;
}

.movva-site-logo-crop {
  position: relative;
  display: flex;
  align-items: center;
  width: 230px;
  height: 58px;
  overflow: hidden;
}

.movva-site-logo-crop img {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: contain !important;
  transform: none !important;
}

.movva-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 36px);
  min-width: 0;
}

.movva-site-nav a {
  font: inherit;
  text-decoration: none !important;
}

.movva-site-nav-links,
.movva-site-nav-actions {
  display: flex;
  align-items: center;
}

.movva-site-nav-links {
  gap: 4px;
}

.movva-site-nav-actions {
  gap: 10px;
}

.movva-nav-link {
  position: relative;
  padding: 14px 13px;
  color: rgba(23, 32, 25, 0.72) !important;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: 0.005em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.movva-nav-link::before {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--movva-orange) 0 68%, var(--movva-green) 68%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.movva-nav-link:hover,
.movva-nav-link.is-active {
  color: var(--movva-orange) !important;
}

.movva-nav-link:hover::before,
.movva-nav-link.is-active::before {
  transform: scaleX(1);
}

.movva-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 54, 0, 0.18);
  border-radius: 15px;
  background: rgba(255, 54, 0, 0.045);
  color: var(--movva-orange) !important;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.movva-instagram-link:hover {
  border-color: var(--movva-orange);
  background: var(--movva-orange);
  color: #fff !important;
  transform: translateY(-2px);
}

.movva-instagram-link i {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.movva-instagram-link i::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.movva-instagram-link i::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.movva-instagram-link span {
  display: none;
}

.movva-contact-link,
.movva-mobile-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
  border: 1px solid rgba(255, 54, 0, 0.2);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--movva-orange), #ff5b31);
  box-shadow: 0 13px 28px rgba(255, 54, 0, 0.2);
  color: #fff !important;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: box-shadow 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.movva-contact-link {
  padding: 9px 10px 9px 20px;
}

.movva-contact-link b,
.movva-mobile-contact b {
  position: relative;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  background: var(--movva-green);
  color: #fff;
  font-size: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.movva-contact-link b::before,
.movva-mobile-contact b::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.movva-contact-link b::after,
.movva-mobile-contact b::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 1px;
}

.movva-contact-link:hover,
.movva-mobile-contact:hover {
  box-shadow: 0 18px 36px rgba(255, 54, 0, 0.28);
  filter: brightness(1.035);
  transform: translateY(-2px);
}

.movva-contact-link:hover b,
.movva-mobile-contact:hover b {
  background: var(--movva-green-deep);
  transform: translate(2px, -2px);
}

.movva-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.movva-mobile-contact {
  min-height: 43px;
  padding: 6px 7px 6px 14px;
  border-radius: 13px;
  box-shadow: 0 9px 22px rgba(255, 54, 0, 0.18);
  font-size: 9px;
}

.movva-mobile-contact b {
  width: 27px;
  height: 27px;
  border-radius: 8px;
}

.movva-mobile-contact b::before {
  width: 11px;
}

.movva-mobile-contact b::after {
  top: 7px;
  right: 7px;
  width: 6px;
  height: 6px;
}

.movva-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 43px;
  height: 43px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(23, 32, 25, 0.12);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(39, 51, 41, 0.08);
  color: var(--movva-ink);
  cursor: pointer;
}

.movva-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 5px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.movva-menu-toggle span:nth-child(2) {
  width: 13px;
  margin-left: 5px;
  background: var(--movva-orange);
}

.movva-site-header[data-open="true"] .movva-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.movva-site-header[data-open="true"] .movva-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.movva-site-header[data-open="true"] .movva-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1120px) {
  .movva-site-header {
    isolation: isolate;
  }

  .movva-site-header-inner,
  .movva-site-header.is-scrolled .movva-site-header-inner {
    position: relative;
    min-height: 74px;
    padding: 9px 18px;
  }

  .movva-site-logo-crop {
    width: 174px;
    height: 48px;
  }

  .movva-site-logo-crop img {
    width: 100% !important;
    height: auto !important;
  }

  .movva-mobile-actions,
  .movva-menu-toggle {
    display: flex;
  }

  .movva-site-nav {
    position: absolute;
    z-index: 10;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    max-width: none;
    padding: 14px;
    border: 1px solid rgba(23, 32, 25, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 26px 65px rgba(39, 51, 41, 0.17);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .movva-site-header[data-open="true"] .movva-site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .movva-site-nav-links,
  .movva-site-nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .movva-site-nav-links {
    gap: 2px;
  }

  .movva-nav-link {
    padding: 14px 15px;
    border-radius: 12px;
    font-size: 12px;
  }

  .movva-nav-link::before {
    top: 50%;
    right: 12px;
    bottom: auto;
    left: auto;
    width: 22px;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
  }

  .movva-nav-link:hover,
  .movva-nav-link.is-active {
    background: rgba(255, 54, 0, 0.055);
  }

  .movva-nav-link:hover::before,
  .movva-nav-link.is-active::before {
    transform: translateY(-50%) scaleX(1);
  }

  .movva-site-nav-actions {
    gap: 7px;
    padding-top: 10px;
    border-top: 1px solid rgba(23, 32, 25, 0.08);
  }

  .movva-instagram-link {
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    height: 47px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 780;
    text-transform: uppercase;
    letter-spacing: 0.055em;
  }

  .movva-instagram-link span {
    display: inline;
  }

  .movva-contact-link {
    width: 100%;
    min-height: 52px;
    padding-left: 16px;
  }

  .admin-bar .movva-site-header.is-sticky {
    top: 46px;
  }
}

@media (max-width: 540px) {
  .movva-site-header-inner,
  .movva-site-header.is-scrolled .movva-site-header-inner {
    gap: 9px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .movva-site-logo-crop {
    width: 140px;
    height: 43px;
  }

  .movva-site-logo-crop img {
    width: 100% !important;
    height: auto !important;
  }

  .movva-mobile-contact {
    gap: 5px;
    padding-left: 10px;
  }

  .movva-mobile-contact span {
    max-width: 53px;
    font-size: 8px;
    line-height: 1.1;
    text-align: left;
  }
}

@media (max-width: 385px) {
  .movva-site-logo-crop {
    width: 122px;
  }

  .movva-site-logo-crop img {
    width: 100% !important;
    height: auto !important;
  }

  .movva-mobile-contact span {
    display: none;
  }

  .movva-mobile-contact {
    padding: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .movva-site-header,
  .movva-site-header * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
