.hero {
  padding: 0 20px;
}

.hero-panel {
  position: relative;
  min-height: 60vh;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(2.5rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  background: #111;
  color: var(--color-white);
}

.hero-panel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  z-index: 0;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.how-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .how-grid .how-visual {
    order: -1;
  }
}

.how-visual img {
  width: 100%;
  border-radius: 38px;
  object-fit: cover;
}

.services-home {
  background: var(--color-surface);
}

/* Home specialties: copy left + stacked industry cards right */
.home-specialties {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .home-specialties {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.home-specialties .section-head {
  margin-bottom: 0;
  max-width: none;
}

.home-specialties .industry-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.home-specialties .industry-panel {
  min-height: 240px;
}

.weather-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}

.weather-note a {
  color: var(--color-accent-text);
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 544px) {
  .hero-panel {
    border-radius: 20px;
    min-height: 52vh;
    padding: 2.5rem 1.25rem 2rem;
  }
}


.project-bullets {
  margin: 1rem 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--color-text);
}

.project-bullets li {
  margin-bottom: 0.35rem;
}
