.photo-gallery {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(214, 178, 94, .18);
}

.photo-gallery figure {
  position: relative;
  min-height: 540px;
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  background: #0b0907;
}

.photo-gallery figure:nth-child(3n) {
  grid-column: span 12;
  min-height: 660px;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.4rem;
  background: rgba(6, 5, 4, .82);
  color: #fff7e8;
  font-weight: 700;
}

.social-links-body {
  min-height: 100svh;
  background: #080706;
}

.social-links-page {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 2rem 1rem;
}

.social-links-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.social-links-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-links-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6, 5, 4, .82);
}

.social-links-shell {
  width: min(100%, 620px);
  display: grid;
  gap: 1rem;
  text-align: center;
}

.social-links-logo {
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto .5rem;
}

.social-links-shell h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: .96;
}

.social-links-shell > p:not(.kicker):not(.folio) {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 247, 232, .8);
  line-height: 1.65;
}

.social-links-list {
  display: grid;
  gap: .65rem;
  margin-top: .8rem;
}

.social-links-list a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(214, 178, 94, .38);
  background: rgba(8, 7, 6, .86);
  color: #fff7e8;
  font-weight: 800;
  text-decoration: none;
}

.social-links-list a::after {
  content: ">";
  color: #d6b25e;
}

.social-links-list a:first-child {
  border-color: #d6b25e;
  background: #d6b25e;
  color: #080706;
}

.social-links-list a:first-child::after {
  color: #080706;
}

.social-links-hours {
  margin-top: .7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 178, 94, .28);
  color: rgba(255, 247, 232, .72);
  font-size: .82rem;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .photo-gallery figure,
  .photo-gallery figure:nth-child(3n) {
    min-height: 480px;
    grid-column: span 12;
  }

  .social-links-page {
    align-items: start;
    padding-top: 2rem;
  }

  .social-links-shell h1 {
    font-size: 3rem;
  }
}
