/* Restrained on purpose: a wordmark, four destinations, two placeholders and
   the year. Nothing here pretends to be a business that exists. */
.site-foot {
  background: var(--night); color: #EFEAE0;
  padding: clamp(3rem, 8vh, 5rem) var(--gut) clamp(2rem, 5vh, 3rem);
  display: grid; gap: clamp(2rem, 5vh, 3.4rem);
}
.site-foot .mark__sub { color: rgba(239,234,224,.6); }
.foot__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 1rem clamp(1.2rem, 3vw, 2.6rem); }
.foot__nav a { font-size: var(--label); letter-spacing: .22em; text-transform: uppercase; padding-bottom: .3em; border-bottom: 1px solid transparent; transition: border-color .45s var(--ease); }
.foot__nav a:hover, .foot__nav a:focus-visible { border-color: rgba(239,234,224,.6); }
.foot__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem;
  border-top: 1px solid rgba(239,234,224,.18); padding-top: clamp(1.2rem, 3vh, 2rem);
  font-size: .68rem; letter-spacing: .1em; color: rgba(239,234,224,.62);
}
.foot__contact { display: flex; flex-wrap: wrap; gap: 1rem clamp(1.2rem, 3vw, 2.4rem); }
@media (max-width: 900px) { .foot__nav a { padding-block: .6em .5em; } }
