/* Primary header wordmark only (excludes drawer + page images) */
.lu-header__inner > a.lu-logo .lu-logo__img {
  max-width: 65%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Calm sticky nav (elevates softly once promo strip scrolls away) ── */
.lu-lander > .lu-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--lu-paper) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--lu-line) 58%, transparent);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  transition:
    box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 460ms cubic-bezier(0.22, 1, 0.36, 1),
    border-bottom-color 360ms ease;
}

@supports not (backdrop-filter: blur(2px)) {
  .lu-lander > .lu-header {
    background: var(--lu-paper);
  }
}

.lu-lander > .lu-header.is-stuck {
  background: color-mix(in srgb, var(--lu-paper) 98%, transparent);
  border-bottom-color: var(--lu-line);
  box-shadow:
    0 1px 0 rgba(10, 10, 10, 0.045),
    0 22px 50px rgba(10, 10, 10, 0.075);
}

.lu-lander > .lu-header .lu-header__inner {
  transition: padding-block 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lu-lander > .lu-header.is-stuck .lu-header__inner {
  padding-block: 13px;
}

@media (max-width: 920px) {
  .lu-lander > .lu-header.is-stuck .lu-header__inner {
    padding-block: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lu-lander > .lu-header,
  .lu-lander > .lu-header .lu-header__inner {
    transition-duration: 0.05s !important;
  }
  .lu-lander > .lu-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--lu-paper) !important;
  }
}
