/* BIG BRAND REPORT — LOCKED GLOBAL NAVIGATION */
.site-header, header.bbr-header { position: relative; }

.bbr-primary-nav {
  display:flex !important; align-items:center; gap:clamp(14px,1.6vw,28px); margin-left:auto; order:2;
}
.bbr-primary-nav a {
  display:inline-block; white-space:nowrap; text-decoration:none; font-size:.78rem; font-weight:600; letter-spacing:.045em;
}
.bbr-hamburger-only { display:none !important; }

.bbr-menu-details { position:relative; margin-left:18px; flex:0 0 auto; order:3; }
.bbr-menu-details > summary { list-style:none; }
.bbr-menu-details > summary::-webkit-details-marker { display:none; }
.bbr-menu-toggle {
  display:block !important; width:42px; height:42px; padding:9px; border:0; background:transparent;
  color:inherit; cursor:pointer; box-sizing:border-box;
}
.bbr-menu-toggle span { display:block; width:24px; height:2px; margin:5px auto; background:currentColor; }
.bbr-menu-details[open] .bbr-menu-toggle span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.bbr-menu-details[open] .bbr-menu-toggle span:nth-child(2) { opacity:0; }
.bbr-menu-details[open] .bbr-menu-toggle span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.bbr-menu-panel {
  position:absolute; z-index:10000; top:calc(100% + 4px); right:0; width:min(380px,calc(100vw - 32px));
  max-height:calc(100vh - 110px); overflow-y:auto; box-sizing:border-box; padding:12px 20px 16px; background:#fff; color:#111; border:1px solid rgba(0,0,0,.10);
  box-shadow:0 14px 30px rgba(0,0,0,.14);
}
.bbr-menu-panel a {
  display:block; padding:11px 0; color:inherit; text-decoration:none; font-size:.82rem; font-weight:600;
  letter-spacing:.035em; border-bottom:1px solid rgba(0,0,0,.08); text-align:left; white-space:normal; overflow-wrap:anywhere; line-height:1.35;
}
.bbr-menu-panel a:last-child { border-bottom:0; }
.bbr-mobile-primary { display:none !important; }

@media (max-width:820px) {
  .bbr-primary-nav { display:none !important; }
  .bbr-menu-details { margin-left:auto; position:static; order:3; }
  .bbr-menu-panel {
    top:100%; left:0; right:0; width:100%; max-height:calc(100vh - 80px); overflow-y:auto; box-sizing:border-box; padding:18px clamp(24px,5vw,80px) 24px;
    border-left:0; border-right:0; background:#fff; color:#111;
  }
  .bbr-mobile-primary { display:block !important; }
}

/* Sticky header on every page (previously in header-controls.css). */
.site-header,
body > header { position: sticky; top: 0; z-index: 1000; }
