/* ── FOOTER ── */
footer {
  background: var(--espresso2);
  color: rgba(251,244,227,.5);
  padding: 32px 28px;
  text-align: center;
  font-family: var(--font-ui); 
  font-size: .82rem;
}
 
 
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(251,244,227,.08);
}
 
.footer-brand {
  display: flex;flex-direction: column; justify-content: center; align-items: center; gap: 10px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 20px;
}

.footer-brand-logo-img {
  width: 50px; height: 50px;
}
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }

.footer-brand-text span:first-child {
  font-family: var(--font-eyebrow); font-size: 1.2rem;
  color: rgba(251,244,227,.5); letter-spacing: .08em;
}
.footer-brand-text span:last-child {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--cream);
}
.footer-tagline {
  font-size: .88rem; line-height: 1.7;
  color: rgba(251,244,227,.45);
  margin-bottom: 28px;
  max-width: 220px;
}
.footer-socials {
  display: flex; gap: 10px; justify-content:space-evenly; align-items: center;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(251,244,227,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(251,244,227,.55);
  text-decoration: none;
  font-size: .8rem; font-weight: 700;
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social-btn:hover {
  background: var(--olive); border-color: var(--olive);
  color: var(--espresso2);
}
.footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
 
.footer-col {}
.footer-col-title {
  font-family: var(--font-eyebrow);
  font-size: 1.1rem; font-weight: 700;
  color: var(--olive);
  margin-bottom: 18px; display: block;
  letter-spacing: .02em;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
}
.footer-links a {
  font-size: .88rem; font-weight: 500;
  color: rgba(251,244,227,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--cream); }
 
.footer-contact-item {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 14px;
}
.footer-contact-label {
  font-family: var(--font-eyebrow); font-size: .8rem; font-weight: 600;
  color: var(--mustard); letter-spacing: .06em; text-transform: uppercase;
}
.footer-contact-value {
  font-size: .88rem; font-weight: 500;
  color: rgba(251,244,227,.55);
}
.footer-contact-value a {
  color: rgba(251,244,227,.55); text-decoration: none;
  transition: color .2s;
}
.footer-contact-value a:hover { color: var(--cream); }
 
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: .8rem; color: rgba(251,244,227,.28);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a {
  color: rgba(251,244,227,.28); text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: rgba(251,244,227,.55); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
 
/* ── FOOTER RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .footer-brand{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
 
@media (max-width: 760px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding: 56px 0 40px;
  }
  .footer-tagline { max-width: 320px; }
}
 
@media (max-width: 540px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 36px;
  }
  .footer-col-title { margin-bottom: 14px; }
  .footer-links { gap: 12px; }
  .footer-links a, .footer-contact-value { font-size: .92rem; }
  .footer-socials { gap: 12px; }
  .footer-social-btn { width: 42px; height: 42px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px 0 28px;
  }
  .footer-bottom-links { gap: 16px; }
  .footer-bottom span { line-height: 1.5; }
}