/* Compact web wordmark. The bear is traced from the existing brand artwork;
   the business name is live text so it stays sharp and readable at every size. */
.site-header {
  box-shadow: 0 3px 14px rgb(24 26 27 / 5%);
}
.nav-wrap {
  height: auto;
  min-height: 86px;
  padding-block: 14px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 14px;
  color: var(--ink);
}
.brand-mark {
  width: 104px;
  height: 56px;
  flex: 0 0 104px;
  background: url('/assets/bear-mark.svg') no-repeat center / contain;
}
.brand-wordmark { display: flex; flex-direction: column; gap: 6px; font-size: 1.85rem; }
.brand-title {
  font-family: var(--body);
  font-size: 1em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.brand-title > span { color: var(--red); }
.brand-subtitle {
  font-size: calc(2em / 3);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .115em;
  white-space: nowrap;
  color: #8b7355;
}
.site-header nav { gap: 27px; font-size: .875rem; }
.site-header .button-small { padding: 11px 19px; min-height: 46px; }
.menu-toggle { border-radius: 3px; min-height: 44px; }
.menu-icon { font-size: 1.2rem; line-height: 1; }
@media (max-width: 1050px) {
  .nav-wrap { gap: 20px; }
  .site-header nav { gap: 18px; font-size: .8rem; }
  .site-header .button-small { font-size: .85rem; padding-inline: 15px; }
}
@media (max-width: 960px) {
  .nav-wrap { min-height: 80px; }
  .menu-toggle { display: flex; align-items: center; gap: 9px; background: white; border: 1px solid var(--line); padding: 8px 12px; font-size: .875rem; }
  .site-header nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 22px max(20px, calc((100% - 1240px) / 2)); background: white; border-top: 1px solid var(--line); box-shadow: 0 12px 18px rgb(0 0 0 / 7%); }
  .site-header nav.open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .site-header nav > a:not(.button) { font-size: 1rem; padding-block: 12px; }
  .site-header nav .button { margin-top: 12px; justify-content: center; font-size: .95rem; }
}
@media (max-width: 540px) {
  .nav-wrap { min-height: 76px; padding-block: 13px; gap: 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 72px; height: 42px; flex-basis: 72px; }
  .brand-subtitle { letter-spacing: .025em; }
  .brand-wordmark { gap: 6px; font-size: 1.6rem; }
  .menu-label { display: none; }
  .menu-toggle { justify-content: center; width: 44px; flex-shrink: 0; padding: 8px; }
}
@media (max-width: 380px) {
  .nav-wrap { gap: 8px; }
  .brand { gap: 8px; }
  .brand-mark { width: 64px; height: 38px; flex-basis: 64px; }
  .menu-label { display: none; }
  .menu-toggle { justify-content: center; width: 44px; flex-shrink: 0; padding: 8px; }
  .brand-wordmark { font-size: clamp(1.15rem, 6vw, 1.45rem); }
  .brand-subtitle { letter-spacing: .015em; }
}
