/* BR MOBILE HAMBURGER V1
   Desktop contract: no visual changes at >900px.
   Mobile contract: progressive enhancement; without JS the existing horizontal nav remains available. */

.siteBody .mobileNavToggle{
  display:none;
}

@media(max-width:900px){
  .siteBody.mobileNavEnhanced .nav{
    position:relative;
    min-height:68px;
    padding:10px 0;
    flex-wrap:nowrap;
    gap:14px;
  }

  .siteBody.mobileNavEnhanced .brand{
    min-width:0;
    flex:1 1 auto;
  }

  .siteBody.mobileNavEnhanced .mobileNavToggle{
    appearance:none;
    -webkit-appearance:none;
    display:inline-flex;
    flex:0 0 44px;
    width:44px;
    height:44px;
    margin-left:auto;
    padding:0;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    border:1px solid rgba(255,255,255,.24);
    border-radius:11px;
    background:rgba(255,255,255,.07);
    color:#fff;
    cursor:pointer;
    box-shadow:none;
  }

  .siteBody.mobileNavEnhanced .mobileNavToggle:hover{
    background:rgba(255,255,255,.12);
  }

  .siteBody.mobileNavEnhanced .mobileNavToggle:focus-visible{
    outline:3px solid rgba(88,168,50,.85);
    outline-offset:3px;
  }

  .siteBody.mobileNavEnhanced .mobileNavToggleBar{
    display:block;
    width:22px;
    height:2px;
    border-radius:999px;
    background:currentColor;
    transform-origin:center;
    transition:transform .18s ease,opacity .18s ease;
  }

  .siteBody.mobileNavEnhanced .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .siteBody.mobileNavEnhanced .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(2){
    opacity:0;
  }

  .siteBody.mobileNavEnhanced .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .siteBody.mobileNavEnhanced .nav #site-primary-nav{
    display:none!important;
    position:absolute;
    z-index:30;
    top:100%;
    left:0;
    right:0;
    width:auto;
    margin:0;
    padding:10px;
    gap:4px;
    overflow:visible;
    flex-direction:column;
    flex-wrap:nowrap;
    align-items:stretch;
    border:1px solid rgba(255,255,255,.10);
    border-top:0;
    border-radius:0 0 14px 14px;
    background:#102f50;
    box-shadow:0 18px 36px rgba(9,28,47,.28);
  }

  .siteBody.mobileNavEnhanced .nav #site-primary-nav.is-open{
    display:flex!important;
  }

  .siteBody.mobileNavEnhanced .nav #site-primary-nav a{
    display:block;
    width:100%;
    padding:11px 13px;
    border-radius:9px;
    background:transparent;
    font-size:14px;
    line-height:1.25;
  }

  .siteBody.mobileNavEnhanced .nav #site-primary-nav a:hover,
  .siteBody.mobileNavEnhanced .nav #site-primary-nav a:focus-visible{
    background:rgba(255,255,255,.10);
    outline:none;
  }
}

@media(max-width:560px){
  .siteBody.mobileNavEnhanced .nav{
    min-height:63px;
  }
}

@media(prefers-reduced-motion:reduce){
  .siteBody.mobileNavEnhanced .mobileNavToggleBar{
    transition:none;
  }
}

/* BR MOBILE HAMBURGER V1-R1 — WHITE HEADER COMPATIBILITY
   site-nav-v3 uses the approved white/mobile branding header.
   This layer deliberately wins only at <=900px and only after JS enhancement. */
@media(max-width:900px){
  html body.siteBody.mobileNavEnhanced header.top .wrap.nav{
    position:relative!important;
    height:auto!important;
    min-height:72px!important;
    padding-top:10px!important;
    padding-bottom:10px!important;
    flex-wrap:nowrap!important;
    align-items:flex-start!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .wrap.nav .brand{
    margin:0!important;
    padding-right:62px!important;
    min-width:0!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle{
    display:flex!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
    position:absolute!important;
    z-index:100!important;
    top:16px!important;
    right:0!important;
    transform:none!important;
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    min-height:46px!important;
    margin:0!important;
    padding:0!important;
    align-items:center!important;
    justify-content:center!important;
    flex-direction:column!important;
    gap:5px!important;
    border:1px solid #d7e2db!important;
    border-radius:12px!important;
    background:#fff!important;
    color:#168844!important;
    box-shadow:0 4px 14px rgba(16,47,80,.10)!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle:hover,
  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle:active{
    background:#f3faf5!important;
    border-color:#b8d5c1!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle:focus-visible{
    outline:3px solid rgba(22,136,68,.28)!important;
    outline-offset:2px!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggleBar{
    display:block!important;
    visibility:visible!important;
    opacity:1;
    width:23px!important;
    height:2px!important;
    min-height:2px!important;
    border:0!important;
    border-radius:999px!important;
    background:#168844!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(1){
    transform:translateY(7px) rotate(45deg)!important;
  }
  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(2){
    opacity:0!important;
  }
  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(3){
    transform:translateY(-7px) rotate(-45deg)!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .wrap.nav #site-primary-nav{
    display:none!important;
    visibility:hidden!important;
    position:absolute!important;
    z-index:90!important;
    top:100%!important;
    left:0!important;
    right:0!important;
    width:100%!important;
    height:auto!important;
    margin:0!important;
    padding:8px!important;
    overflow:visible!important;
    flex-direction:column!important;
    flex-wrap:nowrap!important;
    align-items:stretch!important;
    gap:2px!important;
    border:1px solid #dfe7e2!important;
    border-top:1px solid #e7ede9!important;
    border-radius:0 0 14px 14px!important;
    background:#fff!important;
    color:#17335c!important;
    box-shadow:0 16px 34px rgba(16,47,80,.17)!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .wrap.nav #site-primary-nav.is-open{
    display:flex!important;
    visibility:visible!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .wrap.nav #site-primary-nav a{
    display:block!important;
    width:100%!important;
    margin:0!important;
    padding:11px 13px!important;
    border:0!important;
    border-radius:9px!important;
    background:transparent!important;
    color:#17335c!important;
    font-size:14px!important;
    line-height:1.3!important;
    text-decoration:none!important;
    white-space:normal!important;
  }

  html body.siteBody.mobileNavEnhanced header.top .wrap.nav #site-primary-nav a:hover,
  html body.siteBody.mobileNavEnhanced header.top .wrap.nav #site-primary-nav a:focus-visible{
    background:#f2f7f3!important;
    color:#168844!important;
  }
}

@media(max-width:560px){
  html body.siteBody.mobileNavEnhanced header.top .mobileNavToggle{
    top:12px!important;
    right:0!important;
    width:44px!important;
    height:44px!important;
    min-width:44px!important;
    min-height:44px!important;
  }
}
/* BR MOBILE HAMBURGER V1-R2 — UNMISSABLE MOBILE CONTROL
   Cache-busted v=2. Critical control is deliberately detached from any
   historical header geometry so no inherited/pseudo layout can cover it. */
@media(max-width:900px){
  html body.siteBody.mobileNavEnhanced .mobileNavToggle{
    display:flex!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
    position:fixed!important;
    z-index:2147483646!important;
    top:14px!important;
    right:14px!important;
    left:auto!important;
    bottom:auto!important;
    transform:none!important;
    width:50px!important;
    height:50px!important;
    min-width:50px!important;
    min-height:50px!important;
    max-width:50px!important;
    max-height:50px!important;
    margin:0!important;
    padding:0!important;
    overflow:visible!important;
    align-items:center!important;
    justify-content:center!important;
    flex-direction:column!important;
    gap:5px!important;
    border:2px solid #fff!important;
    border-radius:14px!important;
    background:#168844!important;
    color:#fff!important;
    box-shadow:0 8px 24px rgba(10,46,29,.32)!important;
    font-size:0!important;
  }

  html body.siteBody.mobileNavEnhanced .mobileNavToggle .mobileNavToggleBar{
    display:block!important;
    visibility:visible!important;
    width:24px!important;
    height:3px!important;
    min-height:3px!important;
    max-height:3px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:999px!important;
    background:#fff!important;
    color:#fff!important;
    opacity:1;
  }

  html body.siteBody.mobileNavEnhanced .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(1){
    transform:translateY(8px) rotate(45deg)!important;
  }
  html body.siteBody.mobileNavEnhanced .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(2){
    opacity:0!important;
  }
  html body.siteBody.mobileNavEnhanced .mobileNavToggle[aria-expanded="true"] .mobileNavToggleBar:nth-child(3){
    transform:translateY(-8px) rotate(-45deg)!important;
  }

  html body.siteBody.mobileNavEnhanced .wrap.nav #site-primary-nav{
    display:none!important;
    visibility:hidden!important;
    position:fixed!important;
    z-index:2147483645!important;
    top:76px!important;
    left:12px!important;
    right:12px!important;
    bottom:auto!important;
    width:auto!important;
    max-height:calc(100vh - 92px)!important;
    margin:0!important;
    padding:8px!important;
    overflow:auto!important;
    flex-direction:column!important;
    flex-wrap:nowrap!important;
    align-items:stretch!important;
    gap:2px!important;
    border:1px solid #dbe5df!important;
    border-radius:14px!important;
    background:#fff!important;
    color:#17335c!important;
    box-shadow:0 18px 48px rgba(16,47,80,.26)!important;
  }

  html body.siteBody.mobileNavEnhanced .wrap.nav #site-primary-nav.is-open{
    display:flex!important;
    visibility:visible!important;
  }

  html body.siteBody.mobileNavEnhanced .wrap.nav #site-primary-nav a{
    display:block!important;
    width:100%!important;
    padding:12px 14px!important;
    margin:0!important;
    border:0!important;
    border-radius:9px!important;
    background:transparent!important;
    color:#17335c!important;
    font-size:15px!important;
    font-weight:700!important;
    line-height:1.3!important;
    text-decoration:none!important;
    white-space:normal!important;
  }

  html body.siteBody.mobileNavEnhanced .wrap.nav #site-primary-nav a:hover,
  html body.siteBody.mobileNavEnhanced .wrap.nav #site-primary-nav a:focus-visible{
    background:#f0f7f2!important;
    color:#168844!important;
    outline:none!important;
  }
}