/* SoCal Landing final prelaunch polish */

@media (min-width:851px){
  .hero h1{
    font-size:clamp(3.2rem,4.25vw,4.55rem) !important;
    line-height:1.12 !important;
    letter-spacing:-.032em;
  }

  .page-hero h1,
  .standard-page .page-hero h1,
  main.standard-page > section:first-child h1,
  main > section:first-child h1{
    font-size:clamp(2.55rem,3.45vw,3.75rem) !important;
    line-height:1.16 !important;
    letter-spacing:-.026em;
  }
}

.advisor-name{
  margin:.38rem 0 .72rem;
  font-size:1.08rem;
  font-weight:800;
  color:#183b39;
}

.back-to-top{display:none}

@media (max-width:850px){
  .back-to-top{
    position:fixed;
    right:18px;
    bottom:84px;
    z-index:9997;
    width:42px;
    height:42px;
    border:1px solid rgba(12,113,104,.18);
    border-radius:999px;
    background:rgba(255,255,255,.96);
    color:#0c7168;
    box-shadow:0 8px 24px rgba(18,54,52,.16);
    align-items:center;
    justify-content:center;
    padding:0;
    font-size:22px;
    font-weight:800;
    line-height:1;
    cursor:pointer;
    opacity:0;
    transform:translateY(8px);
    pointer-events:none;
    transition:opacity .18s ease,transform .18s ease;
  }

  .back-to-top.is-visible{
    display:flex;
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  .back-to-top:focus-visible{
    outline:3px solid rgba(12,113,104,.22);
    outline-offset:2px;
  }
}