.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-header);
  pointer-events: none;
  transition: transform var(--duration-normal) var(--ease-out);
  will-change: transform;
}
/* When drawer is open, lift the whole header above any in-page modals/elevated content,
   but keep the drawer + overlay above the header so the menu visually wins. */
body.has-drawer-open .site-header {
  z-index: 99999;
}
body.has-drawer-open .site-header__overlay {
  z-index: 100000;
}
body.has-drawer-open .site-header__drawer {
  z-index: 100001;
}
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.site-header__shell {
  width: 100%;
  margin: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--wad-header-medium, #fffcec);
}
.site-header__utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 50px;
  padding: 15px 48px;
  background: rgba(255, 254, 247, 0.9);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}
.site-header__utility-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  width: min(100%, 619px);
  min-height: 20px;
  flex-wrap: nowrap;
}
.site-header__utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #000;
  text-decoration: none;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 110%;
  text-transform: uppercase;
  font-feature-settings: 'liga' off, 'clig' off;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: opacity 0.18s ease;
}

.site-header__utility-link:hover {
  opacity: 0.7;
}
.site-header__utility-link--phone {
  width: 145px;
}
.site-header__utility-link--appointment {
  width: 240px;
}
.site-header__utility-link--portal {
  width: 170px;
}
.site-header__utility-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.site-header__utility-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}
.site-header__inner {
  width: 100%;
  margin: 0;
  padding: 15px 48px;
  min-height: 100px;
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr) 211px;
  align-items: center;
  gap: 24px;
  background: rgba(255, 254, 247, 0.7);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  width: 285px;
  max-width: 100%;
  text-decoration: none;
  min-width: 0;
}
.site-header__logo .site-logo {
  width: 285px;
  height: 70px;
  object-fit: contain;
}
.site-header__logo-img {
  width: 285px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}
.site-header__brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}
.site-header__brand-mark--drawer {
  width: 28px;
  height: 28px;
}
.site-header__brand-sun {
  position: absolute;
  inset: 7px;
  border: 2px solid #c0a971;
  border-radius: 999px;
}
.site-header__brand-sun::before {
  content: "";
  position: absolute;
  inset: -2px auto auto -9px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 254, 247, 0.92);
}
.site-header__brand-rays {
  position: absolute;
  inset: 0;
}
.site-header__brand-rays::before,
.site-header__brand-rays::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    conic-gradient(from 0deg, transparent 0 8%, #c0a971 8% 10%, transparent 10% 22%, #c0a971 22% 24%, transparent 24% 36%, #c0a971 36% 38%, transparent 38% 50%, #c0a971 50% 52%, transparent 52% 64%, #c0a971 64% 66%, transparent 66% 78%, #c0a971 78% 80%, transparent 80% 100%);
  -webkit-mask: radial-gradient(circle at center, transparent 0 56%, #000 57%);
  mask: radial-gradient(circle at center, transparent 0 56%, #000 57%);
}
.site-header__logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #000;
  min-width: 0;
}
.site-header__logo-kicker {
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #000;
}
.site-header__logo-title {
  font-family: "Tenor Sans", var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-header__nav {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 1180px) {
  .site-header__nav {
    display: none;
  }
}
@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 59px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav-item {
  position: relative;
}
.site-header__nav-item.has-dropdown:hover > .site-header__dropdown,
.site-header__nav-item.has-dropdown:focus-within > .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__nav-item.is-active > .site-header__nav-link,
.site-header__nav-item.is-current > .site-header__nav-link,
.site-header__nav-item.is-current-ancestor > .site-header__nav-link {
  color: #000;
}
.site-header__nav-item.has-dropdown:hover > .site-header__nav-link,
.site-header__nav-item.has-dropdown:focus-within > .site-header__nav-link,
.site-header__nav-item:hover > .site-header__nav-link {
  color: #8a7346;
}
.site-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 59px;
  padding: 0;
  border-radius: 0;
  color: #000;
  text-decoration: none;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 0;
  height: 1px;
  background: #c0a971;
  transform: translateX(-50%);
  transition:
    width 0.28s ease,
    background-color 0.28s ease;
}
.site-header__nav-item.is-current > .site-header__nav-link::after {
  width: calc(100% - 4px);
}
.site-header__nav-item.is-current-ancestor > .site-header__nav-link::after {
  width: 18px;
  background: rgba(192, 169, 113, 0.6);
}
.site-header__nav-item:hover > .site-header__nav-link::after,
.site-header__nav-item:focus-within > .site-header__nav-link::after {
  width: calc(100% - 4px);
}
.site-header__nav-item.has-dropdown:hover > .site-header__nav-link .site-header__nav-chevron,
.site-header__nav-item.has-dropdown:focus-within > .site-header__nav-link .site-header__nav-chevron {
  transform: rotate(180deg);
}
.site-header__nav-item.has-dropdown > .site-header__nav-link .site-header__nav-chevron {
  transition: transform 0.22s ease;
}
.site-header__nav-chevron {
  width: 12px;
  height: 12px;
  display: inline-flex;
  color: currentColor;
}
.site-header__nav-chevron svg {
  width: 100%;
  height: 100%;
}
.site-header__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}
.site-header__nav-item.has-dropdown:hover > .site-header__dropdown,
.site-header__nav-item.has-dropdown:focus-within > .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.site-header__dropdown::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto;
  height: 10px;
}
.site-header__dropdown-panel {
  display: block;
  padding: 8px 0;
  border: 1px solid rgba(192, 169, 113, 0.28);
  background: rgba(255, 254, 247, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 32px rgba(53, 36, 8, 0.08);
}
/* Hide the redundant intro card on top-level dropdowns — clean list only */
.site-header__dropdown-intro {
  display: none;
}
.site-header__dropdown-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__dropdown-item {
  margin: 0;
}
.site-header__dropdown-item + .site-header__dropdown-item {
  border-top: 1px solid rgba(192, 169, 113, 0.18);
}
.site-header__dropdown-link,
.site-header__dropdown-parent-link {
  display: block;
  padding: 12px 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #000;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-header__dropdown-link:hover,
.site-header__dropdown-link:focus-visible,
.site-header__dropdown-parent-link:hover,
.site-header__dropdown-parent-link:focus-visible {
  background: rgba(192, 169, 113, 0.1);
  color: #8a7346;
  transform: none;
}
.site-header__dropdown-card {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.site-header__dropdown-card:hover {
  transform: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.site-header__dropdown-item.is-active > .site-header__dropdown-link,
.site-header__dropdown-item.is-current > .site-header__dropdown-link,
.site-header__dropdown-item.is-active > .site-header__dropdown-card > .site-header__dropdown-parent-link,
.site-header__dropdown-item.is-current > .site-header__dropdown-card > .site-header__dropdown-parent-link {
  background: rgba(192, 169, 113, 0.14);
  color: #000;
}
.site-header__dropdown-label {
  display: block;
  color: inherit;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}
.site-header__dropdown-text {
  display: none;
}
.site-header__dropdown-sub-list {
  position: absolute;
  top: -9px;
  left: 100%;
  z-index: 2;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border: 1px solid rgba(192, 169, 113, 0.28);
  background: rgba(255, 254, 247, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 32px rgba(53, 36, 8, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}
.site-header__dropdown-item.has-submenu:hover > .site-header__dropdown-card > .site-header__dropdown-sub-list,
.site-header__dropdown-item.has-submenu:focus-within > .site-header__dropdown-card > .site-header__dropdown-sub-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.site-header__dropdown-sub-item {
  margin: 0;
}
.site-header__dropdown-sub-link {
  display: block;
  flex-direction: initial;
  padding: 10px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.site-header__dropdown-sub-link:hover,
.site-header__dropdown-sub-link:focus-visible {
  transform: none;
  background: rgba(192, 169, 113, 0.1);
  border-color: transparent;
  color: #8a7346;
}
.site-header__dropdown-sub-item.is-active > .site-header__dropdown-sub-link,
.site-header__dropdown-sub-item.is-current > .site-header__dropdown-sub-link {
  background: rgba(192, 169, 113, 0.14);
  color: #000;
  border-color: transparent;
}
.site-header__dropdown-sub-label {
  display: block;
  color: inherit;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-header__dropdown-sub-text {
  display: none;
}
/* Cascading flyout: nested children sit beside their parent item */
.site-header__dropdown-item.has-submenu {
  position: relative;
}
.site-header__dropdown-item.has-submenu > .site-header__dropdown-card > .site-header__dropdown-parent-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.site-header__dropdown-item.has-submenu > .site-header__dropdown-card > .site-header__dropdown-parent-link::after {
  content: "›";
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
  color: #c0a971;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.site-header__dropdown-item.has-submenu:hover > .site-header__dropdown-card > .site-header__dropdown-parent-link::after,
.site-header__dropdown-item.has-submenu:focus-within > .site-header__dropdown-card > .site-header__dropdown-parent-link::after {
  transform: translateX(2px);
  color: #8a7346;
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 1180px) {
  .site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
  }
}
.site-header__cta {
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 211px;
  height: 59px;
  padding: 24px 48px;
  gap: 10px;
  border: 2px solid #c0a971;
  border-radius: 0;
  background: rgba(255, 254, 247, 0.08);
  backdrop-filter: blur(4px);
  color: #000;
  text-decoration: none;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.site-header__cta span {
  display: block;
  white-space: nowrap;
}
.site-header__cta:hover {
  background: rgba(192, 169, 113, 0.12);
  border-color: #dcc58c;
}
@media (max-width: 767px) {
  .site-header__cta {
    display: none;
  }
}
.site-header__menu-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 254, 247, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease;
}
@media (max-width: 1180px) {
  .site-header__menu-button {
    display: inline-flex;
    flex: 0 0 auto;
  }
}
.site-header__menu-button.isActive {
  background: rgba(192, 169, 113, 0.16);
  border-color: rgba(192, 169, 113, 0.4);
}
.site-header__menu-button.isActive .site-header__menu-button-line:first-child {
  transform: translateY(4px) rotate(45deg);
}
.site-header__menu-button.isActive .site-header__menu-button-line:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.site-header__menu-button-icon {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}
.site-header__menu-button-label {
  font-family: "Avenir Next", var(--font-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
}
.site-header__menu-button-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #000;
  transition: transform 0.22s ease;
}
.site-header__drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 10000;
  width: min(420px, 100vw);
  height: 100vh;
  max-height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: #fffef7;
  border-left: 1px solid rgba(192, 169, 113, 0.4);
  box-shadow: -32px 0 60px rgba(53, 36, 8, 0.22);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.32s cubic-bezier(0.32, 0.72, 0.16, 1),
    opacity 0.22s ease,
    visibility 0.22s ease;
}
/* Prevent FOUC: keep drawer fully out of paint until JS marks header ready */
.site-header:not(.is-ready) .site-header__drawer,
.site-header:not(.is-ready) .site-header__overlay,
body:not(.site-header-ready) .site-header__drawer,
body:not(.site-header-ready) .site-header__overlay {
  display: none !important;
}
.site-header:not(.is-ready) .site-header__drawer-sub {
  display: none;
}
.site-header__drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-header__drawer-header,
.site-header__drawer-body {
  width: 100%;
  pointer-events: auto;
}
.site-header__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(192, 169, 113, 0.24);
  background: rgba(255, 254, 247, 0.98);
}
.site-header__drawer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
  min-width: 0;
}
.site-header__drawer-logo-img {
  width: 180px;
  height: 44px;
  object-fit: contain;
}
.site-header__drawer-logo-text {
  font-family: "Tenor Sans", var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  color: #000;
}
.site-header__drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 0;
  background: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.site-header__drawer-close:hover {
  background: rgba(192, 169, 113, 0.12);
  border-color: rgba(192, 169, 113, 0.5);
}
.site-header__drawer-close svg {
  width: 18px;
  height: 18px;
}
.site-header__drawer-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fffef7;
  box-shadow: none;
  color: #000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
.site-header__drawer-intro {
  margin: 0;
  padding: 22px 24px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.site-header__drawer-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8a7346;
}
.site-header__drawer-summary {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  font-family: "Tenor Sans", var(--font-display);
  font-size: 16px;
  line-height: 1.5;
}
.site-header__drawer-nav {
  flex: 1 1 auto;
  padding: 0 24px;
}
.site-header__drawer-list,
.site-header__drawer-sub-list,
.site-header__drawer-sub-children {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__drawer-item {
  border-top: 1px solid rgba(192, 169, 113, 0.2);
}
.site-header__drawer-item:last-child {
  border-bottom: 1px solid rgba(192, 169, 113, 0.2);
}
.site-header__drawer-item.is-open
  > .site-header__drawer-row
  .site-header__drawer-toggle
  svg {
  transform: rotate(180deg);
}
.site-header__drawer-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}
.site-header__drawer-link {
  flex: 1 1 auto;
  display: block;
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease;
}
.site-header__drawer-link:hover,
.site-header__drawer-link:focus-visible {
  color: #8a7346;
}
.site-header__drawer-link-label {
  display: block;
  color: inherit;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}
.site-header__drawer-link-text,
.site-header__drawer-sub-text,
.site-header__drawer-sub-child-text {
  display: none;
}
.site-header__drawer-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  background: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.site-header__drawer-toggle:hover,
.site-header__drawer-toggle:focus-visible {
  background: rgba(192, 169, 113, 0.12);
  border-color: rgba(192, 169, 113, 0.5);
}
.site-header__drawer-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.22s ease;
}
.site-header__drawer-item.is-current > .site-header__drawer-row .site-header__drawer-link-label,
.site-header__drawer-item.is-current-ancestor > .site-header__drawer-row .site-header__drawer-link-label {
  color: #8a7346;
}
.site-header__drawer-sub {
  display: none;
  overflow: hidden;
  padding: 0 0 14px 0;
}
.site-header__drawer-sub-list {
  display: block;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(192, 169, 113, 0.3);
}
.site-header__drawer-sub-item {
  margin: 0;
}
.site-header__drawer-sub-link {
  display: block;
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease;
}
.site-header__drawer-sub-link:hover,
.site-header__drawer-sub-link:focus-visible {
  color: #8a7346;
  background: transparent;
}
.site-header__drawer-sub-item.is-active > .site-header__drawer-sub-link,
.site-header__drawer-sub-item.is-current > .site-header__drawer-sub-link {
  color: #8a7346;
  background: transparent;
}
.site-header__drawer-sub-label {
  display: block;
  color: inherit;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-header__drawer-sub-children {
  margin: 8px 0 0;
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(192, 169, 113, 0.22);
}
.site-header__drawer-sub-child-item {
  margin: 0;
}
.site-header__drawer-sub-child-link {
  display: block;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.78);
  transition: color 0.2s ease;
}
.site-header__drawer-sub-child-link:hover,
.site-header__drawer-sub-child-link:focus-visible {
  color: #8a7346;
}
.site-header__drawer-sub-child-item.is-active > .site-header__drawer-sub-child-link,
.site-header__drawer-sub-child-item.is-current > .site-header__drawer-sub-child-link {
  color: #8a7346;
  background: transparent;
  border-color: transparent;
}
.site-header__drawer-sub-child-label {
  display: block;
  color: inherit;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-header__drawer-footer {
  margin: auto 0 0;
  padding: 24px;
  border-top: 1px solid rgba(192, 169, 113, 0.24);
  background: rgba(255, 254, 247, 0.98);
}
.site-header__drawer-cta {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid #c0a971;
  border-radius: 0;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease;
}
.site-header__drawer-cta:hover,
.site-header__drawer-cta:focus-visible {
  background: rgba(192, 169, 113, 0.12);
  border-color: #dcc58c;
}
.site-header__drawer-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  text-align: center;
}
.site-header__drawer-meta a {
  color: rgba(0, 0, 0, 0.72);
  text-decoration: none;
  font-family: Montserrat, "Avenir Next", var(--font-secondary), Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}
.site-header__drawer-meta a:hover,
.site-header__drawer-meta a:focus-visible {
  color: #8a7346;
}
.site-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 14, 4, 0.4);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}
.site-header__overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .site-header__shell {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .site-header__utility {
    display: none;
  }
  .site-header__inner {
    padding: 14px 16px;
    min-height: auto;
    border-radius: 20px;
    gap: 14px;
    display: flex;
    border: 1px solid rgba(192, 169, 113, 0.18);
    background: rgba(255, 254, 247, 0.92);
    box-shadow: 0 18px 40px rgba(53, 36, 8, 0.1);
  }
  .site-header__logo-copy {
    color: #000;
  }
}
@media (max-width: 575px) {
  .site-header__shell {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
  }
  .site-header__logo-img {
    width: 46px;
    height: 46px;
  }
  .site-header__logo .site-logo {
    width: 46px;
    height: 46px;
  }
  .site-header__actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }
  .site-header__menu-button {
    flex: 0 0 auto;
    width: auto;
    justify-content: center;
    margin-left: auto;
    min-width: 0;
  }
  .site-header__drawer {
    width: 100vw;
    padding: 0;
  }
  .site-header__drawer-body {
    height: auto;
    max-height: none;
    padding: 0;
    border-radius: 0;
  }
}

html.is-locked,
body.is-locked {
  overflow: hidden;
}

/* Skip to main content */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}
