/* ===============================
   FOOTER — SEVERIMGS EDITION
   Nude / Mint / Soft Glass / Orange Accent
================================ */

.site-footer {
  --footer-bg: #faf8f5;
  --footer-bg-soft: #ffffff;
  --footer-text-main: var(--color-text-main, #1f2937);
  --footer-text-muted: var(--color-text-soft, #6b7280);
  --footer-accent-orange: #ff7a32;

  margin-top: 60px;
  padding: 40px 0 26px;

  background: linear-gradient(180deg, #ffffff, #faf7f3 70%);
  border-top: 1px solid rgba(148, 163, 184, 0.28);

  backdrop-filter: blur(12px);
  color: var(--footer-text-muted);

  font-family: "Manrope", system-ui, sans-serif;
}

/* Container */
.site-footer .container {
  max-width: 1200зч;
  margin: 0 auto;
  padding: 0 20px;
}

/* Layout */
.footer-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

/* Brand block */
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-main .logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;

  color: var(--footer-text-main);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;

  transition: transform 0.2s ease;
}

.footer-main .logo:hover {
  transform: translateY(-1px);
}

.footer-main .logo img {
  max-width: 150px;
  height: auto;
  margin-bottom: 6px;
}

/* All footer links */
.site-footer a,
.site-footer address {
  color: var(--footer-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 2px 0;
  text-transform: uppercase;

  transition:
    color 0.18s ease,
    transform 0.14s ease,
    text-shadow 0.18s ease;
}

.site-footer address {
  font-style: normal;
}

/* Hover effect — clean orange glow */
.site-footer a:hover {
  color: var(--footer-accent-orange);
  transform: translateY(-1px);
  text-shadow: 0 2px 8px rgba(255, 122, 50, 0.38);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);

  color: var(--footer-text-main);

  backdrop-filter: blur(10px);
  box-shadow: none;

  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #ff7a32, #ff6a2f);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px) scale(1.08);
}

/* Contacts & Links */
.footer-contacts,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;

  align-items: flex-start;
}

/* Bottom part */
.footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);

  font-size: 11.5px;
  color: var(--footer-text-muted);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p span {
  color: var(--footer-accent-orange);
  font-weight: 700;
}

/* Mobile */
@media (max-width: 640px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-main {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contacts,
  .footer-links {
    align-items: center;
  }

  .site-footer {
    margin-top: 40px;
    padding: 30px 0 20px;
  }
}
