/* ==========================================================================
   07-footer.css — Site Footer
   ========================================================================== */

.rentl-footer {
  background-color: var(--rentl-color-surface-soft);
  border-top: 1px solid var(--rentl-color-border);
  padding-block: var(--rentl-section-y-sm);
}

.rentl-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rentl-space-10);
}

@media (min-width: 768px) {
  .rentl-footer__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

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

.rentl-footer__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--rentl-font-size-xl);
  color: var(--rentl-orange);
  text-decoration: none;
}

.rentl-footer__logo:hover {
  color: var(--rentl-orange-dark);
}

.rentl-footer__tagline {
  font-size: var(--rentl-font-size-sm);
  color: var(--rentl-color-text-muted);
  line-height: var(--rentl-line-height-body);
  max-width: 28ch;
}

/* Nav column */
.rentl-footer__nav {
  display: flex;
  flex-direction: column;
  gap: var(--rentl-space-3);
}

.rentl-footer__nav-heading {
  font-family: var(--font-heading);
  font-size: var(--rentl-font-size-sm);
  font-weight: 700;
  color: var(--rentl-color-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--rentl-space-1);
}

.rentl-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--rentl-space-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.rentl-footer__nav a {
  font-size: var(--rentl-font-size-sm);
  color: var(--rentl-color-text-muted);
  text-decoration: none;
  transition: color var(--rentl-transition-fast);
}

.rentl-footer__nav a:hover {
  color: var(--rentl-orange);
}

/* Bottom bar */
.rentl-footer__bottom {
  margin-top: var(--rentl-space-10);
  padding-top: var(--rentl-space-6);
  border-top: 1px solid var(--rentl-color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--rentl-space-3);
}

.rentl-footer__copyright {
  font-size: var(--rentl-font-size-xs);
  color: var(--rentl-color-text-muted);
}
