.about-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 125px;
  gap: 12px;
}

.gallery-grid .g {
  grid-column: span 3 !important;
  grid-row: span 2 !important;
  border-radius: 4px;
}

.gallery-grid .g1,
.gallery-grid .g6,
.gallery-grid .g11,
.gallery-grid .g16 {
  grid-column: span 5 !important;
}

.gallery-grid .g3,
.gallery-grid .g5,
.gallery-grid .g10,
.gallery-grid .g17 {
  grid-column: span 4 !important;
}

.gallery-grid .g2,
.gallery-grid .g4,
.gallery-grid .g8,
.gallery-grid .g9,
.gallery-grid .g12,
.gallery-grid .g13,
.gallery-grid .g14,
.gallery-grid .g18,
.gallery-grid .g19,
.gallery-grid .g20 {
  grid-column: span 3 !important;
}

.gallery-grid .g21,
.gallery-grid .g22 {
  grid-column: span 3 !important;
}

.gallery-grid .g7,
.gallery-grid .g15 {
  grid-column: span 6 !important;
}

.slide-copy:nth-child(3) .button {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 181, 86, 0.55);
  background: transparent;
  color: var(--gold2);
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.slide-copy:nth-child(3) .button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, #e0bf61, #aa711c);
  content: "";
  transform: translateY(105%);
  transition: transform 0.3s;
}

.slide-copy:nth-child(3) .button:hover {
  border-color: var(--gold2);
  color: #120e08;
}

.slide-copy:nth-child(3) .button:hover::before {
  transform: none;
}

.contact.section {
  min-height: 0;
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact h2,
.ar .contact h2 {
  max-width: 520px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.35;
}

.contact {
  gap: 4vw;
  background:
    linear-gradient(118deg, rgba(8, 7, 5, 0.97), rgba(34, 19, 12, 0.96) 53%, rgba(60, 31, 18, 0.94)),
    #17100b;
}

.contact::before {
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(241, 207, 111, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 70%, rgba(241, 207, 111, 0.11) 0 1px, transparent 2px),
    linear-gradient(45deg, transparent 47%, rgba(221, 178, 73, 0.055) 48% 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(221, 178, 73, 0.055) 48% 52%, transparent 53%);
  background-size: 90px 90px, 130px 130px, 58px 58px, 58px 58px;
  opacity: 0.9;
}

.contact::after {
  width: 390px;
  height: 390px;
  inset-inline-start: -110px;
  bottom: -230px;
  border: 1px solid rgba(239, 204, 108, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(224, 181, 79, 0.025),
    0 0 0 65px rgba(224, 181, 79, 0.02),
    0 0 80px rgba(221, 169, 54, 0.08);
}

.contact-info {
  position: relative;
}

.contact-info::before {
  position: absolute;
  top: -26px;
  inset-inline-start: -18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(232, 195, 96, 0.18);
  transform: rotate(45deg);
  content: "";
}

.contact-info::after {
  position: absolute;
  top: -8px;
  inset-inline-start: 0;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(232, 195, 96, 0.14);
  transform: rotate(45deg);
  content: "";
}

.contact-detail small {
  font-size: 11px;
}

.contact-detail b {
  font-size: 16px;
  line-height: 1.45;
}

.map {
  height: 350px;
  border-color: rgba(224, 185, 84, 0.5);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .gallery-grid .g {
    grid-column: span 3 !important;
    grid-row: span 2 !important;
  }

  .gallery-grid .g7,
  .gallery-grid .g15 {
    grid-column: span 6 !important;
    grid-row: span 3 !important;
  }

  .site nav a {
    width: min(100%, 330px);
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
    transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
  }

  .site nav a:hover,
  .site nav a:focus-visible {
    border-color: rgba(224, 191, 97, 0.32);
    background: linear-gradient(90deg, rgba(224, 191, 97, 0.13), rgba(170, 113, 28, 0.05));
    color: var(--gold2);
    transform: translateY(-2px);
  }

  .site nav a:hover::after,
  .site nav a:focus-visible::after {
    inset-inline-end: 18px;
    inset-inline-start: 18px;
    bottom: 5px;
  }

  .contact.section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .map {
    height: 320px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 105px;
    gap: 8px;
  }

  .gallery-grid .g,
  .gallery-grid .g2 {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
  }

  .gallery-grid .g7,
  .gallery-grid .g15 {
    grid-column: span 2 !important;
    grid-row: span 3 !important;
  }

  .contact.section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .contact h2,
  .ar .contact h2 {
    font-size: 26px;
  }

  .contact-detail b {
    font-size: 14.5px;
  }
}
