/* ==========================================================================
   footer.css — GLOBAL footer chrome. Loaded from base.html on EVERY page,
   alongside nav.css / buttons.css. (Footer is site-wide chrome, not section
   CSS — added beyond the original file list for the same reason nav is global.)
   ========================================================================== */

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(4rem, 12vh, 9rem);
  padding-block: clamp(2.5rem, 7vw, 4.5rem) 2rem;
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, transparent, var(--shadow));
  color: var(--bone-dim);
  font-size: var(--step--1);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: clamp(1.75rem, 5vw, 3rem);
}

/* ---- identity block -------------------------------------------------- */
.site-footer__name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--bone);
  line-height: 1.05;
}
.site-footer__legal {
  margin-top: 0.35rem;
  color: var(--bone-faint);
}
.site-footer__bbb {
  display: inline-flex;
  align-items: center;
  gap: 0.5ch;
  margin-top: 0.9rem;
  color: var(--bone-dim);
}
.site-footer__bbb-badge {
  display: inline-grid;
  place-items: center;
  padding: 0.15em 0.5em;
  font-weight: 700;
  font-size: 0.7em;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--grace);
  border-radius: 4px;
}

/* ---- columns --------------------------------------------------------- */
.site-footer__head {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grace);
  margin-bottom: 0.9rem;
}

.site-footer__nap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
}
.site-footer__nap a {
  color: var(--bone-dim);
  transition: color 200ms ease;
  width: fit-content;
}
.site-footer__nap a:hover {
  color: var(--grace-hi);
}
/* contextual link from the #find block to the full /contact/ page */
.site-footer__more {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--grace);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  transition: color 200ms ease;
}
.site-footer__more:hover {
  color: var(--grace-hi);
}

/* ---- hours ----------------------------------------------------------- */
.site-footer__hours {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.site-footer__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 12rem;
}
.site-footer__hours-row dt {
  color: var(--bone);
  font-weight: 500;
}
.site-footer__hours-row.is-closed {
  color: var(--bone-faint);
}
.site-footer__hours-row.is-closed dt {
  color: var(--bone-faint);
}

/* ---- socials --------------------------------------------------------- */
.site-footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer__socials a {
  display: flex;
  flex-direction: column;
  color: var(--bone);
  transition: color 200ms ease;
}
.site-footer__socials a:hover {
  color: var(--grace-hi);
}
.site-footer__socials a span {
  color: var(--bone-faint);
  font-size: 0.92em;
}

/* ---- base bar -------------------------------------------------------- */
.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 6vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  color: var(--bone-faint);
}
/* support/legal cluster (FAQ + Accessibility) */
.site-footer__util {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
}
.site-footer__util a {
  color: var(--bone-dim);
  transition: color 200ms ease;
}
.site-footer__util a:hover {
  color: var(--grace);
}
/* builder credit link (base bar) — matches the util link treatment, no underline */
.site-footer__credit {
  color: var(--bone-dim);
  transition: color 200ms ease;
}
.site-footer__credit:hover {
  color: var(--grace);
}
/* booking button meets the 44px touch-target guideline */
.site-footer__base .btn {
  min-height: 44px;
}
