/* Shared Destinations disclosure for the APT header. */
.header .destinations-nav{position:relative;padding-block:12px;margin-block:-12px}
.header .destinations-toggle{display:flex;align-items:center;gap:8px;min-height:44px;padding:0;border:0;background:transparent;color:inherit;font:inherit;letter-spacing:inherit;text-align:left}
.header .destinations-toggle svg{width:11px;height:11px;fill:none;stroke:currentColor;stroke-width:1.5;transition:transform .18s ease}
.header .destinations-toggle[aria-expanded="true"] svg{transform:rotate(180deg)}
.header .destinations-toggle:hover{text-decoration:underline;text-underline-offset:7px}
.header .destinations-panel{position:absolute;top:100%;left:-20px;z-index:20;width:max-content;max-width:calc(100vw - 32px);margin:0;padding:6px;list-style:none;background:var(--off-white,#e8e7e2);color:var(--carbon,#1e1e1e);border:1px solid var(--sand,#beb5a2);box-shadow:0 16px 34px #1e1e1e1a}
.header .destinations-panel[hidden]{display:none!important}
.header .destinations-panel li{margin:0;padding:0}
.header .destinations-panel a{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:9px 12px;min-height:38px;font-size:12px;font-weight:500;line-height:1.5;color:var(--moss,#494b30);text-decoration:none}
.header .destinations-panel a:hover,.header .destinations-panel a:focus-visible{background:#d9d4c8;color:var(--vintage-brown,#462d1a)}
.header .destinations-panel a:focus-visible{outline:2px solid var(--moss,#494b30);outline-offset:-2px}
.header .destinations-panel a[aria-current="page"]{font-weight:700;text-decoration:underline;text-underline-offset:5px;text-decoration-color:var(--sand,#beb5a2)}
.header .destinations-panel a>span[aria-hidden]{font-size:14px;font-weight:400}
.header .destinations-panel .destinations-overview{margin-top:6px;padding-top:6px;border-top:1px solid var(--sand,#beb5a2)}
.header .destinations-overview a{font-size:11px;font-weight:400}
@media(max-width:980px){
  .header .destinations-nav{padding:0;margin:0;width:100%}
  .header .destinations-toggle{justify-content:space-between;width:100%;min-height:50px;padding:12px}
  .header .destinations-panel{position:static;width:100%;padding:4px 0 8px 12px;margin:0 0 9px;border:0;border-left:1px solid var(--sand,#beb5a2);box-shadow:none;background:transparent}
  .header .destinations-panel a{font-size:13px;padding:12px}
  .header .destinations-panel .destinations-overview{margin-right:12px}
  .header .destinations-overview a{font-size:12px}
}
@media(prefers-reduced-motion:reduce){.header .destinations-toggle svg{transition:none}}

/* A brief entrance keeps the shared menu responsive. */
.header .destinations-panel:not([hidden]){animation:apt-menu-fade-in 180ms ease-out both}
@keyframes apt-menu-fade-in{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}
@media(prefers-reduced-motion:reduce){.header .destinations-panel:not([hidden]){animation:none}}
