/* ── FOOTER ────────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 5rem 6% 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--white);
  line-height: 1;
}

.footer-brand-cafe {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.52rem;
  letter-spacing: 0.55em;
  color: var(--amber);
  display: block;
  margin: 3px 0 1.2rem;
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.85;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 1px;
  transition: all 0.2s;
}

.footer-social-link:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(201, 168, 76, 0.08);
}

.footer-col-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

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

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

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
}
