:root {
  --pr-header-bg: rgba(12, 11, 14, 0.58);
  --pr-header-border: rgba(244, 239, 228, 0.18);
  --pr-header-text: var(--ink, #f4efe4);
  --pr-header-muted: rgba(244, 239, 228, 0.76);
  --pr-header-faint: rgba(244, 239, 228, 0.12);
  --pr-header-gold: var(--accent, #d4b57a);
  --pr-header-field: rgba(255, 255, 255, 0.055);
}

#shared-header-root,
#shared-header-root * {
  box-sizing: border-box;
}

#shared-header-root {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(var(--site-shell-width, 1260px), calc(100% - 32px));
  margin-inline: auto;
  color: var(--pr-header-text);
  background: transparent;
  padding: 8px 0 10px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.pr-header {
  width: 100%;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 42%, rgba(212, 181, 122, 0.035)),
    rgba(9, 8, 11, 0.68);
  border: 1px solid var(--pr-header-border);
  border-radius: 22px;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}

.pr-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(var(--site-shell-width, 1260px), calc(100% - 44px));
  min-height: 64px;
  margin: 0 auto;
  padding: 0;
  gap: 0;
}

.pr-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: clamp(28px, 3.4vw, 54px);
  color: var(--pr-header-text);
  font-family: var(--font-display, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif);
  font-size: clamp(2.15rem, 2.8vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.pr-header__brand:hover,
.pr-header__brand:focus-visible {
  color: #fff7df;
}

.pr-header__cta {
  flex: 0 0 auto;
  width: clamp(270px, 22vw, 360px);
  min-width: 0;
  margin: 0 0 0 auto;
  padding: 0 22px 0 0;
  color: rgba(244, 239, 228, 0.9);
  font-family: var(--font-display, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif);
  font-size: clamp(1.02rem, 1.1vw, 1.18rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: left;
}

.pr-header__search {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  gap: 12px;
  margin: 0;
  margin-left: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.pr-header__near {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
  min-height: 50px;
  margin: 0;
  padding: 8px 18px;
  border: 1px solid rgba(244, 239, 228, 0.16);
  border-radius: 999px;
  color: rgba(244, 239, 228, 0.66);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  font: inherit;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.pr-header__near:hover,
.pr-header__near:focus-visible {
  color: var(--pr-header-text);
  border-color: rgba(212, 181, 122, 0.28);
  background: rgba(212, 181, 122, 0.08);
}

.pr-header__near-label {
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1;
}

.pr-header__dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--pr-header-gold);
  border-radius: 999px;
  background: rgba(7, 7, 8, 0.94);
  box-shadow: 0 0 0 3px rgba(212, 181, 122, 0.17);
}

.pr-header__divider {
  display: none;
}

.pr-header__input {
  flex: 0 1 390px;
  width: min(390px, 32vw);
  min-width: 190px;
  min-height: 50px;
  margin: 0;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--pr-header-text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  appearance: none;
}

.pr-header__input::placeholder {
  color: rgba(244, 239, 228, 0.52);
}

.pr-header__input:focus {
  border-color: rgba(244, 239, 228, 0.18);
  background: rgba(255, 255, 255, 0.064);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.pr-header__find {
  flex: 0 0 auto;
  min-height: 42px;
  margin: 0;
  border: 1px solid rgba(244, 239, 228, 0.9);
  border-radius: 999px;
  padding: 0 24px;
  color: #080709;
  background: #f4efe4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.pr-header__find:hover,
.pr-header__find:focus-visible {
  background: #fffaf0;
  color: #050405;
  transform: translateY(-1px);
}

.pr-header__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

#shared-header-root :is(a, button):focus-visible {
  outline: 2px solid var(--pr-header-gold);
  outline-offset: 3px;
}

#shared-header-root .pr-header__input:focus-visible {
  outline: none;
}

@media (max-width: 1100px) {
  .pr-header__brand {
    margin-right: 24px;
  }

  .pr-header__cta {
    width: clamp(220px, 21vw, 280px);
    font-size: clamp(0.94rem, 1vw, 1.04rem);
    padding-right: 16px;
  }

  .pr-header__input {
    flex-basis: 300px;
    width: min(300px, 28vw);
    min-width: 160px;
  }
}

@media (max-width: 860px) {
  .pr-header__cta {
    display: none;
  }

  .pr-header__search {
    flex: 1 1 auto;
    margin-left: 18px;
  }

  #shared-header-root {
    width: min(var(--site-shell-width, 1260px), calc(100% - 20px));
    padding: 6px 0 8px;
  }

  .pr-header {
    border-radius: 16px;
  }

  .pr-header__inner {
    width: min(var(--site-shell-width, 1260px), calc(100% - 24px));
    min-height: 54px;
  }

  .pr-header__brand {
    font-size: clamp(1.34rem, 3.8vw, 1.56rem);
    margin-right: 0;
  }

  .pr-header__search {
    gap: 8px;
  }

  .pr-header__near {
    min-height: 42px;
    padding: 7px 11px;
  }

  .pr-header__dot {
    width: 10px;
    height: 10px;
  }

  .pr-header__input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .pr-header__find {
    min-height: 34px;
    padding-inline: 15px;
    font-size: 0.78rem;
  }
}

@media (max-width: 560px) {
  .pr-header__near {
    padding-inline: 9px;
  }

  .pr-header__near-label {
    font-size: 0.5rem;
  }

  .pr-header__find {
    padding-inline: 13px;
  }
}