/* Mobile homepage contact/footer spacing override — v2. */
@media (max-width:1024px){
  .mobile-final-footer-inner{padding-top:24px!important;padding-bottom:16px!important}
  .mobile-final-footer .mobile-kicker{margin:0 0 14px!important}
  .mobile-final-footer h2{display:none!important;margin:0!important;padding:0!important;height:0!important;min-height:0!important}
  .mobile-final-footer-lead{margin:0 0 18px!important;padding:0!important}
  .mobile-contact-links{gap:10px!important}
  .mobile-footer-brand{margin-top:18px!important;padding-top:18px!important}
  .mobile-footer-nav{margin-top:14px!important;padding-top:14px!important}
  .mobile-footer-copy{margin:16px 0 0!important;padding:0!important}
}


/* Mobile email ticker — text travels into the envelope */
@media (max-width:1024px){
  @keyframes mobileEmailIntoEnvelope{
    0%{transform:translateX(-110%);opacity:0}
    10%{opacity:1}
    72%{opacity:1}
    88%{transform:translateX(calc(100% - 62px));opacity:1}
    100%{transform:translateX(calc(100% - 42px));opacity:0}
  }
  @keyframes mobileEnvelopeReceive{
    0%,72%,100%{transform:scale(1)}
    86%{transform:scale(1.08)}
  }

  .mobile-contact-link.mobile-email-link{
    grid-template-columns:minmax(0,1fr) 54px!important;
    gap:8px!important;
    overflow:hidden!important;
    position:relative!important;
  }
  .mobile-email-track{
    min-width:0!important;
    overflow:hidden!important;
    position:relative!important;
    height:32px!important;
    display:flex!important;
    align-items:center!important;
  }
  .mobile-email-track strong{
    display:block!important;
    width:max-content!important;
    max-width:none!important;
    white-space:nowrap!important;
    font:500 18px/1 Inter,Arial,sans-serif!important;
    animation:mobileEmailIntoEnvelope 8s linear infinite!important;
    will-change:transform,opacity;
  }
  .mobile-email-envelope{
    position:relative!important;
    z-index:2!important;
    display:grid!important;
    place-items:center!important;
    width:46px!important;
    height:46px!important;
    justify-self:end!important;
    border-radius:50%!important;
    background:#242925!important;
    color:#fff!important;
    font:700 22px/1 Inter,Arial,sans-serif!important;
    animation:mobileEnvelopeReceive 8s linear infinite!important;
  }
  .mobile-email-envelope::before{
    content:""!important;
    position:absolute!important;
    left:-12px!important;
    top:6px!important;
    width:18px!important;
    height:34px!important;
    background:linear-gradient(90deg,transparent,#1b1e1c 72%)!important;
    pointer-events:none!important;
  }
}

@media (max-width:1024px) and (prefers-reduced-motion:reduce){
  .mobile-email-track strong,
  .mobile-email-envelope{
    animation:none!important;
    transform:none!important;
    opacity:1!important;
  }
  .mobile-email-track{overflow:visible!important}
}
