.bs-footer{
  --cream:#FAF7F2;
  --beige:#F0EAE0;
  --beige-mid:#E2D9CC;
  --sand:#C8B99A;
  --brown:#5C4A38;
  --brown-dark:#3A2E22;
  --gold:#A8894A;
  --gold-light:#C9A96E;
  --muted:#8A7A6A;

  background:var(--brown-dark);
  padding:72px 60px 36px;
  color:var(--cream);
}
.bs-footer *{box-sizing:border-box}

.bs-footer a{
  transition:
    color .25s ease,
    background-size .25s ease,
    border-color .25s ease,
    opacity .25s ease;
}

.bs-footer a:focus-visible{
  outline:1px solid var(--gold-light);
  outline-offset:4px;
}

.bs-footer-grid{
  max-width:1500px;
  margin:0 auto 56px;
  display:grid;
  grid-template-columns:1.25fr 1.2fr 1fr .9fr;
  gap:72px;
}

.bs-footer-logo{
  font-family:Georgia,serif;
  font-size:20px;
  color:var(--cream);
  margin-bottom:12px;
}

.bs-footer-sub{
  font-size:13px;
  letter-spacing:.12em;
  color:rgba(250,247,242,.42);
  margin-bottom:28px;
}

.bs-footer-text{
  font-size:16px;
  color:#D8CFBF;
  line-height:1.85;
  font-weight:300;
  margin:0;
}

.bs-footer-contact{
  margin-top:24px;
}

.bs-footer-contact-link{
  display:inline-block;
  font-size:15px;
  color:var(--gold-light);
  text-decoration:none;
  line-height:2;
  word-break:break-word;
  -webkit-tap-highlight-color:transparent;
}

.bs-footer-contact-link:hover{
  color:var(--cream);
}

.bs-footer-heading{
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:26px;
  font-weight:500;
}

.bs-footer-link{
  display:block;
  width:fit-content;
  font-size:16px;
  color:#D8CFBF;
  line-height:1.85;
  font-weight:300;
  text-decoration:none;
  background-image:linear-gradient(var(--gold-light),var(--gold-light));
  background-repeat:no-repeat;
  background-position:left calc(100% - 3px);
  background-size:0 .5px;
}

.bs-footer-link:hover{
  color:var(--gold-light);
  background-size:100% .5px;
}

.bs-footer-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  margin-top:26px;
  border:1px solid rgba(201,169,110,.45);
  border-radius:50%;
  color:var(--cream);
  text-decoration:none;
}

.bs-footer-social:hover{
  color:var(--gold-light);
  border-color:var(--gold-light);
}

.bs-footer-social svg{
  width:22px;
  height:22px;
  display:block;
}

.bs-footer-info{
  margin-top:56px;
}

.bs-footer-bottom{
  max-width:1500px;
  margin:0 auto;
  border-top:1px solid rgba(201,169,110,.18);
  padding-top:28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:22px;
  text-align:center;
}

.bs-footer-copy{
  font-size:15px;
  color:rgba(216,207,191,.45);
  letter-spacing:.04em;
}

.bs-footer-star{
  font-size:16px;
  color:var(--gold-light);
  opacity:.75;
}

@media(max-width:900px){
  .bs-footer{
    padding:56px 28px 32px;
  }

  .bs-footer-grid{
    grid-template-columns:1fr 1fr;
    gap:48px 36px;
  }
}

@media(max-width:600px){
  .bs-footer-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .bs-footer-info{
    margin-top:36px;
  }

  .bs-footer-link,
  .bs-footer-text,
  .bs-footer-contact-link{
    font-size:15px;
  }
}