/* ============================================================
   FOOTER
   Espresso close. Find-us (image + details + hours), brand and
   navigation, then a bottom bar.
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.site-footer a { color: inherit; text-decoration: none; }

/* ---- find us ---- */
.footer-visit {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(247, 242, 234, 0.14);
}
@media (min-width: 800px) {
  .footer-visit { grid-template-columns: 1fr 1fr; align-items: center; }
}
.footer-map img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(247, 242, 234, 0.16);
}

.footer-overline {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(247, 242, 234, 0.5);
  margin-bottom: var(--space-s);
}
.footer-address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--cream);
}
.footer-contact {
  margin-top: var(--space-m);
  line-height: 1.9;
  font-size: var(--step-0);
}
.footer-contact a:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--space-m);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 242, 234, 0.4);
  padding-bottom: 3px;
  transition: border-color 0.3s var(--ease);
}
.footer-directions svg { transition: transform 0.3s var(--ease); }
.footer-directions:hover { border-color: var(--cream); }
.footer-directions:hover svg { transform: translateX(4px); }

.footer-hours { margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }
.footer-hours dl {
  display: grid;
  gap: 0;
  max-width: 24rem;
}
.footer-hours .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.55rem;
  font-size: var(--step--1);
  border-bottom: 1px solid rgba(247, 242, 234, 0.1);
}
.footer-hours dt { color: rgba(247, 242, 234, 0.6); margin: 0; }
.footer-hours dd { color: var(--cream); margin: 0; }

/* ---- brand + nav ---- */
.footer-main {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 800px) {
  .footer-main { grid-template-columns: 1.1fr 2fr; }
}
.footer-logo { height: 54px; width: auto; display: block; }
.footer-tagline {
  margin-top: var(--space-m);
  font-size: var(--step--1);
  line-height: 1.6;
  color: rgba(247, 242, 234, 0.7);
  max-width: 30ch;
}
.footer-social { display: flex; gap: 0.7rem; margin-top: var(--space-m); }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(247, 242, 234, 0.25);
  border-radius: 50%;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-social a:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 560px) {
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}
.footer-col-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(247, 242, 234, 0.5);
  margin-bottom: var(--space-m);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: var(--step--1);
  color: rgba(247, 242, 234, 0.85);
}
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

/* ---- bottom bar ---- */
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  padding-block: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(247, 242, 234, 0.14);
  font-size: 0.8rem;
  color: rgba(247, 242, 234, 0.55);
}
.footer-bar a { color: rgba(247, 242, 234, 0.8); }
.footer-bar a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }