/* BRASA — footer. */

.footer {
  background: var(--black);
  color: var(--cream);
  padding-block: clamp(3rem, 8vh, 5.5rem) 2rem;
  border-top: 1px solid var(--cream-14);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, .6fr));
  gap: clamp(1.6rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--cream-14);
}
.footer__brand .brand__word { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: .1em; }
.footer__brand .brand__mark { width: 26px; height: 32px; }
.footer__tag {
  margin-top: .8rem;
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ember);
}
.footer h3 {
  font-size: var(--t-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--cream-52);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer ul { display: grid; gap: .6rem; font-size: var(--t-small); }
.footer ul a { color: var(--cream-72); transition: color var(--dur-fast); }
.footer ul a:hover { color: var(--ember); }
.footer__hours span { color: var(--cream-52); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: var(--t-label);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-52);
}
.footer__bottom a { color: var(--cream-72); }
.footer__bottom a:hover { color: var(--ember); }

@media (max-width: 860px) {
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

/* demo contact rows are actions, not destinations: they announce that the
   concept has no live phone or social account instead of navigating anywhere */
.footer ul button {
  padding: 0;
  font-size: inherit;
  text-align: left;
  color: var(--cream-72);
  transition: color var(--dur-fast);
}
.footer ul button:hover { color: var(--ember); }
