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

.global-site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: #16130f;
  backdrop-filter: blur(18px);
}

.global-site-header a {
  color: inherit;
  text-decoration: none;
}

.global-announcement {
  min-height: 22px;
  background: #181410;
}

.global-nav-wrap {
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid rgba(22, 19, 15, 0.1);
}

.global-nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.global-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 6px 18px rgba(20, 15, 10, 0.08);
}

.global-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.global-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.global-brand-text strong {
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.global-brand-text small {
  color: rgba(22, 19, 15, 0.46);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.global-site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.global-site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(22, 19, 15, 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: 0.22s ease;
}

.global-site-nav a:hover,
.global-site-nav a[aria-current="page"] {
  color: #16130f;
  background: rgba(22, 19, 15, 0.06);
}

.global-header-action {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(199, 70, 41, 0.18);
  border-radius: 999px;
  color: #c74629;
  background: rgba(199, 70, 41, 0.12);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease;
}

.global-header-action:hover {
  transform: translateY(-1px);
  background: rgba(199, 70, 41, 0.16);
}

.global-menu-toggle {
  width: 46px;
  min-width: 46px;
  height: 46px;
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 0;
  border-radius: 14px;
  background: rgba(22, 19, 15, 0.05);
  cursor: pointer;
  flex: 0 0 46px;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
}

.global-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #16130f;
  transition: 0.22s ease;
}

@media (max-width: 1080px) {
  .global-nav-shell {
    min-height: 76px;
    gap: 14px;
  }

  .global-menu-toggle {
    display: inline-flex !important;
  }

  .global-site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% - 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(22, 19, 15, 0.1);
    border-radius: 18px;
    background: rgba(247, 244, 239, 0.98);
    box-shadow: 0 18px 46px rgba(20, 15, 10, 0.16);
  }

  body.global-menu-open .global-site-nav {
    display: flex;
  }

  .global-site-nav a {
    padding: 13px 14px;
  }

  .global-header-action {
    display: none;
  }

  body.global-menu-open .global-header-action {
    position: absolute;
    left: 32px;
    right: 32px;
    top: calc(100% + 330px);
    display: inline-flex;
    background: #f4dfd8;
  }
}

@media (max-width: 560px) {
  .global-nav-shell {
    width: min(100% - 24px, 1180px);
  }

  .global-brand-text small {
    display: none;
  }

  .global-site-nav {
    left: 12px;
    right: 12px;
  }
}
