@media (max-width: 900px){
  .hero-nav{ flex-wrap: wrap; }
}

@media (max-width: 600px){
  .hero{
    padding-top: calc(120px + var(--space-md));
    min-height: 250px;
  }

  .hero-inner{
    min-height: 250px;
    position: relative;
    z-index: 2;
  }

  .hero::before{
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-mask-image:
      linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%),
      linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
    mask-image:
      linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%),
      linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 94%, rgba(0,0,0,0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    inset: 50px 0 auto 0;
    height: clamp(160px, 42vw, 220px);
    z-index: 0;
  }

  .hero::after{
    content: "";
    position: absolute;
    inset: 50px 0 auto 0;
    height: clamp(160px, 42vw, 220px);
    background: transparent;
    z-index: 1;
    pointer-events: none;
  }


  .hero-topbar{
    height: auto;
    padding-block: var(--space-sm);
    padding-inline: var(--space-sm);
  }

  .hero-topbar-inner{
    position: relative;
    justify-content: space-between;
    column-gap: var(--space-sm);
    padding-right: 0;
    padding-left: 0;
  }

  .hero-brand{
    width: 70px;
    height: 70px;
    margin-right: var(--space-sm);
  }

  .hero-menu-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: var(--space-sm) !important;
  }

  .hero-nav{
    display: none;
    position: absolute;
    top: calc(100% + var(--space-xs));
    right: var(--space-sm) !important;
    left: var(--space-sm) !important;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 18px;
    padding: var(--space-sm);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
  }

  .hero-nav.is-open{
    display: flex;
  }


  .hero-nav span{ display: none; }

  .hero-copy{
    position: absolute;
    left: var(--space-md);
    right: var(--space-md);
    top: clamp(80px, 18vw, 130px);
    bottom: auto;
    transform: none;
    margin-top: 0;
    padding: 0;
    max-width: 100%;
  }
}
