/* ATX Home Rescue — Shared layout: header, footer */

/* ---------- Header ---------- */
header.site {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
}
.nav { display: flex; align-items: center; gap: 28px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { height: 46px; width: auto; }
.brand .wordmark { font-family: 'Anton'; font-size: 22px; letter-spacing: .02em; line-height: 1; }
.brand .tag { font-size: 10px; letter-spacing: .22em; color: var(--ink-soft); margin-top: 3px; font-weight: 600; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 14px; color: var(--ink); }
.nav-links a:hover { color: var(--orange); }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--ink); text-decoration: none; }
.nav-phone svg { width: 14px; height: 14px; }

/* Booking page has a simpler back-link style */
.back { font-size: 13px; font-weight: 600; text-decoration: none; color: var(--ink-soft); margin-left: 20px; }
.back:hover { color: var(--orange); }

/* ---------- Footer ---------- */
footer.site { background: #0a1624; color: #a3b1c2; padding: 60px 0 28px; font-size: 14px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-grid h5 { font-family: 'Oswald'; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; color: #fff; margin: 0 0 14px; font-weight: 700; }
.foot-grid a { display: block; color: #a3b1c2; text-decoration: none; padding: 4px 0; }
.foot-grid a:hover { color: var(--orange); }
.foot-brand img { height: 48px; filter: brightness(1.1); }
.foot-brand p { margin: 14px 0; max-width: 340px; line-height: 1.55; }
.foot-contact { line-height: 1.9; }
.foot-contact a { color: #fff; font-weight: 700; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
}

/* ---------- Responsive (header/footer) ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .foot-grid { grid-template-columns: 1fr; }
}
