.site-footer {
  padding: 5rem 0 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand {
  max-width: 28rem;
}

.footer-title {
  font-family: 'Tanker', sans-serif;
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.4);
  font-weight: var(--fw-light);
  margin: 0;
}

.footer-contact {
  text-align: right;
}

.footer-contact-label {
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email i {
  color: var(--orange);
  font-size: 0.9rem;
}

.footer-email:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.06);
  padding: 1.75rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: var(--fw-light);
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-top {
    padding-bottom: 3.5rem;
  }
}

@media (max-width: 912px) {
  .footer-top {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .site-footer {
    padding: 4rem 0 0;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3.5rem 0 0;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-bottom: 3rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 3rem 0 0;
  }

  .footer-title {
    font-size: var(--fs-h5);
  }

  .footer-top {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 320px) {
  .footer-email {
    font-size: 0.85rem;
  }
}
