.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  background: #fff;
  border-bottom: 1px solid #dbe3ec;
}

.site-header-inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  box-sizing: border-box;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.site-brand { display: inline-flex; }
.site-brand img { display: block; width: 230px; height: 58px; object-fit: contain; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: 0.35rem; }
.site-nav a, .site-nav summary { font: inherit; font-size: 0.95rem; font-weight: 700; color: #1f2937; text-decoration: none; }
.site-nav > a, .nav-dropdown > summary { padding: 1rem 0.9rem; border-radius: 4px; }
.nav-dropdown { position: relative; }
.nav-dropdown > summary { display: flex; align-items: center; gap: 0.45rem; list-style: none; cursor: pointer; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::marker { content: ''; }
.nav-chevron { width: 16px; height: 16px; flex: none; transition: transform 150ms ease; }
.nav-dropdown[open] .nav-chevron { transform: rotate(180deg); }
.site-nav > a:hover, .nav-dropdown > summary:hover, .nav-dropdown[open] > summary { color: #1d4ed8; background: #eff6ff; }
.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 310px;
  max-height: min(70vh, 32rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #dbe3ec;
  border-top: 3px solid #14b8a6;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 24px #1f293718;
}
.nav-panel a { display: block; padding: 0.8rem 0.75rem; border-radius: 3px; line-height: 1.4; }
.nav-panel a:hover, .nav-panel a:focus-visible { background: #eff6ff; color: #1d4ed8; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { color: #1d4ed8; font-weight: 800; font-size: 0.95rem; white-space: nowrap; text-decoration: none; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0.7rem 1rem; border-radius: 6px; background: #2563eb; color: #fff; font-size: 0.95rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.header-cta:hover { background: #1d4ed8; }
.site-header :focus-visible { outline: 3px solid #0f766e; outline-offset: 3px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; color: #1f2937; background: #fff; border: 1px solid #dbe3ec; border-radius: 6px; cursor: pointer; }
.menu-toggle svg { display: block; width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.area-directory { padding: 3rem 0; background: #fff; border-bottom: 1px solid #dbe3ec; scroll-margin-top: 100px; }
.area-directory h2 { font-size: 2rem; line-height: 1.2; letter-spacing: 0; margin-bottom: 1.5rem; }
.area-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: 2rem;
  row-gap: 0;
  align-items: stretch;
  width: 100%;
}
.area-directory-grid > a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.85rem 0;
  min-height: calc(1.2em + 1.7rem);
  box-sizing: border-box;
  color: #1d4ed8;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
}
.area-directory-grid > a:hover { color: #0f766e; text-decoration: underline; text-underline-offset: 4px; }
.area-directory-note {
  margin: 1.25rem 0 0;
  text-align: center;
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 500;
}
#faq { scroll-margin-top: 110px; }
.location-page h1 { font-size: 3.5rem; letter-spacing: 0; max-width: 22ch; }
.location-page h2 { font-size: 2rem; letter-spacing: 0; }
.location-page .hero-sub { font-size: 1.15rem; }
.location-page .hero .hero-buttons { display: flex; }
.location-page .hero .btn { white-space: normal; text-align: center; }

@media (max-width: 1040px) and (min-width: 961px) {
  .site-brand img { width: 190px; }
  .site-header-inner { gap: 0.75rem; }
  .header-actions { gap: 0.5rem; }
}

@media (max-width: 960px) {
  .site-header-inner { grid-template-columns: 1fr auto; gap: 0.5rem 1rem; padding: 0.6rem 0; }
  .site-brand img { width: 175px; height: 42px; }
  .site-header[data-enhanced] .menu-toggle { display: block; }
  .header-actions { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; }
  .header-phone, .header-cta { font-size: 0.9rem; }
  .header-cta { min-height: 40px; padding: 0.6rem 0.85rem; }
  .site-nav { grid-column: 1 / -1; grid-row: 3; display: block; max-height: calc(100dvh - 135px); overflow-y: auto; overscroll-behavior: contain; border-top: 1px solid #dbe3ec; padding-top: 0.5rem; }
  .site-header[data-enhanced]:not([data-menu-open]) .site-nav { display: none; }
  .site-nav > a { display: block; }
  .nav-dropdown > summary { justify-content: space-between; }
  .nav-panel { position: static; width: auto; max-height: min(50dvh, 24rem); overflow-y: auto; overscroll-behavior: contain; margin: 0 0.5rem 0.5rem; box-shadow: none; border: 0; border-left: 2px solid #14b8a6; border-radius: 0; padding: 0 0 0 0.6rem; }
  .area-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    column-gap: 1.5rem;
    row-gap: 0;
  }
  .area-directory { scroll-margin-top: 140px; }
  #faq { scroll-margin-top: 140px; }
}

@media (max-width: 768px) {
  .site-header-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .area-directory { padding: 2rem 0; }
  .area-directory h2 { font-size: 1.65rem; }
  .area-directory-grid > a { font-size: 0.95rem; padding: 0.85rem 0; line-height: 1.2; }
  .area-directory-note { font-size: 0.9rem; margin-top: 1.25rem; }
  .location-page h1 { font-size: 2.2rem; }
  .location-page h2 { font-size: 1.65rem; }
  .location-page .hero .hero-buttons { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-chevron { transition: none; }
}
