/* Shared, self-contained homepage navigation. */
.hp-nav[data-hp-navigation] {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 247, 242, .98);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 0; border-bottom: 1px solid rgba(26, 22, 19, .09);
  margin: 0; padding: 0; color: #1a1613;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; font-weight: 400; line-height: 1.55;
  letter-spacing: normal; text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02", "cv11";
}
.hp-nav[data-hp-navigation], .hp-nav[data-hp-navigation] * { box-sizing: border-box; }
.hp-nav[data-hp-navigation] .hp-nav-inner {
  width: 100%; max-width: 1240px; height: 72px;
  margin: 0 auto; padding: 0 28px; display: flex;
  align-items: center; justify-content: space-between; gap: 24px;
}
.hp-nav[data-hp-navigation] a { text-decoration: none; }
.hp-nav[data-hp-navigation] .hp-logo {
  display: inline-flex; align-items: center; flex: 0 0 auto;
  min-height: 44px; margin: 0; padding: 0; gap: 0;
  line-height: 1; background: transparent; border: 0; box-shadow: none;
}
.hp-nav[data-hp-navigation] .hp-logo-image {
  display: block; width: 144px; height: auto; max-width: none;
  max-height: 36px; object-fit: contain; filter: none; mix-blend-mode: normal;
}
.hp-nav[data-hp-navigation] .hp-nav-menu {
  position: static; display: flex; flex-direction: row; align-items: center;
  gap: clamp(16px, 1.4vw, 24px); margin: 0; padding: 0;
  list-style: none; border: 0; background: transparent; white-space: nowrap;
  font-size: 14px; font-weight: 400; line-height: 1.55;
}
.hp-nav[data-hp-navigation] .hp-nav-menu li { margin: 0; padding: 0; border: 0; list-style: none; }
.hp-nav[data-hp-navigation] .hp-nav-menu a {
  display: block; padding: 0; color: rgba(26, 22, 19, .72);
  font: inherit; letter-spacing: normal; text-transform: none;
  transition: color .2s;
}
.hp-nav[data-hp-navigation] .hp-nav-menu a:hover,
.hp-nav[data-hp-navigation] .hp-nav-menu a.is-active { color: #c94f2d; }
.hp-nav[data-hp-navigation] .hp-nav-cta {
  display: inline-flex; align-items: center; flex-shrink: 0; gap: 8px;
  padding: 10px 20px; margin: 0; border: 0; border-radius: 999px;
  background: #1a1613; color: #faf7f2; white-space: nowrap;
  font-size: 13px; font-weight: 500; line-height: 1.55; letter-spacing: .02em;
  box-shadow: none; transition: background .2s, transform .2s;
}
.hp-nav[data-hp-navigation] .hp-nav-cta:hover { background: #c94f2d; color: #faf7f2; transform: translateY(-1px); }
.hp-nav[data-hp-navigation] .hp-nav-toggle {
  display: none; align-items: center; justify-content: center; flex-shrink: 0;
  width: 44px; height: 44px; margin: 0; padding: 8px;
  background: none; border: 0; cursor: pointer; color: #1a1613;
}
.hp-nav[data-hp-navigation] .hp-nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; }
.hp-nav[data-hp-navigation] .icon-menu { display: block; }
.hp-nav[data-hp-navigation] .icon-close { display: none; }
.hp-nav[data-hp-navigation] .hp-nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.hp-nav[data-hp-navigation] .hp-nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.hp-nav[data-hp-navigation] a:focus-visible,
.hp-nav[data-hp-navigation] button:focus-visible { outline: 2px solid #c94f2d; outline-offset: 4px; }
@media (max-width: 1199px) {
  .hp-nav[data-hp-navigation] .hp-nav-cta { display: none; }
  .hp-nav[data-hp-navigation] .hp-nav-toggle { display: inline-flex; }
  .hp-nav[data-hp-navigation] .hp-nav-menu {
    position: absolute; top: 72px; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: calc(100dvh - 72px); overflow-y: auto;
    margin: 0; padding: 16px 28px; background: #faf7f2;
    border-bottom: 1px solid rgba(26, 22, 19, .09);
  }
  .hp-nav[data-hp-navigation] .hp-nav-menu.is-open { display: flex; }
  .hp-nav[data-hp-navigation] .hp-nav-menu li { padding: 0; border-bottom: 1px solid rgba(26, 22, 19, .09); }
  .hp-nav[data-hp-navigation] .hp-nav-menu a { padding: 12px 0; }
  .hp-nav[data-hp-navigation] .hp-nav-menu li:last-child { border-bottom: 0; }
}
@media (max-width: 600px) {
  .hp-nav[data-hp-navigation] .hp-logo-image { width: 132px; }
}
