:root {
  --bm-dark: #111111;
  --bm-dark-2: #1b1b1b;
  --bm-light: #ffffff;
  --bm-gray: #f4f4f4;
  --bm-text: #2a2a2a;
  --bm-accent: #d19a2a;
  --bm-accent-hover: #b9851e;
  --bm-border: #dddddd;
  --bm-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --bm-radius: 14px;
  --bm-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--bm-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.bm-container {
  width: min(var(--bm-width), 92%);
  margin: 0 auto;
}

.bm-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.55)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: var(--bm-light);
}

.bm-overlay {
  position: absolute;
  inset: 0;
}

.bm-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 760px;
}

.bm-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #e4e4e4;
}

.bm-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--bm-light);
}

.bm-subtext {
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 28px;
  color: #f2f2f2;
}

.bm-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bm-btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.bm-btn-primary {
  background: var(--bm-accent);
  color: #111;
}

.bm-btn-primary:hover {
  background: var(--bm-accent-hover);
}

.bm-btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.bm-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.bm-services,
.bm-about-strip,
.bm-why,
.bm-cta {
  padding: 80px 0;
}

.bm-services,
.bm-why {
  background: var(--bm-gray);
}

.bm-section-title {
  text-align: center;
  margin-bottom: 36px;
}

.bm-section-title h2,
.bm-about-text h2,
.bm-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--bm-dark);
}

.bm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bm-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.bm-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--bm-radius);
  box-shadow: var(--bm-shadow);
  border: 1px solid var(--bm-border);
}

.bm-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--bm-dark);
}

.bm-about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.bm-about-text {
  max-width: 850px;
}

.bm-mini-card {
  background: #fff;
  border: 1px solid var(--bm-border);
  border-radius: var(--bm-radius);
  padding: 22px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--bm-shadow);
}

.bm-cta {
  background: var(--bm-dark);
  color: #fff;
  text-align: center;
}

.bm-cta h2,
.bm-cta p {
  color: #fff;
}

.bm-cta .bm-btn-primary {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .bm-grid,
  .bm-grid-4 {
    grid-template-columns: 1fr;
  }

  .bm-hero {
    min-height: 70vh;
  }

  .bm-services,
  .bm-about-strip,
  .bm-why,
  .bm-cta {
    padding: 60px 0;
  }