/* Header, footer, containers gerais e divisores de onda */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 243, 229, .86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(110, 20, 35, .1);
}

.site-header__inner {
  position: relative;
  padding: 4px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}


.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-heading);
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--color-orange);
}

/* Breakpoint próprio da nav (maior que os 880px usados no resto do site):
   com 6 links ela precisa de mais espaço entre a logo e o botão pra não
   sobrepor nenhum dos dois. */
@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: none;
}

.brand__logo--footer {
  width: 124px;
  height: 124px;
}

/* Divisores de onda entre seções de cores diferentes */
.wave {
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 44px;
  display: block;
}

.wave--maroon { color: var(--color-maroon); }
.wave--cream { color: var(--bg-cream-alt); }

/* Footer */
.site-footer {
  background: var(--color-brown-darkest);
  color: var(--text-on-dark-2);
  padding: 52px 22px 40px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__brand {
  max-width: 320px;
}

.site-footer__brand .brand {
  margin-bottom: 14px;
}

.site-footer__brand p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-footer-muted);
}

.site-footer__cols {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.site-footer__col-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.site-footer__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
}

.site-footer__cols a {
  color: var(--text-on-dark-2);
}

.site-footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 195, 178, .16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-footer-bottom);
}

.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-footer-bottom);
}

.site-footer__credit:hover {
  color: var(--color-gold);
}

.site-footer__credit img {
  display: block;
}
