/* ====== ОСНОВНОЕ ВЫРАВНИВАНИЕ ====== */
.footer {
  display: flex;
  justify-content: space-between;   /* текст слева, логотип справа */
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 40px;
}

/* Левая часть (текст) */
.footer-left {
  flex: 1;
  min-width: 260px;
  color: var(--muted);
}

.footer-author {
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.footer-note {
  font-size: 12px;
  margin-top: 6px;
  text-align: left;
}

/* Правая часть (логотип и бренд) */
.sig {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sig-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sig-logo-img {
  width: 56px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.sig-logo-wrap:hover .sig-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 10px rgba(184,134,11,0.35));
}

.sig-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: center;
}

.sig-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, #8B6F00, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.3px;
}

.sig-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  margin-top: 4px;
  background: linear-gradient(135deg, #B8860B, #E6BE5C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

/* ====== АДАПТИВ ====== */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .sig {
    justify-content: center;
  }

  .sig-text {
    text-align: center;
  }
}
