.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--color-line);
  padding-top: 46px;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--color-brand-dark);
  color: #fff;
  font-size: .92rem;
}

.top-bar__inner {
  min-height: 42px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem;
  padding: .25rem 0;
  text-align: left;
}

.top-bar__compact {
  display: none;
  min-width: 0;
  align-items: center;
  gap: .5rem;
}

.top-bar__compact img {
  flex: 0 0 45px;
  width: 45px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.top-bar__compact-call {
  display: grid;
  min-width: 0;
  gap: .02rem;
  justify-items: center;
  line-height: 1.02;
  text-align: center;
}

.top-bar__compact-call > span {
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
}

.top-bar__compact-call .phone-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.05;
  transform: translateY(3px);
  text-decoration: none;
}

.top-bar a {
  color: #fff;
  font-weight: 700;
}

.top-bar__hours {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  flex: 0 0 auto;
  margin-left: .28rem;
  margin-right: auto;
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}

.top-bar__hours-full {
  display: none;
}

.top-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  flex: 0 0 auto;
  min-width: 0;
  justify-content: flex-start;
  font-size: .82rem;
}

.top-bar__icon {
  width: .95em;
  height: .95em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

.top-bar__phone-label {
  display: none;
}

body.has-compact-mobile-header .top-bar__compact {
  display: flex;
  flex: 1 1 auto;
}

body.has-compact-mobile-header .top-bar__phone,
body.has-compact-mobile-header .top-bar__hours {
  display: none;
}

.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 224px;
  max-width: 68vw;
}

.site-nav {
  position: fixed;
  top: 46px;
  left: 0;
  right: 0;
  z-index: 65;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: .7rem 1rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - 46px);
  overflow-y: auto;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  position: relative;
  padding: .9rem;
  color: var(--color-muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-ink);
  background: var(--color-soft);
  border-radius: var(--radius);
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--color-ink);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .38rem;
  height: 3px;
  border-radius: 999px;
  background: var(--color-brand);
}

.nav-toggle {
  display: inline-flex;
  flex: 0 0 40px;
  width: 40px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  padding: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
}

.admin-page .site-nav {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .2rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.admin-page .nav-toggle {
  display: none;
}

.admin-page .brand {
  display: inline-flex;
}

.admin-page .nav-shell {
  min-height: 70px;
}

.section {
  padding: 2.35rem 0;
}

.section--muted {
  background: var(--color-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.split--wide {
  grid-template-columns: 1fr;
}

.site-footer {
  background: #17191d;
  color: #eef1f4;
  padding: 2.25rem 0 1.1rem;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 2rem;
  row-gap: 1.45rem;
  align-items: start;
}

.footer-grid h2 {
  margin-bottom: .8rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-brand-block {
  max-width: 520px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: .95rem;
}

.footer-logo {
  flex: 0 0 58px;
  width: 58px;
}

.footer-brand-block p {
  margin: .85rem 0 0;
  max-width: 480px;
  color: #fff;
  font-size: .96rem;
  line-height: 1.45;
}

.footer-call {
  display: grid;
  justify-items: center;
  gap: .2rem;
  color: #fff;
}

.footer-call > span {
  font-size: 1rem;
  line-height: 1.1;
}

.footer-brand-phone {
  display: inline-flex;
  color: #fff;
  font-size: clamp(1.35rem, 1.8vw, 1.62rem);
  font-weight: 900;
  line-height: 1.05;
  text-decoration-color: var(--color-brand);
  text-decoration-thickness: 2px;
  text-underline-offset: .12em;
}

.footer-links {
  padding-top: 0;
}

.footer-links p {
  margin: 0 0 .7rem;
}

.footer-credential {
  margin: 0;
  color: #c7cdd4;
  font-weight: 600;
  text-align: right;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #c7cdd4;
  font-size: .92rem;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 768px) {
  .site-header {
    position: sticky;
    padding-top: 0;
    backdrop-filter: blur(14px);
  }

  .top-bar {
    position: static;
  }

  .top-bar__compact {
    display: none;
  }

  body.has-compact-mobile-header .top-bar__compact {
    display: none;
  }

  body.has-compact-mobile-header .top-bar__phone {
    display: inline-flex;
  }

  body.has-compact-mobile-header .top-bar__hours {
    display: inline;
  }

  .top-bar__inner {
    min-height: 38px;
    flex-direction: row;
    justify-content: center;
    gap: clamp(.4rem, 1.1vw, .65rem);
    padding: 0;
  }

  .top-bar__hours {
    display: inline-flex;
    margin: 0;
  }

  .top-bar__hours-short {
    display: none;
  }

  .top-bar__hours-full {
    display: inline;
  }

  .top-bar__phone {
    flex: 0 1 auto;
    justify-content: flex-start;
    font-size: inherit;
  }

  .top-bar__phone-label {
    display: inline;
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand {
    display: inline-flex;
  }

  .brand img {
    width: 248px;
    max-width: 34vw;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .2rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav a {
    padding: .72rem .78rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .split {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }

  .split--wide {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  }

  .footer-links {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .nav-shell {
    min-height: 82px;
  }

  .brand {
    min-width: 210px;
  }

  .brand img {
    width: 274px;
    max-width: 52vw;
  }

  .site-nav a {
    padding: .75rem .9rem;
  }

  .section {
    padding: 5.75rem 0;
  }

  .split {
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .split--wide {
    grid-template-columns: 330px minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(430px, 1.2fr) minmax(260px, .9fr) minmax(130px, .45fr);
    column-gap: clamp(2rem, 6vw, 5rem);
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-brand-row {
    gap: clamp(2rem, 4vw, 3.4rem);
  }
}
