/* === FOOTER === */
.site-footer {
  margin-top: auto;
}

.footer-main {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
}

/* Footer Column */
.footer-col__title {
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-champagne);
  display: inline-block;
}

/* Logo */
.footer-logo {
  margin-bottom: var(--space-md);
}

.footer-logo .custom-logo {
  max-height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-about {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

/* Social */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-champagne);
  color: var(--color-dark);
}

/* Contact List */
.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--fs-sm);
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-champagne);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact li a:hover {
  color: var(--color-champagne);
}

/* Hours */
.footer-hours {
  list-style: none;
}

.footer-hours li {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
  font-size: var(--fs-sm);
}

.footer-hours li span:first-child {
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--color-champagne);
}

/* Newsletter */
.footer-newsletter-text {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-md);
}

/* Footer widgets */
.footer-col .widget {
  margin-bottom: var(--space-md);
}

.footer-col .widget-title {
  color: var(--color-white);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom-color: var(--color-champagne);
}

.footer-col .widget ul li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.footer-col .widget ul li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-col .widget ul li a:hover {
  color: var(--color-champagne);
}

/* === FOOTER BOTTOM === */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
