.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--cream);
  padding-block: var(--space-2);
}
body.has-hero .site-header {
  background: transparent;
}
.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 72px;
}
@media (min-width: 1024px) {
  .site-header__inner { min-height: 96px; }
}
.site-header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.site-header__logo-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .site-header__logo-img { height: 96px; width: 96px; }
}
body.has-hero .site-header .site-header__logo-img {
  filter: drop-shadow(0 1px 6px rgba(26, 23, 20, 0.55));
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
  margin-inline-start: auto;
}

.site-header__social {
  display: flex;
  align-items: center;
  color: var(--ink);
  transition: color var(--duration-base) var(--ease);
}
.site-header__social:hover { color: var(--gold); }
body.has-hero .site-header .site-header__social { color: var(--cream); }
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform var(--duration-fast) var(--ease);
}
.nav-toggle__bar::before { content: ""; position: absolute; top: -8px; width: 24px; height: 2px; background: var(--ink); }
.nav-toggle__bar::after { content: ""; position: absolute; top: 8px; width: 24px; height: 2px; background: var(--ink); }

.primary-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease);
}
.primary-nav.is-open { transform: translateX(0); }
.primary-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: 0;
}
.primary-nav__list a {
  text-decoration: none;
  font-size: var(--fs-lead);
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--cream);
}
.primary-nav__contact a { color: var(--gold-pale); text-decoration: none; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    background: none;
    color: var(--ink);
    flex-direction: row;
    justify-content: flex-start;
    transform: none;
  }
  .primary-nav__list { flex-direction: row; gap: var(--space-3); }
  .primary-nav__list a { color: var(--ink); font-size: var(--fs-small); min-height: auto; }
  .primary-nav__list a.btn {
    background: none;
    border-color: transparent;
    padding-inline: 0;
    min-height: auto;
    font-weight: 400;
  }
  .primary-nav__contact { display: none; }
}

body.has-hero .site-header .primary-nav__list a {
  color: var(--cream);
}
body.has-hero .site-header .nav-toggle__bar,
body.has-hero .site-header .nav-toggle__bar::before,
body.has-hero .site-header .nav-toggle__bar::after {
  background: var(--cream);
}

main { padding-top: var(--header-h); }

.site-footer {
  background: var(--blush);
  color: var(--ink);
  padding-block: var(--space-6) var(--space-4);
  margin-top: var(--space-7);
}
.site-footer__grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-5);
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(4, 1fr); }
}
.site-footer__logo { height: 64px; width: 64px; object-fit: contain; margin-bottom: var(--space-2); }
.site-footer__heading { font-size: var(--fs-h3); font-family: var(--font-display); font-weight: 600; color: var(--ink); margin-bottom: var(--space-2); }
.site-footer__links, .site-footer__hours { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer__links a { color: var(--ink); text-decoration: none; }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__hours li { color: var(--ink); }
.site-footer__copyright { font-size: var(--fs-small); color: var(--charcoal-60); border-top: 1px solid rgba(26, 23, 20, 0.15); padding-top: var(--space-3); }
.site-footer__copyright a { color: var(--charcoal-60); }
