/* ===== FOOTER ===== */
.site-footer{
  background: var(--bg);
  color: var(--white);
  padding: 56px 0 0;
}

.footer-inner{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 420px;
  gap: 70px;
  align-items: start;
}

.footer-title{
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: .8px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-rule{
  height: 1px;
  background: rgba(185,167,122,.45);
  margin-bottom: 26px;
}

.footer-nav{
  display: grid;
  gap: 18px;
}

.footer-link{
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: 18px;
}

.footer-link:hover{ color: var(--gold-light); }

.footer-contact{
  display: grid;
  gap: 10px;
}

.contact-label{
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}

.contact-text{
  margin: 0 0 18px;
  color: rgba(255,255,255,.85);
  font-size: 18px;
  line-height: 1.5;
}

/* Reserve card */
.footer-card{
  justify-self: end;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  overflow: hidden;
}

.footer-card-media{
  position: relative;
  height: 420px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-card-heading{
  position: absolute;
  top: 26px;
  left: 22px;
  right: 22px;
  color: #ffffff;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.footer-card-cta{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  color: #1f2a24;
  text-decoration: none;
  padding: 18px 44px;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: .6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-card-cta:hover{
  background: var(--gold);
  color: #ffffff;
}

.footer-card-cta .arrow{ font-size: 20px; }

/* Bottom row */
.footer-bottom{
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
}

.footer-bottom-inner{
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.stay-connected{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.stay-connected-label{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .7px;
  font-size: 18px;
}

.socials{
  display: flex;
  align-items: center;
  gap: 16px;
}

.social{
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.social img{
  width: 30px;
  height: auto;
}

.social:hover{ background: var(--gold); }

.footer-credit{
  color: var(--gold);
  letter-spacing: .4px;
  font-size: 16px;
}

/* ===== MOBILE ===== */
@media (max-width: 760px){
  .site-footer{ padding-top: 26px; }

  .footer-inner{
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-card-heading{
    font-size: 40px;
  }
}
