* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}



.hero {
  background: #f5f5f5;
  padding: 2rem 0;
}

.hero__inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero__text {
  max-width: 50%;
}

.hero__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
}

.hero__desc {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #dba75e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.promo {
  padding: 2rem 0;
}

.promo__inner {
  display: flex;
  gap: 1.5rem;
}

.promo__gallery {
  flex: 2;
}

.promo__img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.hero__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

.promo__cards {
  flex: 3;
  display: flex;
  gap: 1.5rem;
}

.card {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.card--yellow {
  background: #dba75e;
  color: #fff;
}

.card--dark {
  background: #4a4a4a;
  color: #fff;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card__btn {
  align-self: flex-end;
  text-decoration: none;
  font-size: 1.5rem;
  color: inherit;
}

.promo__cards .card:nth-child(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/building_process.webp') center/cover no-repeat, #dba75e;
  background-blend-mode: multiply;
  opacity: 0.8;
  z-index: 0;
}

.promo__cards .card:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/tower_crane.webp') center/cover no-repeat, #4a4a4a;
  background-blend-mode: multiply;
  opacity: 0.7;
  z-index: 0;
}

.promo__cards .card:nth-child(3)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/equipment.webp') center/cover no-repeat, #dba75e;
  background-blend-mode: multiply;
  opacity: 0.8;
  z-index: 0;
}

.promo__cards .card * {
  position: relative;
  z-index: 1;
}

.cta {
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 2rem 0;
}

.cta p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
}

.cta a {
  color: #dba75e;
  text-decoration: none;
}