/* Премиум-футер сайта */

.footer-cta-bar {
  position: relative;
  background: linear-gradient(135deg, #1a1400 0%, #0f0d06 45%, #0a0a0a 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}

.footer-cta-bar__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.6), transparent);
}

.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: #C9A84C;
  border: 1px solid rgba(201, 168, 76, 0.65);
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
  animation: footerCtaGlow 2.2s ease-in-out infinite;
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  color: #E8D5A3;
  border-color: #C9A84C;
}

@keyframes footerCtaGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(201, 168, 76, 0.2), inset 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(201, 168, 76, 0.45), 0 0 32px rgba(201, 168, 76, 0.15);
  }
}

.site-footer {
  position: relative;
  background: #050505;
  padding: 0 40px 30px;
  overflow: hidden;
}

.site-footer__glow-top {
  display: block;
  height: 2px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 56px;
  background: linear-gradient(90deg, transparent 0%, #C9A84C 20%, #E8D5A3 50%, #C9A84C 80%, transparent 100%);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5), 0 0 40px rgba(201, 168, 76, 0.2);
  border: none;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 8px;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.site-footer .footer-brand .logo {
  justify-content: flex-start;
}

.site-footer .footer-brand p {
  color: #888;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 24px;
  align-self: flex-start;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.08);
  color: #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s, transform 0.25s;
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social-btn:hover {
  background: rgba(201, 168, 76, 0.22);
  border-color: #C9A84C;
  color: #E8D5A3;
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.site-footer .footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 22px;
}

.site-footer .footer-col--nav a {
  position: relative;
  display: block;
  color: #888;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 14px;
  padding-left: 0;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.site-footer .footer-col--nav a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  color: #C9A84C;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-footer .footer-col--nav a:hover {
  color: #C9A84C;
  padding-left: 22px;
}

.site-footer .footer-col--nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.site-footer .footer-col--contacts .footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
  transition: color 0.25s;
}

.site-footer .footer-col--contacts .footer-contact:hover {
  color: #C9A84C;
}

.site-footer .footer-col--contacts .footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer .footer-col--contacts span.footer-contact {
  cursor: default;
}

.site-footer .footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #666;
  font-size: 13px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 769px) {
  .site-footer .footer-brand {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer .footer-brand .logo {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
  }

  .site-footer .footer-brand p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .site-footer .footer-social {
    justify-content: flex-start;
    align-self: flex-start;
    width: auto;
  }
}

@media (max-width: 768px) {
  .footer-cta-bar {
    position: relative;
    z-index: 1;
  }

  .footer-cta-inner {
    padding: 24px 16px;
    flex-direction: column;
    text-align: center;
  }

  .footer-cta-text {
    font-size: 1.35rem;
  }

  .footer-cta-btn {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
  }

  .site-footer {
    padding: 0 20px 24px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
    order: 1;
    text-align: center;
    align-items: center;
  }

  .site-footer .footer-brand .logo {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer .footer-brand p {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .site-footer .footer-social {
    justify-content: center;
    align-self: center;
    width: 100%;
  }

  .site-footer .footer-col:nth-child(2) {
    order: 2;
  }

  .site-footer .footer-col:nth-child(3) {
    order: 3;
  }

  .site-footer .footer-col--contacts {
    grid-column: 1 / -1;
    order: 4;
  }

  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 399px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta-btn {
    animation: none;
  }
}
