.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-header-yellow);
  color: var(--color-ink);
  font-size: .92rem;
}

.top-bar__inner {
  min-height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.5rem, 8vw, 5.5rem);
  padding: .25rem 0;
  text-align: left;
}

.top-bar__contact {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
  color: var(--color-ink);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.top-bar a {
  color: var(--color-ink);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-color: var(--color-ink);
}

.top-bar__icon {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: var(--color-ink);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-bar__hours {
  flex: 0 1 auto;
  margin-right: auto;
}

.top-bar__hours-full {
  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: 240px;
  max-width: 70vw;
}

.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);
  text-decoration-line: underline;
  text-decoration-color: var(--color-header-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: .38em;
}

.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-header-yellow);
  display: none;
}

.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(33, 24, 15, .32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .22);
  padding: 8px;
}

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

.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: var(--color-header-yellow);
  color: var(--color-ink);
  padding: 2.25rem 0 1.1rem;
}

.site-footer a {
  color: var(--color-ink);
}

.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 100px;
  width: 100px;
}

.footer-brand-block p {
  margin: .85rem 0 0;
  max-width: 480px;
  color: rgba(33, 24, 15, .82);
  font-size: .96rem;
  line-height: 1.45;
}

.footer-call {
  display: grid;
  justify-items: center;
  gap: .2rem;
  color: var(--color-ink);
}

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

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

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

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

.footer-links a {
  text-decoration-line: underline;
  text-decoration-color: var(--color-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}

.footer-credential {
  margin: 0;
  color: rgba(33, 24, 15, .72);
  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(33, 24, 15, .22);
  color: rgba(33, 24, 15, .72);
  font-size: .92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  font-weight: 700;
}

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

  .top-bar {
    position: static;
  }

  .top-bar__inner {
    min-height: 38px;
    flex-direction: row;
    gap: 1.35rem;
    padding: 0;
  }

  .top-bar__contact {
    font-size: .9rem;
  }

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

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

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

  .brand {
    display: inline-flex;
  }

  .brand img {
    width: 304px;
    max-width: 38vw;
  }

  .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;
  }

  .site-nav a.is-active,
  .site-nav a[aria-current="page"] {
    text-decoration: none;
  }

  .site-nav a.is-active::after,
  .site-nav a[aria-current="page"]::after {
    display: block;
  }

  .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: 290px;
  }

  .brand img {
    width: 336px;
    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);
  }
}
