/* Mobile drawer disclosure; desktop navigation is intentionally unchanged. */
@media (max-width:1024px) {
  body.site-standard #mobileDrawer .mobile-services-group { min-width:0; }
  body.site-standard #mobileDrawer .mobile-services-toggle {
    display:grid;
    grid-template-columns:22px minmax(0,1fr) 14px;
    align-items:center;
    width:100%;
    min-height:54px;
    margin:0;
    padding:12px 16px;
    gap:12px;
    border:1px solid rgba(255,255,255,.055);
    border-radius:14px;
    background:rgba(255,255,255,.025);
    color:#d7d1c8;
    font-family:var(--site-body-font,"Jost",sans-serif);
    font-size:15px;
    font-weight:500;
    line-height:1.3;
    letter-spacing:.01em;
    text-align:left;
    cursor:pointer;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
    transition:background-color 180ms ease,border-color 180ms ease;
  }
  body.site-standard #mobileDrawer .mobile-services-toggle > i:first-child { color:#c9a84c; font-size:16px; text-align:center; }
  body.site-standard #mobileDrawer .mobile-services-caret { color:#bdb6ab; font-size:11px; transition:transform 180ms ease; }
  body.site-standard #mobileDrawer .mobile-services-toggle[aria-expanded="true"],
  body.site-standard #mobileDrawer .mobile-services-group.has-current-service .mobile-services-toggle {
    color:#faf8f3;
    background:rgba(201,168,76,.1);
    border-color:rgba(201,168,76,.32);
  }
  body.site-standard #mobileDrawer .mobile-services-toggle[aria-expanded="true"] .mobile-services-caret { transform:rotate(180deg); }
  body.site-standard #mobileDrawer .mobile-services-submenu[hidden] { display:none !important; }
  body.site-standard #mobileDrawer .mobile-services-submenu:not([hidden]) {
    display:grid;
    margin:8px 0 4px 10px;
    padding-left:10px;
    gap:6px;
    border-left:1px solid rgba(201,168,76,.35);
    animation:mobile-services-reveal 180ms ease-out;
  }
  body.site-standard #mobileDrawer .mobile-services-submenu a {
    grid-template-columns:18px minmax(0,1fr);
    min-height:48px;
    padding:10px 12px;
    gap:10px;
    border-radius:10px;
    font-size:14px;
    line-height:1.4;
    letter-spacing:0;
    overflow-wrap:break-word;
  }
  body.site-standard #mobileDrawer .mobile-services-submenu a[aria-current="page"] { color:#faf8f3; background:rgba(201,168,76,.14); border-color:rgba(201,168,76,.36); }
  body.site-standard #mobileDrawer .mobile-services-toggle:active { background:rgba(201,168,76,.18); }
  body.site-standard #mobileDrawer .mobile-services-toggle:focus-visible { outline:2px solid #e8c97a; outline-offset:3px; }
}
@keyframes mobile-services-reveal { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }
@media (max-width:1024px) and (prefers-reduced-motion:reduce) {
  body.site-standard #mobileDrawer .mobile-services-toggle,
  body.site-standard #mobileDrawer .mobile-services-caret { transition:none; }
  body.site-standard #mobileDrawer .mobile-services-submenu:not([hidden]) { animation:none; }
}
