/* HabitHouse site header. Shared by every page; loaded from /assets/site-header.css.
   Mirrors the live betterhumanlabs.co header: a white rounded card floating near the
   top of the page (it scrolls away with the page, it is not pinned), the brand on the
   left, a three-bar toggle on the right, and a menu that expands the card downward. */

.site-header {
  --nav-top: 12px;
  --nav-left: 26px;
  position: relative;
  z-index: 3;
  width: calc(100% - 128px);
  max-width: 1072px;
  min-height: 70px;
  margin: 24px auto 28px;
  padding: 12px 16px 12px 26px;
  /* The app's cream, lifted a touch (its sheet colour) so it matches the icon and still
     reads as a card on the cream pages. */
  background: #F8F3E9;
  border: 1px solid #FBF8F1;
  border-radius: 24px;
  box-shadow: inset 0 1px #FDFBF6, 0 4px 16px rgba(26, 23, 20, 0.06), 0 0 0 1px rgba(26, 23, 20, 0.05);
  font-family: "Inter", -apple-system, sans-serif;
  color: #1A1714;
}
/* Landing page: the card floats over the sky instead of taking space above it. */
.site-header--over {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.site-header__brand {
  position: absolute;
  top: var(--nav-top);
  left: var(--nav-left);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.2px;
  color: #1A1714;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__disclosure { width: 100%; }
.site-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 14px;
  background: #E5DFCE;
  color: #1A1714;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.site-header__toggle::-webkit-details-marker { display: none; }
.site-header__burger { display: grid; gap: 5px; width: 20px; }
.site-header__burger span { height: 1.5px; border-radius: 1px; background: currentColor; }
.site-header__links { width: 100%; padding: 14px 0 4px; }
.site-header__links::before {
  content: "";
  display: block;
  border-top: 1px solid #E0DCD4;
  margin-bottom: 8px;
}
.site-header__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 18px 16px;
  border-radius: 12px;
  font-size: 20px;
  color: #1A1714;
  text-decoration: none;
}
.site-header__link:hover,
.site-header__link:focus-visible,
.site-header__toggle:hover,
.site-header__disclosure[open] .site-header__toggle { background: #E5DFCE; }
.site-header :focus-visible { outline: 3px solid #1A1714; outline-offset: 5px; }
.site-header__link:focus-visible { outline-offset: -3px; }
.site-header .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-header { width: calc(100% - 64px); }
}
@media (max-width: 600px) {
  .site-header {
    --nav-top: 7px;
    --nav-left: 11px;
    width: calc(100% - 24px);
    min-height: 60px;
    margin: 12px auto 16px;
    padding: 7px 11px;
    border-radius: 20px;
  }
  .site-header__brand { font-size: 18px; }
  .site-header__toggle { border-radius: 12px; }
}
