#contact {
  padding: 100px 0 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 72px;
}

.contact-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.contact-brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  line-height: 1.5;
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.contact-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.contact-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 145, 42, 0.08);
}

.footer-col-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.85);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.4;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.footer-bottom-right {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.footer-bottom-right span {
  color: var(--gold);
  opacity: 0.7;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .contact-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
