/* ============================================================
   WOODLEY COLLISION — FOOTER (global)
   Dark footer: brand block (logo, tagline, contact, socials) +
   three link columns, a divider, then copyright + legal links.
   Desktop = brand left / columns right; mobile = full stack.
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  overflow: hidden;
}
.site-footer__inner {
  max-width: var(--container-outer);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ---- Top: logo + main grid ---- */
.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}
.site-footer__logo { display: flex; align-items: center; }
.site-footer__logo img { height: 59px; width: auto; }

.site-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-48);
}

/* ---- Brand block (left) ---- */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}
.site-footer__tagline {
  font-size: var(--fs-body);    /* 16px */
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-200);
  max-width: 390px;
  letter-spacing: 0;
}
.site-footer__tagline span {
  display: block;
  color: var(--white);
  font-weight: 500;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}
.site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.site-footer__contact-label {
  font-size: var(--fs-body-s);  /* 14px */
  font-weight: 500;
  line-height: 1.571;
  color: #8d8d8d;
  text-transform: uppercase;
}
.site-footer__contact-value {
  font-size: var(--fs-body);    /* 16px */
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--white);
}
a.site-footer__contact-value { transition: color var(--dur) var(--ease); }
a.site-footer__contact-value:hover { color: var(--color-red); }

/* Social icons */
.site-footer__socials { display: flex; gap: var(--sp-12); }
.site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-round);
  color: var(--white);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.site-footer__social svg { width: 20px; height: 20px; }
.site-footer__social:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225, 26, 23, 0.30);
}

/* ---- Link columns (right) ---- */
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 52px);
  max-width: 720px;
  width: 100%;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  min-width: 0;
}
.site-footer__col-title {
  font-size: var(--fs-body);    /* 16px */
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--gray-300);
  text-transform: uppercase;
}
.site-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}
.site-footer__link {
  font-size: var(--fs-body);    /* 16px */
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.site-footer__link:hover { color: var(--color-red); }

/* ---- Divider ---- */
.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 100%;
}

/* ---- Bottom: copyright + legal ---- */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
}
.site-footer__copy {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-16);
  font-size: 0.75rem;          /* 12px */
  font-weight: 400;
  line-height: 1.333;
  color: #717171;
}
.site-footer__legal {
  display: flex;
  gap: var(--sp-24);
  align-items: center;
}
.site-footer__legal a {
  font-size: var(--fs-body-s);  /* 14px */
  font-weight: 400;
  line-height: 1.571;
  color: var(--gray-200);
  transition: color var(--dur) var(--ease);
}
.site-footer__legal a:hover { color: var(--white); }

/* ============================================================
   MOBILE  (full vertical stack)
   ============================================================ */
@media (max-width: 860px) {
  .site-footer__inner { padding-block: 32px; }
  .site-footer__logo img { height: 50px; }

  .site-footer__main {
    flex-direction: column;
    gap: var(--sp-32);
  }
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
  }
  .site-footer__col { width: 100%; }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-16);
  }
  .site-footer__legal a { font-size: 0.75rem; line-height: 1.333; }   /* 12px on mobile */
}
