.footer {
  padding: 52px 0 28px;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  width: 100%;
  margin-top: -1px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo svg,
.footer-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-title {
  font-family: var(--ff-h1);
  font-size: 18px;
  color: #000;
  letter-spacing: 0.02em;
}

.footer-brand-desc {
  font-size: 13px;
  color: #000;
}

.footer-contacts {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-phone {
  font-family: 'Circe', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone:hover {
  color: var(--c-accent);
}

.footer-email {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-email:hover {
  opacity: 1;
  color: var(--c-accent);
}

.footer-hours {
  font-size: 13px;
  color: #000;
  margin-top: 2px;
  line-height: 1.5;
}

.footer-nav {
  flex: 0 0 100%;
  text-align: center;
  padding-top: 24px;
  margin-top: 4px;
  border-top: 1px solid var(--c-border);
}

.footer-nav ul {
  padding-left: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav li {
  list-style: none;
}

.footer-nav a {
  font-size: 13px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--c-accent);
}

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

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

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

  .footer-logo svg,
  .footer-logo img {
    margin: 0 auto;
  }

  .footer-contacts {
    text-align: center;
    align-items: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
