.rl-footer {
  background: #FFF3E5;
  color: #2F1200;
  font-family: 'Montserrat', sans-serif;
  padding: 48px 40px 0;
}

.rl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid rgba(47, 18, 0, 0.15);
}

.rl-brand-name {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 0 6px;
  font-family: 'Crimson Pro', serif;
}

.rl-brand-tag {
  font-size: 11px;
  color: #c27a1e;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.rl-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #5a3520;
  line-height: 1.5;
}

.rl-detail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
  filter: none;
}

.rl-col-title {
  font-size: 11px;
  font-weight: 500;
  color: #2F1200;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c27a1e;
  display: inline-block;
}

.rl-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #5a3520;
  padding: 8px 0;
  border-bottom: 0.5px solid rgba(47, 18, 0, 0.1);
}

.rl-hours-row:last-child {
  border-bottom: none;
}

.rl-hours-day {
  color: #2F1200;
  font-weight: 500;
}

.rl-connect-desc {
  font-size: 12px;
  color: #5a3520;
  margin: 0 0 16px;
  line-height: 1.6;
}

.rl-social-row {
  display: flex;
  gap: 10px;
}

.rl-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(47, 18, 0, 0.06);
  border: 0.5px solid rgba(47, 18, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.rl-social-btn:hover {
  background: #2F1200;
  border-color: #2F1200;
}

.rl-social-btn:hover .rl-social-icon {
  filter: brightness(0) invert(1);
}

.rl-social-icon {
  width: 18px;
  height: 18px;
  filter: none;
}

.rl-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(47, 18, 0, 0.4);
}

.rl-footer-logo {
  margin-bottom: 12px;
}

.rl-footer-logo img {
  height: 50px;
  width: auto;
}

/* Tablet */
@media (max-width: 1024px) {
  .rl-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .rl-col-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .rl-footer {
    padding: 36px 20px 0;
  }

  .rl-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rl-col-brand {
    grid-column: auto;
    text-align: center;
  }

  .rl-detail {
    justify-content: center;
  }

  .rl-col-hours,
  .rl-col-connect {
    text-align: center;
  }

  .rl-social-row {
    justify-content: center;
  }

  .rl-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}