#site-footer {
  background: #1E1E28;
  padding: 0;
}

.footer-rule-top {
  height: 1px;
  background: #3A3A4A;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 0;
  display: grid;
  grid-template-columns: 40fr 30fr 30fr;
  gap: 0 48px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-wordmark {
  text-decoration: none;
  font-family: 'Space Grotesk', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-bottom: 14px;
}

.footer-wordmark-nova {
  color: #F0EDE8;
}

.footer-wordmark-pro {
  color: #E8C547;
}

.footer-tagline {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #6B6B7A;
  margin: 0 0 20px 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.footer-contact-link {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #6B6B7A;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-contact-link:hover {
  color: #F0EDE8;
}

.footer-contact-link:focus-visible {
  outline: 2px solid #F0EDE8;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-link {
  color: #6B6B7A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease;
  text-decoration: none;
}

.footer-social-link:hover {
  color: #F0EDE8;
}

.footer-social-link:focus-visible {
  outline: 2px solid #F0EDE8;
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-col-label {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #6B6B7A;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.footer-col-nav nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-link {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(240, 237, 232, 0.60);
  text-decoration: none;
  transition: color 200ms ease;
  display: inline-block;
}

.footer-nav-link:hover {
  color: #F0EDE8;
}

.footer-nav-link:focus-visible {
  outline: 2px solid #F0EDE8;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-col-cta {
  align-items: flex-start;
}

.footer-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #F0EDE8;
  background: transparent;
  border: 1px solid rgba(240, 237, 232, 0.50);
  border-radius: 4px;
  padding: 14px 32px;
  margin-bottom: 16px;
  transition: color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 100ms ease;
}

.footer-book-btn:hover {
  color: #E8C547;
  border-color: #E8C547;
  box-shadow: 0 0 24px rgba(232, 197, 71, 0.15);
}

.footer-book-btn:active {
  transform: scale(0.97);
}

.footer-book-btn:focus-visible {
  outline: 2px solid #F0EDE8;
  outline-offset: 3px;
}

.footer-estimate-link {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #E8C547;
  text-decoration: none;
  transition: color 200ms ease, text-decoration 200ms ease;
}

.footer-estimate-link:hover {
  color: #C4923A;
  text-decoration: underline;
}

.footer-estimate-link:focus-visible {
  outline: 2px solid #F0EDE8;
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 32px;
}

.footer-bottom-rule {
  height: 1px;
  background: #3A3A4A;
  margin: 48px 0 24px;
}

.footer-copyright {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: #6B6B7A;
  text-align: center;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 48px 24px 0;
  }

  .footer-col-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-col-nav {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-col-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
  }

  .footer-bottom {
    padding: 0 24px 28px;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 0;
    gap: 0;
  }

  .footer-col-brand {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 32px;
  }

  .footer-col-nav {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 32px;
  }

  .footer-col-cta {
    grid-column: 1;
    grid-row: 3;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
    margin-bottom: 32px;
  }

  .footer-book-btn {
    text-align: center;
    justify-content: center;
  }

  .footer-estimate-link {
    text-align: center;
  }

  .footer-bottom {
    padding: 0 24px 24px;
  }

  .footer-bottom-rule {
    margin: 32px 0 20px;
  }
}

@media (max-width: 320px) {
  .footer-inner {
    padding: 32px 16px 0;
  }

  .footer-bottom {
    padding: 0 16px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact-link,
  .footer-social-link,
  .footer-nav-link,
  .footer-book-btn,
  .footer-estimate-link {
    transition: none;
  }
}