/* =============================================
   Footer
   ============================================= */

.footer {
  background: #3b2a18;
  color: rgba(255,255,255,0.80);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 56px 24px 48px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand h3 {
  font-family: var(--heading);
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

address {
  font-style: normal;
}

address p {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.72);
}

address a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.15s;
}

address a:hover {
  color: #fff;
}

.footer-tilinro {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 24px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
