/* page-hero.css */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.site-header.is-scrolled,
.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}
.site-header .site-nav__link,
.site-header .site-header__phone a,
.site-header .btn--primary {
  color: #ffffff !important;
}
.page-hero {
  position: relative;
  min-height: calc(50vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 0 0 4rem;
  overflow: hidden;
  margin-top: -100px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: calc(var(--header-height) + 2rem) 1rem 0;
  padding-top: 170px;
}
.page-breadcrumbs {
  width: 100%;
  text-align: left; /* Overrides any inherited global centering */
}

.page-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Forces the flex items to pack to the left edge */
  gap: 0.75rem;
  margin: 0 0 1.25rem 0; /* Ensures the left/right margins are strictly 0 */
  padding: 0;
  list-style: none;
}
.page-breadcrumbs li {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.page-breadcrumbs a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.page-breadcrumbs li::after {
  content: '/';
  margin-left: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.page-breadcrumbs li:last-child::after { content: ''; }
.page-hero__heading-wrap {
  max-width: 760px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.04;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
.page-hero__heading-wrap .eyebrow-luxury {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 38vh;
    padding: 3rem 0;
  }
  .page-hero__title {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }
  .page-breadcrumbs li {
    font-size: 0.85rem;
  }
}
