/* H2 Pure Life — Shared footer */

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(56px, 8vw, 88px) 0 24px;
  font-size: 0.92rem;
}
.footer__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.footer__brand { max-width: 36ch; }
.footer__logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color var(--tx) var(--ease);
}
.footer__list a:hover { color: var(--teal); }

.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 6px;
  transition: color var(--tx) var(--ease);
}
.footer__phone:hover,
.footer__phone:focus-visible { color: var(--teal); }
.footer__phone-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer__hours {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 14px;
}
.footer__email {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  word-break: break-all;
  transition: color var(--tx) var(--ease);
}
.footer__email:hover,
.footer__email:focus-visible { color: var(--teal); }

.footer__divider {
  border: 0;
  height: 1px;
  background: var(--line-dark);
  margin: clamp(40px, 5vw, 64px) 0 28px;
}
.footer__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 920px;
  margin: 0 auto;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color var(--tx) var(--ease); }
.footer__legal a:hover { color: var(--teal); }
.footer__compliance {
  flex-basis: 100%;
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}
