.mobile-menu { display: none; margin-left: auto; }
.mobile-menu summary {
  width: 44px;
  height: 44px;
  padding: 7px 8px;
  cursor: pointer;
  list-style: none;
  position: relative;
  z-index: 1002;
  touch-action: manipulation;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::marker { content: ""; }
.mobile-menu summary span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}

@media (max-width: 900px) {
  .mobile-menu { display: block; }
  .mobile-menu[open] summary span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .topbar .mobile-menu[open] .mobile-nav {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100dvh - 72px);
    padding: 26px 24px 40px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-top: 1px solid #e7e7e7;
    box-shadow: 0 18px 35px #0617271f;
    z-index: 1001;
  }
  .topbar .mobile-menu[open] .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 57px;
    border-bottom: 1px solid #e7e7e7;
    color: var(--navy);
    font: 600 22px Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .02em;
  }
  .topbar .mobile-menu[open] .mobile-nav .menu-cta {
    justify-content: center;
    min-height: 56px;
    margin-top: 24px;
    border: 0;
    background: var(--orange);
    font: 800 15px Manrope, sans-serif;
    text-transform: none;
  }
}

@media (max-width: 600px) {
  .hero {
    width: 100%;
    height: min(78vw, 340px);
    min-height: 0;
    padding: 34px 22px 24px;
    display: flex;
    align-items: center;
    background-position: 64% center;
    background-image: linear-gradient(90deg, rgba(5,19,33,.96) 0%, rgba(5,19,33,.76) 54%, rgba(5,19,33,.18) 100%), url(hero-v2.png);
  }
  .hero-content { width: 76%; max-width: 320px; }
  .hero .eyebrow { margin: 0 0 10px; font-size: 10px; line-height: 1.45; letter-spacing: .13em; }
  .hero h1 { margin: 0 0 18px; font-size: 34px; line-height: 1; }
  .hero h1 br { display: none; }
  .hero h1 em { display: block; margin-top: 4px; }
  .hero .lead, .hero .text-link { display: none; }
  .hero-actions { display: block; margin-top: 0; }
  .hero .button { padding: 13px 16px; gap: 14px; font-size: 13px; }
  .floating { width: 54px; height: 54px; }
}
