/* ============================================================
   FOOTER — Terra Design Studio
   ============================================================ */

.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-8);
}

/* ── Top grid ─────────────────────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* ── Brand column ─────────────────────────────────────────── */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: opacity var(--dur-base) var(--ease);
}

.footer__logo:hover { opacity: 0.8; }

.footer__logo-img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
  /* Original colours preserved */
}

.footer__tagline {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  max-width: 28ch;
}

.footer__address {
  font-size: var(--fs-xs);
  line-height: var(--lh-loose);
  margin-top: var(--sp-2);
}

/* ── Navigation columns ───────────────────────────────────── */
.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__nav a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--dur-fast) var(--ease);
}

.footer__nav a:hover {
  color: var(--clr-white);
}

/* ── Contact column ───────────────────────────────────────── */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__contact a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--dur-fast) var(--ease);
}
.footer__contact a:hover { color: var(--clr-white); }

.footer__contact-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: var(--sp-1);
}

/* ── Bottom bar ────────────────────────────────────────────── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  flex-wrap: wrap;
}

.footer__legal {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.35);
  line-height: var(--lh-loose);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--dur-fast) var(--ease);
}
.footer__legal a:hover { color: rgba(255, 255, 255, 0.8); }

.footer__cta-strip {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
}

.footer__cta-strip a {
  color: var(--clr-accent-light);
  font-weight: var(--fw-semi);
}
.footer__cta-strip a:hover { color: var(--clr-white); }
