/* ===== FOOTER ===== */

footer {
  background: var(--navy-deep);
  color: var(--paper);
  font-family: var(--sans);
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 56px;
  padding: 56px 180px 40px;
  align-items: start;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand-text h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.footer-brand-text p {
  font-size: 13px;
  color: rgba(250, 248, 243, 0.6);
  margin-top: 2px;
}

.footer-section h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(250, 248, 243, 0.78);
  line-height: 1.4;
}
.footer-section li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: rgba(250, 248, 243, 0.5);
  margin-top: 1px;
}
.footer-section a {
  color: rgba(250, 248, 243, 0.78);
  transition: color 0.25s var(--ease);
}
.footer-section a:hover { color: var(--orange-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 180px;
  border-top: 1px solid rgba(250, 248, 243, 0.12);
  font-size: 12px;
}
.footer-bottom-copy { color: rgba(250, 248, 243, 0.55); }
.footer-bottom-social {
  display: flex;
  gap: 14px;
}
.footer-bottom-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 248, 243, 0.6);
  border: 1px solid rgba(250, 248, 243, 0.18);
  border-radius: 50%;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-bottom-social a:hover {
  color: var(--orange-light);
  border-color: var(--orange);
}
.footer-bottom-social svg { width: 14px; height: 14px; }

@media (max-width: 1280px) {
  .footer-top,
  .footer-bottom {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 24px 28px;
  }
  .footer-bottom {
    padding: 18px 24px;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
