/* FRONT PAGE */

/* HERO */
.hero {
  padding-top: 260px;
  padding-bottom: 80px;
}
.hero-logo {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 520px;
  font-family: 'Comfortaa', sans-serif;
  letter-spacing: 0.03em;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #d47801;
  font-size: 16px;
  letter-spacing: 0.14em;
}

.hero-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  margin: 0 0 24px;
  color: #c40014;
}

.hero-text {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 80px;
  word-spacing: 0.6em;
  color: #d47801;
}
.hero-text span {
  color: #b56e13;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.hero-helper {
  font-size: 13px;
  color: #4e5b30;
  opacity: 0.5;
  word-spacing: 0.4em;
}

/* BUTTON */
.btn-primary {
  background: #4e5b30;
  color: #e6a551;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  width: max-content;
  min-width: 250px;
}
.question-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  vertical-align: middle;
}

/* MAP */
.hero-map {
  display: flex;
  justify-content: center;
}

.map-placeholder {
  width: 420px;
  height: 260px;
  background: #e8bbbb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a1e1e;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .hero {
    padding: 48px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .hero-map {
    order: -1; /* карта сверху */
  }

  .hero-title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .map-placeholder {
    width: 100%;
    height: 200px;
  }
}
