/* =================================================================
   K-Well — static-site interactivity helpers
   These few rules reproduce the show/hide that React used to do by
   mounting/unmounting nav dropdowns & drawer sub-menus. Load AFTER styles.css.
   ================================================================= */

/* Desktop dropdowns: hidden until their nav item is opened */
.nav__dropdown { display: none; }
.nav__item--open > .nav__dropdown { display: grid; }

/* Mobile drawer accordions: children hidden until the group is opened */
.drawer__panel-children { display: none; }
.drawer__group--open .drawer__panel-children { display: flex; }
