
/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #2d0a1f 0%, #1a0612 100%);
  color: #fff4fa;
  padding: 80px 60px 40px;
  position: relative;
  overflow: hidden;
}
 
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 232, 0.25), transparent);
}
 
.footer::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122, 31, 94, 0.2), transparent 70%);
  pointer-events: none;
}
 
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
 
/* Big heading */
.footer-top-text {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-eyebrow {
  font-family: 'Nixie One', system-ui;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd1e8;
  opacity: 0.7;
}
.footer-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: #fff4fa;
  line-height: 1.05;
  letter-spacing: -1px;
}
 
/* Content grid */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-bottom: 56px;
}
 
.footer-title {
  font-family: 'Nixie One', system-ui;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 209, 232, 0.6);
}
 
/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
 
.info-item .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 209, 232, 0.5);
  font-weight: 400;
}
 
.info-item a,
.info-item p {
  font-size: 15px;
  color: #fff4fa;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
 
.info-item a {
  text-decoration: none;
  transition: color 0.3s;
}
.info-item a:hover {
  color: #ffd1e8;
}
 
/* Social links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 244, 250, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 209, 232, 0.08);
  transition: color 0.3s, padding-left 0.3s;
}
.social-link:last-child {
  border-bottom: none;
}
.social-link i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: rgba(255, 209, 232, 0.5);
  transition: color 0.3s;
}
.social-link span {
  letter-spacing: 0.5px;
}
.social-link:hover {
  color: #fff4fa;
  padding-left: 6px;
}
.social-link:hover i {
  color: #ffd1e8;
}
 
/* Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 232, 0.15), transparent);
  margin-bottom: 28px;
}
 
/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 244, 250, 0.35);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
}
 
/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 60px 24px 36px;
  }
  .footer-top-text {
    margin-bottom: 48px;
  }
  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .social-link {
    border-bottom: none;
    border: 1px solid rgba(255, 209, 232, 0.15);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
  }
  .social-link:hover {
    padding-left: 16px;
    background: rgba(255, 209, 232, 0.08);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
 
@media (max-width: 480px) {
  .footer {
    padding: 48px 20px 28px;
  }
  .footer-content {
    gap: 36px;
  }
}