.about-brand {
  display: inline-block;
  margin: 12px 0 4px;
  padding: 8px 13px;
  background: #111;
  color: var(--gold2);
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: .08em;
  box-shadow: 6px 6px 0 var(--gold);
}

.service-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 500px;
  padding: 20px;
  overflow: hidden;
}

.service-image {
  height: 280px;
  margin: -20px -20px 22px;
  overflow: hidden;
  background: #222;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.feature-card:hover .service-image img {
  transform: scale(1.045);
}

.contact-title {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold2);
}

.contact-card a:not(.whatsapp) {
  padding: 16px 0;
}

.contact-card small {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}

.contact-card strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 600;
  letter-spacing: .02em;
}

@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-image { height: 300px; }
}

@media (max-width: 580px) {
  .service-image { height: 220px; }
}
