/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 72px 48px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo img {
  height: 44px;
  filter: brightness(1.1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 13px;
  color: #999;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.footer-social a:hover {
  background: #fff;
  border-color: #fff;
}

.footer-social a:hover svg { stroke: #111; }
.footer-social svg { stroke: #fff; width: 16px; height: 16px; transition: stroke 0.3s; }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.3px;
  line-height: 2.2;
  transition: color 0.2s;
}

.footer-col a:hover { color: #d4af37; }

/* Newsletter */
.footer-newsletter {
  margin-top: 4px;
}

.footer-newsletter p {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.2);
}

.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  outline: none;
}

.footer-newsletter-form input::placeholder { color: #666; }

.footer-newsletter-form button {
  padding: 12px 20px;
  background: #fff;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter-form button:hover { background: #d4af37; color: #fff; }

/* Footer Bottom */
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: #666;
  letter-spacing: 0.3px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 11px;
  color: #666;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .site-footer { padding: 48px 20px 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 500px) {
  .footer-main { grid-template-columns: 1fr; }
}
