html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26, 46, 36, 0.55) 0%,
    rgba(26, 46, 36, 0.75) 60%,
    rgba(26, 46, 36, 0.92) 100%
  );
}

.nav-scrolled {
  background-color: rgba(26, 46, 36, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pricing-table th,
.pricing-table td {
  vertical-align: top;
}

.pricing-tier-header {
  min-width: 7rem;
}

.pricing-tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pricing-tier-badge-a {
  background-color: #2d5a3d;
}

.pricing-tier-badge-b {
  background-color: #1a2e24;
}

.pricing-tier-badge-c {
  background-color: #8b7355;
}

.pricing-tier-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: #1a2e24;
}

.pricing-tier-sublabel {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.2;
  color: #6b6b6b;
  margin-top: 0.125rem;
}

.site-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.site-logo {
  display: block;
  height: 1.625rem;
  width: auto;
  max-height: 1.625rem;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 768px) {
  .site-logo {
    height: 1.75rem;
    max-height: 1.75rem;
  }
}

.footer-logo {
  display: block;
  height: 2.25rem;
  width: auto;
  max-height: 2.25rem;
  object-fit: contain;
  object-position: left center;
}

.pricing-table tbody tr:hover {
  background-color: rgba(245, 240, 232, 0.6);
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

#map {
  min-height: 420px;
  z-index: 0;
}

.map-marker {
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.map-marker-quarry {
  background: #2d5a3d;
}

.map-marker-yard {
  background: #8b7355;
}

.map-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.map-control-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a2e24;
  background: #fff;
  border: 1px solid rgba(107, 107, 107, 0.25);
  border-radius: 0.5rem;
  padding: 0.5rem 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.map-control-btn:hover {
  background: #f5f0e8;
  border-color: rgba(45, 90, 61, 0.35);
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.section-divider {
  height: 4px;
  width: 64px;
  background: linear-gradient(90deg, #2d5a3d, #8b7355);
  border-radius: 2px;
}