/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: var(--beige-dark);
  padding: 4rem 5rem 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 240, 227, 0.1);
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--honey-light);
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(247, 240, 227, 0.6);
  margin-bottom: 1.5rem;
}

.footer-email-form {
  display: flex;
  gap: 0;
}

.footer-email-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: white;
  outline: none;
}

.footer-email-form input::placeholder { color: rgba(255,255,255,0.35); }

.footer-email-form button {
  padding: 0.65rem 1.2rem;
  background: var(--honey);
  border: none;
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-email-form button:hover { background: var(--honey-dark); }

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--honey-light);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: rgba(247, 240, 227, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--honey-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  color: rgba(247, 240, 227, 0.35);
}

.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  color: rgba(247, 240, 227, 0.4);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--honey-light); }
