body {
  padding-top: 112px;
}

.site-header .container {
  position: relative;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: #000;
  border-bottom: 1px solid #1f1f1f;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0 0.65rem;
  border-bottom: 1px solid #3b3b3b;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-logo {
  width: 200px;
  display: block;
  max-width: 100%;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 1px solid #4a4a4a;
  padding-left: 1rem;
}

.top-contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.phone {
  color: #d6d6d6;
  font-size: 22px;
  font-weight: 600;
}

.mail {
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1.4rem);
}

.whatsapp-mark {
  width: 42px;
  height: 42px;
  border: 2px solid #25d366;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.main-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: end;
  position: relative;
  padding: 0.7rem 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin: 0.8rem 0 0.2rem auto;
  border: 1px solid #2e2e2e;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.main-nav a {
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  font-weight: 600;
}

.main-nav a.active,
.main-nav a:hover {
  color: #d0b15b;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 270px;
  background: #000;
  border: 1px solid #222;
  z-index: 40;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2b2b2b;
}

.dd-icon {
  color: #d0b15b;
  font-size: 0.82rem;
  line-height: 1;
}

.caret {
  font-size: 0.72em;
  vertical-align: middle;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.dropdown-menu a:hover {
  background: #0e0e0e;
  color: #d0b15b;
}

@media (min-width: 821px) {
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }
}

.header-video {
  position: relative;
  margin-top: 0;
  border-top: 1px solid #222;
  overflow: hidden;
  min-height: 640px;
}

.header-video-media {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
  opacity: 0.75;
}

.header-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.5rem;
}

.header-video-overlay h2 {
  margin: 0;
  font-size: clamp(1.3rem, 3.2vw, 2.7rem);
}

.header-video-overlay p {
  margin: 0;
  max-width: 60ch;
  color: #e6e6e6;
}

@media (max-width: 1024px) {
  body {
    padding-top: 132px;
  }

  .header-top {
    gap: 1rem;
  }

  .brand-logo {
    width: 180px;
  }

  .phone {
    font-size: 1.1rem;
  }

  .mail {
    font-size: 0.95rem;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 1rem 1.4rem;
  }

  .header-video,
  .header-video-media {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 820px) {
  body {
    padding-top: 122px;
  }

  .header-top {
    flex-wrap: wrap;
  }

  .top-contact {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    margin-top: 0.65rem;
    padding: 0.85rem;
    gap: 0.35rem;
    flex-direction: column;
    align-items: stretch;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 16px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-dropdown > a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    font-size: 0.98rem;
    padding: 0.8rem 0.85rem;
    border-radius: 12px;
    background: #151515;
  }

  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-dropdown::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    display: none;
    min-width: 100%;
    margin-top: 0.4rem;
    border: 0;
    background: #111;
    padding: 0.25rem 0 0;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 0.7rem 0.85rem 0.7rem 1rem;
    font-size: 0.85rem;
    border-bottom-color: #1f1f1f;
  }

  .header-video,
  .header-video-media {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 138px;
  }

  .header-top {
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
  }

  .top-contact {
    border-left: 0;
    padding-left: 0;
  }

  .top-contact-text {
    align-items: flex-start;
  }

  .nav-toggle {
    margin-top: 0.65rem;
  }

  .main-nav {
    margin-top: 0.55rem;
  }

  .header-video,
  .header-video-media {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 168px;
  }

  .brand-logo {
    width: 150px;
  }

  .top-contact {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .top-contact-text,
  .main-nav {
    width: 100%;
  }

  .phone,
  .mail {
    font-size: 0.95rem;
  }

  .main-nav a {
    font-size: 0.92rem;
  }

  .header-video,
  .header-video-media {
    min-height: 340px;
    height: 340px;
  }

  .header-video-overlay {
    padding: 1rem;
  }
}

@media (max-width: 400px) {
  body {
    padding-top: 176px;
  }

  .whatsapp-mark {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .dropdown-menu a {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }
}
