/*! Единый footer Лика — работает на всех страницах независимо от Tailwind */

.lik-site-footer {
  background: #f8f8f8;
  padding: 40px 0 24px;
  border-top: 1px solid #e8e8ed;
  margin-top: 60px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1d1d1f;
}
.lik-site-footer * { box-sizing: border-box; }

/* ── Контейнер: лого + nav + кнопка ── */
.lik-site-footer-inner {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
@media (min-width: 768px) {
  .lik-site-footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

/* ── Лого ── */
.lik-site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.lik-site-footer-mark {
  width: 40px; height: 40px;
  background: #c9a961;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lik-site-footer-mark svg { width: 20px; height: 20px; display: block; }
.lik-site-footer-brand-text {
  font-family: "Cormorant Garamond", "Cormorant Garamond Fallback", Georgia, serif;
  line-height: 1.05;
}
.lik-site-footer-brand-text .name {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #1d1d1f;
}
.lik-site-footer-brand-text .sub {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #8a6f30;
  letter-spacing: 0.3em;
  margin-top: 2px;
}

/* ── Навигация (Сервис | Документы) — ВСЕГДА 2 колонки рядом ── */
.lik-site-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .lik-site-footer-nav {
    width: auto;
    gap: 70px;
  }
}
.lik-site-footer-col { min-width: 0; }
.lik-site-footer-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #86868b;
  font-weight: 600;
  margin-bottom: 12px;
}
.lik-site-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lik-site-footer-col li {
  margin-bottom: 12px;
  list-style: none;
}
.lik-site-footer-col li:last-child { margin-bottom: 0; }
.lik-site-footer-col a {
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}
.lik-site-footer-col a:hover { color: #8a6f30; }

/* ── Кнопка «Обратная связь» ── */
.lik-site-footer-cta {
  display: inline-block;
  padding: 13px 36px;
  background: #c9a961;
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: box-shadow 0.4s cubic-bezier(.2,.7,.2,1), transform 0.4s cubic-bezier(.2,.7,.2,1);
  flex-shrink: 0;
  align-self: stretch;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  box-shadow:
    0 0 0 4px rgba(201, 169, 97, 0.18),
    0 8px 32px rgba(201, 169, 97, 0.55),
    0 16px 48px rgba(201, 169, 97, 0.30),
    0 2px 6px rgba(201, 169, 97, 0.40);
}
.lik-site-footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4b574 0%, #c9a961 100%);
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
  border-radius: inherit;
}
.lik-site-footer-cta:hover::after {
  opacity: 0;
}
@media (min-width: 768px) {
  .lik-site-footer-cta { align-self: flex-start; }
}
.lik-site-footer-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 20px rgba(201, 169, 97, 0.25),
    0 1px 3px rgba(201, 169, 97, 0.15);
}

/* ── Copyright ── */
.lik-site-footer-copyright {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 0;
  border-top: 1px solid #e8e8ed;
  text-align: center;
}
.lik-site-footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

