/* ─── FOOTER ─── */
footer {
  background: #111214;
  border-top: 1px solid #2a2d32;
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand-col {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-nav-col {
  flex: 1;
  min-width: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

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

.footer-social-col {
  flex: 0 0 auto;
  min-width: 140px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Соцсети — вертикально */
.footer-social-col .socials {
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-logo-img-placeholder {
  width: 36px;
  height: 36px;
  border: 1px dashed rgba(232, 133, 26, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  color: rgba(232, 133, 26, 0.3);
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--amber);
}

.footer-text {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.availability-bar {
  background: rgba(232, 133, 26, 0.08);
  border-top: 1px solid rgba(232, 133, 26, 0.2);
  border-bottom: 1px solid rgba(232, 133, 26, 0.2);
  padding: 14px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.avail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.avail-dot.green {
  background: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.avail-dot.amber {
  background: var(--amber);
  box-shadow: 0 0 8px rgba(232, 133, 26, 0.6);
}

/* Соцсети */
.socials {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px 12px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid #2a2d32;
  padding: 8px 16px;
  transition: all 0.2s;
  background: #0a0a0a;
}

.social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.social-link svg {
  flex-shrink: 0;
}
