.global-site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.global-nav {
  width: min(1180px, calc(100% - 56px));
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

.global-brand {
  width: max-content;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.018em;
  text-decoration: none;
}

.global-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-link {
  position: relative;
  padding: 10px 0;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.global-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: #111;
  content: "";
  transform: scaleX(0);
  transition: transform .22s ease;
}

.global-link:hover::after,
.global-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.global-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid #111;
  border-radius: 2px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease;
}

.global-cta:hover { transform: translateY(-2px); }

.global-footer {
  padding: 42px 0;
  border-top: 1px solid #dedbd5;
  background: #fff;
  color: inherit;
  font-size: initial;
  text-align: left;
}

.global-footer-inner {
  width: min(1180px, calc(100% - 56px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.global-footer p {
  margin: 0;
  color: #585858;
  font-size: 12px;
}

.global-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.global-footer-links a {
  color: #585858;
  font-size: 12px;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .global-nav {
    width: min(1180px, calc(100% - 36px));
    grid-template-columns: 1fr auto;
    gap: 10px 18px;
    padding: 13px 0 10px;
  }

  .global-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 24px;
    padding-top: 2px;
    border-top: 1px solid rgba(17, 17, 17, .08);
  }
}

@media (max-width: 580px) {
  .global-brand { font-size: 18px; }
  .global-cta { min-height: 42px; padding: 10px 15px; font-size: 13px; }
  .global-menu { justify-content: space-between; gap: 12px; }
  .global-link { font-size: 12px; }
  .global-footer-inner {
    width: min(1180px, calc(100% - 36px));
    align-items: flex-start;
    flex-direction: column;
  }
  .global-footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .global-link::after,
  .global-cta { transition-duration: .01ms !important; }
}
