/* drauermd.com - rebuilt stylesheet.
 *
 * Replaces FlexSite's publicstyle.css + responsive.css + mbcsmbmcp.css +
 * layerslider.css + Window.Metro.css + feature.presenter + instalink.
 * Colours, type scale and spacing come from the CMS's own values; the layout
 * is new, because the old one was a fixed 1200px nested <table>.
 *
 * Mobile-first: everything below the first @media block is the phone layout.
 */

/* ------------------------------------------------------------- fonts ---- */
/* One family at four real weights, subset to Latin (fp_fonts.py). The CMS
 * declared five separate FAMILIES and had no 700 at all, so every <strong>
 * was faux-bolded Light. */
@font-face {
  font-family: Montserrat; font-style: normal; font-weight: 300;
  font-display: swap; src: url(/fonts/montserrat-300.woff) format("woff");
}
@font-face {
  font-family: Montserrat; font-style: normal; font-weight: 400;
  font-display: swap; src: url(/fonts/montserrat-400.woff) format("woff");
}
@font-face {
  font-family: Montserrat; font-style: normal; font-weight: 600;
  font-display: swap; src: url(/fonts/montserrat-600.woff) format("woff");
}
@font-face {
  font-family: Montserrat; font-style: normal; font-weight: 900;
  font-display: swap; src: url(/fonts/montserrat-900.woff) format("woff");
}

/* -------------------------------------------------------------- tokens -- */
:root {
  --navy:   #002b51;   /* CMS header bar, h1 */
  --navy-d: #001b33;   /* the strip above it */
  --blue:   #005baa;   /* CMS h2, address band, "MEET DR. AUER" chip */
  --blue-d: #004a8c;
  --grey:   #6b6a69;   /* CMS footer */
  --ink:    #1a1a1a;
  --muted:  #555;
  --rule:   #cdcdcd;   /* CMS <hr> */
  --tint:   #f4f7fa;
  --page:   #fff;

  --wrap: 1200px;
  --gut: 16px;
  --bar: 72px;        /* sticky bar height; the JS mirrors this */
  --radius: 4px;
  --sans: Montserrat, "Segoe UI", system-ui, -apple-system, "Helvetica Neue",
          Arial, sans-serif;
  --shadow: 0 2px 14px rgba(0, 43, 81, .13);
}

/* --------------------------------------------------------------- base --- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font: 300 17px/1.65 var(--sans);
  overflow-wrap: break-word;
}

img, picture, svg, iframe { max-width: 100%; }
img { height: auto; border: 0; }

h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 400; letter-spacing: -.01em; }
h2 { font-size: clamp(23px, 3.4vw, 34px); font-weight: 900; color: var(--blue); }
h3 { font-size: clamp(19px, 2.4vw, 24px); font-weight: 600; }
h4 { font-size: 19px; font-weight: 600; }
p  { margin: 0 0 1.1em; }
p:last-child, ul:last-child { margin-bottom: 0; }

a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
a:hover, a:focus-visible { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}
/* on the navy bar the blue focus ring has nothing to sit against */
.daBar :focus-visible, .daTop :focus-visible { outline-color: #ffd24d; }

hr { height: 1px; border: 0; background: var(--rule); margin: 2rem 0; }

.daWrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.daSkip {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: 12px 18px;
  text-decoration: none; font-weight: 600;
}
.daSkip:focus { left: 0; color: #fff; }

.daSr {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* ------------------------------------------------------------ buttons --- */
.daBtn {
  display: inline-block;
  padding: 11px 22px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: #fff;
  font-weight: 600; font-size: 16px; line-height: 1.2;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.daBtn:hover, .daBtn:focus-visible {
  background: #fff; color: var(--navy); border-color: var(--navy);
}
/* the CMS's .smallBlueButton, kept: navy outline that fills on hover */
.daBtnGhost {
  display: inline-block;
  padding: 8px 18px;
  border: 3px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600; font-size: 16px; line-height: 1.2;
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}
.daBtnGhost:hover, .daBtnGhost:focus-visible { background: var(--navy); color: #fff; }

/* ---------------------------------------------------------- top strip --- */
/* The masthead is DARK because the logo is white artwork on transparency:
 * the CMS floated it over the hero photo on a transparent .converter bar and
 * turned that bar #002b51 on scroll (.fixed-pos). A white bar would have made
 * the brand mark invisible. Two tiers of the same navy, the strip a shade
 * deeper so the bar reads as the primary one. */
.daTop { background: var(--navy-d); color: #fff; }
.daTopIn {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 36px;
  font-size: 15px;
}
.daTop a { color: #fff; text-decoration: none; }
.daTop a:hover, .daTop a:focus-visible { color: #fff; text-decoration: underline; }
.daTopTel { font-weight: 600; }

/* ------------------------------------------------------- sticky navbar -- */
.daBar {
  position: sticky; top: 0; z-index: 1200;
  background: var(--navy);
  color: #fff;
}
.daBar.is-stuck { box-shadow: 0 3px 16px rgba(0, 20, 38, .35); }
.daBarIn {
  display: flex; align-items: center; gap: 16px;
  min-height: var(--bar);
}
.daLogo { display: block; flex: 0 0 auto; line-height: 0; }
/* fluid, because at 320px a fixed 182px logo plus the two 46px controls and
 * the gutters came to 338px and pushed the burger off the screen */
.daLogo img { width: clamp(134px, 42vw, 186px); height: auto; }

.daBarTools { margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* icon-only tel button: on a phone the number must not be the thing that
 * gets hidden to make room (sspallets lesson) */
.daIconTel {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 2px solid rgba(255, 255, 255, .7); border-radius: var(--radius);
  color: #fff; text-decoration: none;
}
.daIconTel:hover, .daIconTel:focus-visible {
  background: #fff; color: var(--navy); border-color: #fff;
}
.daIconTel svg { width: 21px; height: 21px; fill: currentColor; }

.daBurger {
  display: inline-flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 46px; height: 46px; padding: 0;
  background: none; border: 2px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius); cursor: pointer;
}
.daBurger span[aria-hidden] {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
.daBurger[aria-expanded="true"] span[aria-hidden]:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.daBurger[aria-expanded="true"] span[aria-hidden]:nth-of-type(3) { opacity: 0; }
.daBurger[aria-expanded="true"] span[aria-hidden]:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------- nav: drawer (phone) -- */
.daNav {
  position: fixed; top: 0; right: 0; z-index: 1400;
  width: min(360px, 88vw); height: 100dvh;
  background: #fff;
  box-shadow: -6px 0 28px rgba(0, 0, 0, .25);
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px var(--gut) 40px;
  visibility: hidden;
}
html.daNavOpen .daNav { transform: translateX(0); visibility: visible; }
.daNavHead { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.daNavClose {
  width: 44px; height: 44px; padding: 0; line-height: 1;
  background: none; border: 0; cursor: pointer; color: var(--navy);
  font-size: 30px;
}

.daMenu { list-style: none; margin: 0; padding: 0; }
.daMenu > li { border-bottom: 1px solid #e6ecf2; }
.daMenu > li > a,
.daSubBtn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; gap: 10px;
  padding: 14px 2px;
  font: 400 17px/1.3 var(--sans);
  color: var(--navy); text-decoration: none;
  background: none; border: 0; text-align: left; cursor: pointer;
}
.daMenu > li > a[aria-current="page"],
.daHasSub--here > .daSubBtn { font-weight: 600; }
.daMenu > li > a:hover, .daSubBtn:hover,
.daMenu > li > a:focus-visible, .daSubBtn:focus-visible { color: var(--blue); }

.daChev { width: 13px; height: 13px; flex: 0 0 auto; fill: currentColor;
          transition: transform .2s ease; }
.daSubBtn[aria-expanded="true"] .daChev { transform: rotate(180deg); }

.daSub { list-style: none; margin: 0 0 10px; padding: 0 0 0 14px; display: none; }
.daHasSub.is-open > .daSub,
.daHasSub:focus-within > .daSub { display: block; }
.daSub a {
  display: block; padding: 10px 2px;
  font-size: 16px; color: var(--muted); text-decoration: none;
}
.daSub a:hover, .daSub a:focus-visible { color: var(--blue); }
.daSub a[aria-current="page"] { color: var(--navy); font-weight: 600; }

.daNavCta { border-bottom: 0 !important; padding: 18px 0 6px; }
.daNavCta .daBtn { display: block; text-align: center; }
.daNavExtra { margin-top: 14px; font-size: 16px; }
.daNavExtra a { display: block; padding: 8px 2px; color: var(--navy); }

.daScrim {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(0, 22, 41, .5);
  opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
html.daNavOpen .daScrim { opacity: 1; visibility: visible; }
html.daNavOpen { overflow: hidden; }
/* .daBar is position:sticky WITH a z-index, so it opens a stacking context and
 * the drawer's z-index:1400 is resolved INSIDE it, at 1200 - under a backdrop
 * that is a child of <body> at 1300. Every tap on a menu item then hits the
 * backdrop and closes the panel, which reads as "the menu closes when I click
 * anything", and element.click() from the console passes happily because it
 * bypasses hit-testing. Lift the whole bar over the backdrop while the panel
 * is open (macathletix lesson; verified with document.elementFromPoint). */
html.daNavOpen .daBar { z-index: 1350; }

/* --------------------------------------------------------------- hero --- */
.daHero { position: relative; background: var(--navy); }
.daHero img { display: block; width: 100%; }

/* interior banner: a plain 4.8:1 photographic strip. NOT cropped - one of
 * these (the Education banner) carries the word HEALTHY across its middle,
 * and `cover` at a narrow width slices it off. */
.daBanner img { max-height: 400px; object-fit: cover; object-position: center; }

/* home banner: a photograph with copy over it, so it may be cropped */
.daHeroHome { display: grid; }
.daHeroHome > * { grid-area: 1 / 1; }
.daHeroHome img {
  width: 100%; height: 100%;
  min-height: 400px; max-height: 640px;
  object-fit: cover; object-position: 50% 35%;
}
.daHeroCopy {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  padding: 48px var(--gut);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 27, 51, .34), rgba(0, 27, 51, .58));
}
.daHeroCopy h1 {
  color: #fff; font-weight: 600; max-width: 22ch;
  text-shadow: 0 2px 18px rgba(0, 18, 35, .55);
  margin-bottom: .6em;
}
.daHeroCopy p {
  max-width: 62ch; margin: 0; font-size: clamp(15px, 1.7vw, 18px);
  text-shadow: 0 1px 12px rgba(0, 18, 35, .6);
}

/* --------------------------------------------------------------- main --- */
main { display: block; }
.daSection { padding: 46px 0; }
.daSection--tint { background: var(--tint); }

.daProse { max-width: 78ch; }
.daProse h2 { margin-top: 1.6em; }
.daProse h2:first-child { margin-top: 0; }
.daProse ul { margin: 0 0 1.1em; padding-left: 1.25em; }
.daProse li { margin-bottom: .35em; }
.daProse img { border-radius: var(--radius); }

/* the CMS floated the two portraits right at 236px */
.daFloat { max-width: 236px; border-radius: var(--radius); }
.daFloat--right { float: right; margin: 4px 0 16px 22px; }
.daFloat--left  { float: left;  margin: 4px 22px 16px 0; }

/* ------------------------------------------------------- home: lede + --- */
.daLede {
  max-width: 26ch; margin: 0 auto 2.4rem;
  text-align: center;
  font-size: clamp(24px, 3.6vw, 36px); font-weight: 600; line-height: 1.22;
  color: var(--navy);
}

.daTiles {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.daTile { display: flex; flex-direction: column; min-width: 0; }
.daTile img {
  width: 100%; aspect-ratio: 334 / 251; object-fit: cover;
  border-radius: var(--radius);
}
.daTile h2 {
  font-size: clamp(21px, 2.4vw, 26px); font-weight: 600;
  color: var(--navy); margin: 16px 0 8px;
}
.daTile p { flex: 1 1 auto; margin-bottom: 16px; }
.daTile .daBtnGhost { align-self: flex-start; }

/* --------------------------------------------------------- doctor band -- */
.daBio {
  background: var(--navy) image-set(url(/graphics/subfooter1-1440w.webp) type("image/webp"),
                                    url(/graphics/subfooter1.jpg) type("image/jpeg"))
              center / cover no-repeat;
  color: #fff;
  position: relative;
}
.daBio::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 27, 51, .78);
}
.daBio .daWrap { position: relative; }
.daBioIn { display: grid; gap: 28px; align-items: start; padding: 46px 0; }
.daBio img { width: 236px; height: auto; border-radius: 50%; }
.daBio p { margin-bottom: 1.05em; }
.daBio p:last-child { margin-bottom: 0; }
.daBio a { color: #cfe0ee; }
.daChip {
  display: inline-block; margin-bottom: 18px;
  background: var(--blue); color: #fff;
  padding: 6px 14px;
  font-weight: 600; font-size: 16px; letter-spacing: .04em;
}

/* ------------------------------------------------------ insurance band -- */
.daIns { padding: 40px 0; border-top: 1px solid var(--rule); }
.daIns h2 {
  text-align: center; color: var(--navy);
  font-size: clamp(17px, 2vw, 20px); font-weight: 600; letter-spacing: .07em;
  margin-bottom: 26px;
}
.daInsList {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 22px 40px;
}
.daInsList li {
  height: 46px; display: flex; align-items: center;
}
.daInsList img { display: block; max-height: 46px; width: auto; }

/* ------------------------------------------------------- address band --- */
.daAddr { background: var(--blue); color: #fff; }
.daAddrIn {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 26px 56px;
  padding: 34px 0;
  text-align: center;
}
.daAddr img { width: 262px; height: auto; }
.daAddr address { font-style: normal; line-height: 1.7; }
.daAddr a { color: #fff; text-decoration: none; font-weight: 600; }
.daAddr a:hover, .daAddr a:focus-visible { color: #fff; text-decoration: underline; }

/* ------------------------------------------------------------- footer --- */
.daFoot { background: var(--grey); color: #fff; padding: 26px 0 30px; }
.daFootIn { text-align: center; font-size: 16px; }
.daFoot p { margin: 0 0 12px; }
.daFootLinks {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px;
}
.daFoot a { color: #fff; text-decoration: none; }
.daFoot a:hover, .daFoot a:focus-visible { color: #fff; text-decoration: underline; }

/* ---------------------------------------------------------- locations --- */
.daLoc + .daLoc { margin-top: 44px; }
.daLocList {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.daLocList li {
  background: var(--tint); border-left: 4px solid var(--blue);
  padding: 16px 18px; border-radius: 0 var(--radius) var(--radius) 0;
}
.daLocList b { display: block; color: var(--navy); font-weight: 600; }
.daLocList address { font-style: normal; }
.daMapBox { min-height: 300px; overflow: hidden; }

/* --------------------------------------------------------- blog + post -- */
.daPostList { list-style: none; margin: 0; padding: 0; }
.daPostList li { padding: 24px 0; border-bottom: 1px solid #e3e9ef; }
.daPostList li:first-child { padding-top: 0; }
.daPostList h2 { font-size: clamp(21px, 2.6vw, 27px); font-weight: 600;
                 color: var(--navy); margin-bottom: 4px; }
.daPostList h2 a { color: inherit; text-decoration: none; }
.daPostList h2 a:hover, .daPostList h2 a:focus-visible { text-decoration: underline; }
.daDate { display: block; color: var(--muted); font-size: 15px; font-style: italic;
          margin-bottom: 10px; }

.daPostLayout { display: grid; gap: 40px; align-items: start; }

.daPostNav {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid #e3e9ef;
}
.daPostNav a { font-weight: 600; text-decoration: none; }
.daPostNav a:hover, .daPostNav a:focus-visible { text-decoration: underline; }

.daAside { min-width: 0; }
.daAside h2 { font-size: 19px; font-weight: 600; color: var(--navy);
              margin-bottom: 12px; }
.daAsideBox { background: var(--tint); padding: 20px 22px; border-radius: var(--radius); }
.daAside ul { list-style: none; margin: 0; padding: 0; }
.daAside li + li { margin-top: 12px; padding-top: 12px; border-top: 1px solid #dde5ee; }
.daAside a { text-decoration: none; font-size: 16px; line-height: 1.4; display: block; }
.daAside a:hover, .daAside a:focus-visible { text-decoration: underline; }
.daAside a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.daAside .daDate { margin: 2px 0 0; font-size: 14px; font-style: normal; }

.daShare { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.daShare a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border: 1px solid #cbd6e2; border-radius: var(--radius);
  font-size: 15px; text-decoration: none; color: var(--navy);
}
.daShare a:hover, .daShare a:focus-visible { border-color: var(--blue); color: var(--blue); }
.daShare svg { width: 16px; height: 16px; fill: currentColor; }

/* --------------------------------------------------------- contact page - */
.daContact { display: grid; gap: 36px; align-items: start; }
.daMapFrame {
  width: 100%; aspect-ratio: 4 / 3; border: 0;
  border-radius: var(--radius); background: var(--tint);
}
.daCard { background: var(--tint); border-radius: var(--radius); padding: 22px 24px; }
.daCard h2 { font-size: 20px; font-weight: 600; color: var(--navy); }
.daCard address { font-style: normal; line-height: 1.8; }

/* ---------------------------------------------------------------- form -- */
.daForm { max-width: 620px; }
.daField { margin-bottom: 18px; }
.daField > label,
.daFieldset > legend {
  display: block; margin-bottom: 6px;
  font-weight: 600; font-size: 16px; color: var(--navy);
}
.daReq { color: #a3131f; }
.daForm input[type="text"],
.daForm input[type="email"],
.daForm input[type="tel"],
.daForm textarea {
  width: 100%; padding: 11px 13px;
  font: 300 17px/1.4 var(--sans); color: var(--ink);
  background: #fff; border: 1px solid #b7c3cf; border-radius: var(--radius);
}
.daForm textarea { min-height: 160px; resize: vertical; }
.daForm input:focus, .daForm textarea:focus { border-color: var(--blue); }
.daFieldset { border: 0; margin: 0 0 18px; padding: 0; }
.daChecks { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.daChecks label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 300;
}
.daChecks input { width: 18px; height: 18px; accent-color: var(--blue); }
.daHp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.daNote { color: var(--muted); font-size: 15px; }
.daMsg {
  padding: 14px 16px; border-radius: var(--radius); margin-bottom: 22px;
  border-left: 4px solid;
}
.daMsg--ok  { background: #eaf5ec; border-color: #1e7a37; color: #14532a; }
.daMsg--err { background: #fdecec; border-color: #a3131f; color: #7a0d17; }

/* ----------------------------------------------------------------- 404 -- */
.daLost { text-align: center; padding: 70px 0; }
.daLost ul {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: center;
}

/* ============================ >= 700px ================================== */
@media (min-width: 700px) {
  :root { --gut: 20px; }
  .daBioIn { grid-template-columns: 236px minmax(0, 1fr); gap: 38px; }
  .daPostLayout { grid-template-columns: minmax(0, 1fr) 290px; }
  .daContact { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .daSection { padding: 60px 0; }
  .daAddrIn { text-align: left; justify-content: flex-start; }
}

/* ======================= >= 1100px : real nav bar ======================= */
@media (min-width: 1100px) {
  :root { --bar: 86px; }

  .daBurger, .daNavHead, .daNavExtra, .daIconTel { display: none; }

  .daLogo img { width: 186px; }

  .daNav {
    position: static; width: auto; height: auto;
    transform: none; visibility: visible;
    background: none; box-shadow: none; overflow: visible;
    padding: 0; margin-left: auto;
  }
  .daScrim { display: none; }

  .daMenu { display: flex; align-items: center; gap: 4px; }
  .daMenu > li { border-bottom: 0; position: relative; }
  .daMenu > li > a,
  .daSubBtn {
    padding: 10px 9px;
    font-size: 14px; font-weight: 400; color: #fff;
    white-space: nowrap;
  }
  .daMenu > li > a:hover, .daMenu > li > a:focus-visible,
  .daSubBtn:hover, .daSubBtn:focus-visible { color: #fff; }
  .daMenu > li > a::after,
  .daSubBtn::after {
    content: ""; display: block;
    position: absolute; left: 9px; right: 9px; bottom: 2px; height: 2px;
    background: #fff; transform: scaleX(0); transform-origin: left;
    transition: transform .2s ease;
  }
  .daMenu > li > a:hover::after,
  .daMenu > li > a:focus-visible::after,
  .daSubBtn:hover::after,
  .daSubBtn:focus-visible::after,
  .daMenu > li > a[aria-current="page"]::after,
  .daHasSub--here > .daSubBtn::after { transform: scaleX(1); }

  .daSub {
    display: block;
    position: absolute; top: 100%; left: 0; z-index: 40;
    min-width: 250px; margin: 0; padding: 8px 0;
    background: #fff; border: 1px solid #e3e9ef; border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
  }
  /* :focus-within gives the dropdown a complete keyboard path with JS off -
   * the toggle <button> is focusable while the panel is still hidden. */
  .daHasSub:hover > .daSub,
  .daHasSub:focus-within > .daSub,
  .daHasSub.is-open > .daSub {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
  .daSub a { padding: 9px 18px; font-size: 15px; color: var(--navy); }
  .daSub a:hover, .daSub a:focus-visible { background: var(--tint); color: var(--blue); }

  .daNavCta { padding: 0 0 0 10px; }
  .daNavCta .daBtn {
    display: inline-block; padding: 9px 16px; font-size: 14px;
    background: #fff; color: var(--navy); border-color: #fff;
  }
  .daNavCta .daBtn:hover, .daNavCta .daBtn:focus-visible {
    background: transparent; color: #fff; border-color: #fff;
  }

  .daBarTools { margin-left: 0; }

  .daHeroCopy { padding: 70px var(--gut); }
  .daSection { padding: 72px 0; }
  .daLocList { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ========================= >= 1280px : roomier ========================== */
@media (min-width: 1280px) {
  :root { --bar: 92px; }
  .daLogo img { width: 216px; }
  .daMenu > li > a, .daSubBtn { padding: 10px 13px; font-size: 15px; }
  .daMenu > li > a::after, .daSubBtn::after { left: 13px; right: 13px; }
  .daNavCta { padding-left: 16px; }
  .daNavCta .daBtn { padding: 10px 20px; font-size: 15px; }
}
