html {
  scroll-behavior: smooth;
}

.hero-bg {
  background: radial-gradient(circle at 50% 20%, rgba(201, 162, 75, 0.15), transparent 60%), #0d0d0f;
}

.service-card {
  background: #18181b;
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 75, 0.6);
}

.service-card-clickable {
  cursor: pointer;
}

#service-modal-grid .gallery-item {
  aspect-ratio: 4 / 3;
}

.gallery-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #18181b;
  border: 1px solid rgba(201, 162, 75, 0.15);
}

.gallery-item img,
.gallery-item iframe,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Best-effort deterrent against casual saving of photos/videos/audio.
   Note: this cannot make downloading impossible (any browser that can display
   or play a file has already received it), but it removes the easy/obvious
   ways: right-click "Save As", the native video/audio download button, and
   drag-to-desktop for images. */
.gallery-item img,
.team-photo,
.no-download {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.gallery-item.audio-item {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  gap: 0.5rem;
}

.gallery-item.audio-item audio {
  width: 100%;
}

.media-type-badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  background: rgba(13, 13, 15, 0.8);
  color: #c9a24b;
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.tab-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  background: #18181b;
  border: 1px solid rgba(201, 162, 75, 0.2);
  color: #a1a1aa;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab-btn.active {
  background: #c9a24b;
  color: #0d0d0f;
  border-color: #c9a24b;
}

.enquiry-card {
  background: #18181b;
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.status-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.status-new { background: #c9a24b; color: #0d0d0f; }
.status-contacted { background: #3b82f6; color: white; }
.status-resolved { background: #22c55e; color: white; }
