.site-header {
  background: linear-gradient(180deg, rgb(0 0 0 / 92%) 0%, rgb(0 0 0 / 78%) 100%);
  color: var(--nyclaw-color-white);
  position: relative;
  width: 100%;
  z-index: 50;
}

body.home .site-header {
  background: linear-gradient(180deg, rgb(0 0 0 / 48%) 0%, rgb(0 0 0 / 18%) 72%, transparent 100%);
  left: 0;
  position: absolute;
  top: 0;
}

body.has-inner-hero .site-header {
  background: linear-gradient(180deg, rgb(0 0 0 / 54%) 0%, rgb(0 0 0 / 22%) 72%, transparent 100%);
  left: 0;
  position: absolute;
  top: 0;
}

body.has-contact-page .site-header {
  background: linear-gradient(180deg, rgb(0 0 0 / 64%) 0%, rgb(0 0 0 / 26%) 72%, transparent 100%);
  left: 0;
  position: absolute;
  top: 0;
}

.site-header__inner--chrome {
  align-items: flex-start;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  min-height: 128px;
  padding-block: 34px 18px;
}

.site-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  max-width: min(34vw, 419px);
  text-decoration: none;
}

.site-header__logo-image {
  height: auto;
  width: 100%;
}

.site-header__logo-image--dark {
  display: none;
}

body.archive:not(.has-inner-hero) .site-header {
  background: var(--nyclaw-color-white);
  box-shadow: 0 1px 0 var(--nyclaw-color-line);
  color: var(--nyclaw-color-charcoal);
}

body.archive:not(.has-inner-hero) .site-header__logo-image--light {
  display: none;
}

body.archive:not(.has-inner-hero) .site-header__logo-image--dark {
  display: block;
}

body.archive:not(.has-inner-hero) .site-header__menu a,
body.archive:not(.has-inner-hero) .site-header__phone {
  color: var(--nyclaw-color-charcoal);
}

body.archive:not(.has-inner-hero) .site-header__menu a:hover,
body.archive:not(.has-inner-hero) .site-header__menu a:focus,
body.archive:not(.has-inner-hero) .site-header__phone:hover,
body.archive:not(.has-inner-hero) .site-header__phone:focus {
  color: var(--nyclaw-color-maroon);
}

.site-header__right {
  align-items: flex-end;
  display: grid;
  gap: 16px;
  justify-items: end;
  min-width: 0;
}

.site-header__nav {
  background: transparent;
}

.site-header__menu,
.site-header__menu .sub-menu,
.site-footer__list,
.related-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: flex-end;
}

.site-header__menu > li,
.site-header__menu__item {
  position: relative;
}

.site-header__menu a {
  color: var(--nyclaw-color-white);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  padding-block: 4px;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header__menu a:hover,
.site-header__menu a:focus {
  color: var(--nyclaw-color-gold);
}

.site-header__menu .mobile-tele,
.site-header__menu .mobile-consult {
  display: none;
}

.site-header__menu .sub-menu,
.site-header__menu__submenu {
  background: var(--nyclaw-color-white);
  border: 1px solid var(--nyclaw-color-line);
  box-shadow: 0 16px 40px rgb(0 0 0 / 16%);
  display: none;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 260px;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  z-index: 20;
}

/* Hover-driven open state is scoped to real pointer+hover devices only. On
 * touch, iOS/Android can apply a "sticky hover" state after a tap, which
 * would otherwise keep the submenu visually open even after the JS toggle
 * (site-header__submenu-toggle) has correctly closed it. Keyboard focus
 * still opens it on every input type via :focus-within below. */
@media (hover: hover) and (pointer: fine) {
  .site-header__menu > li:hover > .sub-menu,
  .site-header__menu__item:hover > .site-header__menu__submenu {
    display: block;
  }
}

.site-header__menu > li:focus-within > .sub-menu,
.site-header__menu__item:focus-within > .site-header__menu__submenu {
  display: block;
}

.site-header__menu .sub-menu a,
.site-header__menu__submenu a {
  color: var(--nyclaw-color-charcoal);
  display: block;
  padding: 8px 16px;
  text-transform: none;
}

.site-header__menu .sub-menu a:hover,
.site-header__menu .sub-menu a:focus,
.site-header__menu__submenu a:hover,
.site-header__menu__submenu a:focus {
  background: var(--nyclaw-color-light);
  color: var(--nyclaw-color-maroon);
}

.site-header__submenu-toggle {
  display: none;
}

.site-header__actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.site-header__phone {
  align-items: center;
  color: var(--nyclaw-color-white);
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding-left: 22px;
  position: relative;
  text-decoration: none;
}

.site-header__phone::before {
  background: var(--nyclaw-color-gold);
  content: "";
  height: 15px;
  left: 0;
  mask: url("../images/phone.png") center / contain no-repeat;
  position: absolute;
  width: 15px;
}

.site-header__nav-toggle {
  align-items: center;
  background: rgb(0 0 0 / 42%);
  border: 0;
  border-radius: var(--nyclaw-radius);
  color: var(--nyclaw-color-white);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 8px;
  padding: 0.78rem 0.95rem;
  text-transform: uppercase;
}

.site-header__nav-toggle-line,
.site-header__nav-toggle-line::before,
.site-header__nav-toggle-line::after {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.site-header__nav-toggle-line {
  position: relative;
}

.site-header__nav-toggle-line::before,
.site-header__nav-toggle-line::after {
  content: "";
  left: 0;
  position: absolute;
}

.site-header__nav-toggle-line::before {
  top: -6px;
}

.site-header__nav-toggle-line::after {
  top: 6px;
}

.site-header__button,
.site-footer__button,
.site-footer__card-button,
.consultation-cta__button,
.home-hero__button,
.form-fallback__phone {
  background: var(--nyclaw-color-maroon);
  border-radius: var(--nyclaw-radius);
  color: var(--nyclaw-color-white);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 0.72rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
}

.home-hero__button {
  align-items: center;
}

.home-hero__button::after {
  content: "→";
  margin-left: 12px;
}

.site-header__button:hover,
.site-header__button:focus,
.site-footer__button:hover,
.site-footer__button:focus,
.site-footer__card-button:hover,
.site-footer__card-button:focus,
.consultation-cta__button:hover,
.consultation-cta__button:focus,
.home-hero__button:hover,
.home-hero__button:focus,
.form-fallback__phone:hover,
.form-fallback__phone:focus {
  background: var(--nyclaw-color-maroon-dark);
  color: var(--nyclaw-color-white);
}

.phone-link {
  font-weight: 700;
  white-space: nowrap;
}

.breadcrumbs {
  color: var(--nyclaw-color-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
  color: var(--nyclaw-color-muted);
  content: "/";
  margin-left: 8px;
}

.related-links {
  background: var(--nyclaw-color-light);
  border: 1px solid var(--nyclaw-color-line);
  border-radius: var(--nyclaw-radius);
  padding: 22px;
}

.related-links h2 {
  font-size: 1.15rem;
}

.related-links__list,
.site-footer__list {
  display: grid;
  gap: 10px;
}

.related-links__list a {
  font-weight: 700;
  text-decoration: none;
}

.consultation-cta {
  background: var(--nyclaw-color-maroon);
  color: var(--nyclaw-color-white);
  padding: 54px 24px;
}

.consultation-cta__inner {
  margin-inline: auto;
  max-width: 860px;
  text-align: center;
}

.consultation-cta__eyebrow {
  color: var(--nyclaw-color-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.consultation-cta h2 {
  color: var(--nyclaw-color-white);
  font-family: var(--nyclaw-font-heading);
  font-size: 2.25rem;
}

.consultation-cta__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.consultation-cta__phone,
.home-hero__phone {
  color: var(--nyclaw-color-white);
  font-weight: 700;
  text-decoration: none;
}

.consultation-cta__phone {
  font-size: 2rem;
}

.site-footer {
  background: var(--nyclaw-color-white);
  border-top: 1px solid #e8e8e8;
  color: var(--nyclaw-color-charcoal);
}

.site-footer__links {
  padding-block: 46px 34px;
}

.site-footer__grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(240px, 1.25fr) minmax(120px, 0.58fr) minmax(120px, 0.58fr) minmax(260px, 1fr);
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 18px;
}

.site-footer__logo img {
  display: block;
  height: auto;
  max-width: 286px;
  width: 100%;
}

.site-footer__address {
  color: var(--nyclaw-color-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
}

.site-footer__address p {
  margin: 0;
}

.site-footer__address a {
  color: var(--nyclaw-color-muted);
}

.site-footer__links h3 {
  color: var(--nyclaw-color-charcoal);
  font-family: var(--nyclaw-font-heading);
  font-size: 1.08rem;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: capitalize;
}

.site-footer__links a {
  color: var(--nyclaw-color-muted);
}

.site-footer__links .site-footer__button,
.site-footer__links .site-footer__card-button {
  color: var(--nyclaw-color-white);
}

.site-footer__button {
  align-items: center;
  border-radius: 0;
  gap: 14px;
  min-width: 206px;
  padding: 0.82rem 1.1rem;
}

.site-footer__button::after {
  background: url("../images/white-arrow.png") center / contain no-repeat;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 15px;
  width: 31px;
}

.site-footer__card-button::after {
  background: url("../images/white-arrow.png") center / contain no-repeat;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 15px;
  width: 31px;
}

.site-footer__list {
  display: grid;
  gap: 7px;
}

.site-footer__list a {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer__consultation-card {
  background: var(--nyclaw-color-white);
  box-shadow: 0 14px 32px rgb(0 0 0 / 14%);
  min-width: 0;
  padding: 26px 28px;
  position: relative;
  text-align: center;
}

.site-footer__consultation-card h4:first-child {
  color: var(--nyclaw-color-muted);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.site-footer__card-phone {
  color: var(--nyclaw-color-muted);
  display: inline-block;
  font-family: var(--nyclaw-font-heading);
  font-size: clamp(1.65rem, 2.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__consultation-card h4:last-of-type {
  color: var(--nyclaw-color-muted);
  font-family: var(--nyclaw-font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.site-footer__card-button {
  border-radius: 0;
  font-size: 0.92rem;
  gap: 14px;
  min-height: 50px;
  justify-content: center;
  line-height: 1.1;
  max-width: none;
  padding: 15px 30px;
  width: 100%;
}

.site-footer__legal {
  border-top: 1px solid #e8e8e8;
  color: var(--nyclaw-color-muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  padding-block: 10px;
  text-align: center;
  text-transform: uppercase;
}

.site-footer__legal p {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  justify-content: center;
  margin: 0 auto;
  max-width: calc(100vw - 32px);
}

.site-footer__legal a {
  color: var(--nyclaw-color-muted);
  margin-left: 0;
}

.consultation-popup {
  align-items: center;
  background: rgb(0 0 0 / 62%);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 100;
}

.consultation-popup[hidden] {
  display: none;
}

.consultation-popup__inner {
  background: var(--nyclaw-color-white);
  border: 1px solid var(--nyclaw-color-line);
  box-shadow: 0 24px 70px rgb(15 23 42 / 18%);
  display: grid;
  gap: 12px;
  max-height: min(86vh, 780px);
  max-width: 720px;
  overflow: auto;
  padding: 30px;
  position: relative;
  width: min(100%, 720px);
}

.consultation-popup__close {
  align-items: center;
  appearance: none;
  background: var(--nyclaw-color-maroon);
  border: 0;
  color: var(--nyclaw-color-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 48px;
}

@media (max-width: 640px) {
  .consultation-popup {
    align-items: flex-start;
    padding: 12px;
  }

  .consultation-popup__inner {
    max-height: calc(100vh - 24px);
    padding: 24px 18px 20px;
    width: 100%;
  }
}

.form-fallback {
  background: var(--nyclaw-color-light);
  border: 1px solid var(--nyclaw-color-line);
  border-radius: var(--nyclaw-radius);
  padding: 18px;
}

.nyclaw-lead-form {
  display: grid;
  gap: 14px;
}

.nyclaw-lead-form__fields {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nyclaw-lead-form label,
.nyclaw-lead-form__wide,
.nyclaw-lead-form__quiz {
  display: grid;
  gap: 6px;
}

.nyclaw-lead-form__wide {
  grid-column: 1 / -1;
}

.nyclaw-lead-form input,
.nyclaw-lead-form select,
.nyclaw-lead-form textarea {
  background: var(--nyclaw-color-white);
  border: 1px solid #767676;
  border-radius: 0;
  color: var(--nyclaw-color-charcoal);
  font: inherit;
  min-height: 48px;
  padding: 10px 12px;
  width: 100%;
}

.nyclaw-lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

/*
 * WS Form contact form (contact-us page): guarantee a visible keyboard focus
 * indicator. WS Form's default skin resets the outline and resolves its focus
 * border to the rest-state colour, leaving no visible focus change, so a maroon
 * focus ring is forced on the plugin's own field/button classes (WCAG 2.4.7).
 */
.wsf-form input.wsf-field:focus,
.wsf-form select.wsf-field:focus,
.wsf-form textarea.wsf-field:focus,
.wsf-form .wsf-button:focus {
  outline: 2px solid var(--nyclaw-color-maroon) !important;
  outline-offset: 2px !important;
}

.wsf-form input.wsf-field,
.wsf-form select.wsf-field,
.wsf-form .wsf-button {
  min-height: 48px !important;
}

/* Keep the plugin skin consistent across the three lead-form surfaces. */
.nyclaw-wsform {
  color: var(--nyclaw-color-charcoal);
}

.nyclaw-wsform .wsf-label,
.nyclaw-wsform .wsf-description,
.nyclaw-wsform .wsf-help {
  color: inherit !important;
}

.nyclaw-wsform input.wsf-field,
.nyclaw-wsform textarea.wsf-field {
  background: var(--nyclaw-color-white) !important;
  color: var(--nyclaw-color-charcoal) !important;
  font: inherit;
}

.nyclaw-wsform textarea.wsf-field {
  min-height: 110px;
}

.nyclaw-wsform .wsf-button.wsf-button-primary {
  background: var(--nyclaw-color-maroon) !important;
  border-color: var(--nyclaw-color-maroon) !important;
  color: var(--nyclaw-color-white) !important;
  font-family: var(--nyclaw-font-heading);
  font-weight: 800;
}

.nyclaw-wsform .wsf-button.wsf-button-primary:hover {
  background: var(--nyclaw-color-white) !important;
  color: var(--nyclaw-color-maroon) !important;
}

.nyclaw-wsform .wsf-form + .nyclaw-lead-form__privacy {
  color: inherit;
}

.nyclaw-lead-form__quiz {
  align-items: center;
  grid-template-columns: auto minmax(90px, 160px);
}

.nyclaw-lead-form__quiz .nyclaw-lead-form__error {
  grid-column: 1 / -1;
}

.nyclaw-lead-form .nyclaw-lead-form__hp {
  display: none;
}

.nyclaw-lead-form__submit {
  align-items: center;
  appearance: none;
  background: var(--nyclaw-color-maroon);
  border: 1px solid var(--nyclaw-color-maroon);
  color: var(--nyclaw-color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--nyclaw-font-heading);
  font-weight: 800;
  justify-content: center;
  justify-self: start;
  letter-spacing: 0.08em;
  min-height: 48px;
  padding: 12px 28px;
  text-transform: uppercase;
}

.nyclaw-lead-form__privacy {
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0;
  max-width: 68ch;
}

.nyclaw-lead-form__privacy a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
}

.wsf-form + .nyclaw-lead-form__privacy {
  color: var(--nyclaw-color-muted);
  margin-top: 14px;
}

.nyclaw-lead-form__submit::after {
  content: "→";
  margin-left: 14px;
}

.nyclaw-lead-form__submit:hover,
.nyclaw-lead-form__submit:focus {
  background: var(--nyclaw-color-white);
  color: var(--nyclaw-color-maroon);
}

.nyclaw-lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.nyclaw-lead-form__error,
.nyclaw-lead-form__message {
  color: #b42318;
  font-size: 0.875rem;
  min-height: 1em;
}

.nyclaw-lead-form__message.is-success {
  color: #167044;
}

.nyclaw-lead-form__loader {
  color: var(--nyclaw-color-muted);
  font-size: 0.875rem;
}

.legacy-contact-banner .nyclaw-lead-form {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .site-footer__grid {
    gap: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  html.has-open-nav {
    overflow: hidden;
  }

  body.home .site-header,
  body.has-inner-hero .site-header,
  body.has-contact-page .site-header {
    background: var(--nyclaw-color-white);
    box-shadow: 0 1px 0 var(--nyclaw-color-line);
    color: var(--nyclaw-color-charcoal);
    left: auto;
    position: relative;
    top: auto;
  }

  .site-header__inner--chrome {
    align-items: center;
    min-height: 64px;
    padding-block: 9px;
  }

  .site-header__brand {
    max-width: min(58vw, 238px);
  }

  body.home .site-header__logo-image--light,
  body.has-inner-hero .site-header__logo-image--light,
  body.has-contact-page .site-header__logo-image--light {
    display: none;
  }

  body.home .site-header__logo-image--dark,
  body.has-inner-hero .site-header__logo-image--dark,
  body.has-contact-page .site-header__logo-image--dark {
    display: block;
  }

  .site-header__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header__phone,
  .site-header__button {
    display: none;
  }

  .site-header__nav-toggle {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--nyclaw-color-charcoal);
    display: inline-flex;
    gap: 10px;
    min-height: 48px;
    min-width: 48px;
    padding: 0.58rem 0.68rem;
  }

  .site-header__nav {
    background: #161616;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 18px;
    box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
    display: none;
    left: 16px;
    max-height: calc(100vh - 96px);
    overflow: auto;
    padding: 16px;
    position: fixed;
    right: 16px;
    top: 76px;
    z-index: 120;
  }

  .site-header.is-nav-open .site-header__nav {
    display: block;
  }

  .site-header__menu {
    display: grid;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding-block: 0;
  }

  .site-header__menu .mobile-tele,
  .site-header__menu .mobile-consult {
    display: list-item;
  }

  .site-header__menu .sub-menu,
  .site-header__menu__submenu {
    background: rgb(255 255 255 / 5%);
    border: 0;
    border-left: 2px solid var(--nyclaw-color-gold);
    border-radius: 0 0 12px 12px;
    box-shadow: none;
    display: none;
    margin: 0 0 12px 10px;
    min-width: 0;
    padding: 8px 0 8px 14px;
    position: static;
  }

  .site-header__menu > li,
  .site-header__menu__item {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header__menu > li:last-child,
  .site-header__menu__item:last-child {
    border-bottom: 0;
  }

  .site-header__menu > li > a,
  .site-header__menu__item > a {
    align-items: center;
    color: var(--nyclaw-color-white);
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    min-height: 52px;
    padding: 14px 8px;
  }

  .site-header__menu .sub-menu a,
  .site-header__menu__submenu a {
    color: var(--nyclaw-color-white);
    font-size: 0.92rem;
    line-height: 1.25;
    padding: 9px 8px;
    text-transform: none;
  }

  .site-header__menu .is-submenu-open > .sub-menu,
  .site-header__menu__item.is-submenu-open > .site-header__menu__submenu {
    display: grid;
    grid-column: 1 / -1;
  }

  .site-header__menu > li:not(.is-submenu-open):focus-within > .sub-menu,
  .site-header__menu__item:not(.is-submenu-open):focus-within > .site-header__menu__submenu {
    display: none;
  }

  .site-header__submenu-toggle {
    align-items: center;
    align-self: center;
    appearance: none;
    background: rgb(255 255 255 / 8%);
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 999px;
    color: var(--nyclaw-color-white);
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    margin-right: 4px;
    width: 48px;
  }

  .site-header__submenu-toggle span {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
    height: 8px;
    transform: rotate(45deg) translateY(-2px);
    width: 8px;
  }

  .site-header__submenu-toggle[aria-expanded="true"] span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .nyclaw-lead-form__fields {
    grid-template-columns: 1fr;
  }

  .nyclaw-lead-form__quiz {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header__inner {
    padding-inline: 20px;
  }

  .site-header__inner--chrome {
    gap: 12px;
    min-height: 64px;
    padding-block: 10px;
  }

  .site-header__brand {
    max-width: min(58vw, 238px);
  }

  .site-header__actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .site-header__nav-toggle {
    font-size: 0.72rem;
    min-height: 48px;
    min-width: 82px;
    padding: 0.56rem 0.78rem;
  }
}

@media (max-width: 420px) {
  .site-header__nav-toggle-label {
    clip: auto;
    clip-path: none;
    height: auto;
    overflow: visible;
    position: static;
    white-space: nowrap;
    width: auto;
  }
}
