
.site-masthead {
  background: #ffffff;
  border-bottom: 1px solid #EADFF0;
  box-shadow: 0 2px 18px rgba(42, 31, 54, 0.06);
}


.site-masthead__utility {
  background: #2A1F36;
  color: #D9CFE2;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.site-masthead__utility-inner {
  width: min(92%, 1200px);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.site-masthead__phone {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}
.site-masthead__phone:hover { color: #E9A46F; }
.site-masthead__hours { color: #C0B2CE; }


.site-masthead__bar {
  width: min(92%, 1200px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 0;
}
.site-masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}
.site-masthead__mark { height: 2.5rem; width: auto; }
.site-masthead__wordmark {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: #2A1F36;
  line-height: 1.1;
}
.site-masthead__wordmark span { display: block; font-family: 'Merriweather Sans', sans-serif; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: #8E3A62; }


.site-masthead__list { display: flex; align-items: center; }
.site-masthead__item { position: relative; }
.site-masthead__link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2A1F36;
  transition: color 0.3s ease;
}
.site-masthead__link:hover,
.site-masthead__link--current { color: #B3521A; }
.site-masthead__link--current { text-decoration: underline; text-underline-offset: 6px; }
.site-masthead__caret { display: inline-block; margin-left: 0.35rem; font-size: 0.7rem; }


.site-masthead__mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid #EADFF0;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 22px 60px rgba(42, 31, 54, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1200;
}
.site-masthead__item--mega:hover .site-masthead__mega,
.site-masthead__item--mega:focus-within .site-masthead__mega,
.site-masthead__mega.is-unfolded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-masthead__mega-title {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.site-masthead__mega-text { font-size: 0.8125rem; color: #6B5A7A; line-height: 1.55; }
.site-masthead__mega-col { padding: 0.25rem; border-radius: 10px; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.site-masthead__mega-col:hover { box-shadow: 0 8px 30px rgba(142, 58, 98, 0.18); transform: translateY(-3px); }
.site-masthead__mega-col a { display: block; padding: 0.5rem; }


.site-masthead__cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EADFF0;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2A1F36;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.site-masthead__cart:hover { box-shadow: 0 6px 22px rgba(142, 58, 98, 0.25); transform: translateY(-2px); }
.site-masthead__cart svg { width: 20px; height: 20px; }
.site-masthead__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #B3521A;
  color: #ffffff;
  font-size: 0.75rem;
}


.site-masthead__toggle { margin-left: auto; min-width: 44px; min-height: 44px; }
.site-masthead__close { min-width: 44px; min-height: 44px; }


.corp-breadcrumbs {
  width: min(92%, 1200px);
  margin: 1.25rem auto 0;
  font-size: 0.8125rem;
  color: #6B5A7A;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.corp-breadcrumbs a { color: #8E3A62; text-decoration: underline; text-underline-offset: 3px; }
.corp-breadcrumbs span[aria-current] { color: #2A1F36; }

@media (max-width: 1024px) {
  .site-masthead__utility-inner,
  .site-masthead__bar { width: min(94%, 750px); }
  .site-masthead__mega { min-width: 420px; grid-template-columns: repeat(2, 1fr); }
  .corp-breadcrumbs { width: min(94%, 750px); }
}

@media (max-width: 767px) {
  .site-masthead__utility-inner { padding: 0.4rem 1rem; justify-content: center; }
  .site-masthead__hours { display: none; }
  .site-masthead__bar { width: 100%; padding: 0.7rem 1rem; gap: 0.75rem; }
  .site-masthead__wordmark { font-size: 1.05rem; }
  .site-masthead__wordmark span { letter-spacing: 0.18em; }
  .site-masthead__mark { height: 2.1rem; }
  .site-masthead__list { flex-direction: column; align-items: stretch; }
  .site-masthead__mega {
    position: static;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0.5rem 0.75rem;
  }
  .site-masthead__mega-text { display: none; }
  .site-masthead__caret { display: none; }
  .site-masthead__cart { padding: 0.5rem 0.75rem; }
  .site-masthead__cart-label { display: none; }
  .corp-breadcrumbs { width: 100%; padding-inline: 1rem; }
}


.site-masthead__nav { font-weight: 500; letter-spacing: 0.01em; }
