.hero {
  grid-template-columns: minmax(520px, 1.12fr) minmax(270px, .6fr) minmax(410px, .82fr);
  gap: clamp(16px, 1.8vw, 34px);
  padding-inline: clamp(40px, 5vw, 92px);
}

.hero-copy,
.route-card {
  position: relative;
  z-index: 2;
}

.hero-illustration-wrap {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 115%;
  margin-left: -15%;
  pointer-events: none;
}

.hero-illustration-wrap picture { display: block; }

.hero-illustration {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 24px rgba(43, 32, 10, .18));
}

.route-card {
  width: 100%;
  background: rgba(255, 255, 255, .97);
}

@media (max-width: 1400px) and (min-width: 961px) {
  .hero {
    grid-template-columns: minmax(440px, 1.05fr) minmax(225px, .52fr) minmax(360px, .78fr);
    gap: 14px;
    padding-inline: 38px;
  }
  .hero-illustration-wrap { width: 108%; margin-left: -8%; }
  .route-card { padding: 24px; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-inline: 24px; }
  .hero-illustration-wrap { width: min(92%, 660px); margin: -8px auto 4px; }
  .route-card { width: min(100%, 620px); margin: 0 auto; }
}

@media (max-width: 650px) {
  .hero { padding-inline: 20px; }
  .hero-illustration-wrap { width: 105%; margin: -6px -2.5% 0; }
  .hero-illustration { filter: drop-shadow(0 14px 15px rgba(43, 32, 10, .16)); }
}

.coordinate-block { margin-top: 14px; }
.coordinate-block > label { margin-bottom: 8px; }
.coordinate-block small { display: block; margin-top: 7px; color: #77736b; font-size: 10px; line-height: 1.45; }

.spk-options {
  display: grid;
  gap: 8px;
  max-height: 310px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #d8d3ca;
  background: #fbfaf7;
}

.spk-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid #ded9d0;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}

.spk-choice:hover { border-color: #ffbd00; }
.spk-choice:has(input:checked) { border-color: #ff5b18; background: #fff8e6; }
.spk-choice input { flex: 0 0 auto; width: 20px; height: 20px; margin: 2px 0 0; accent-color: #ff5b18; }
.spk-choice span { display: grid; gap: 4px; min-width: 0; }
.spk-choice strong { color: #171717; font-size: 14px; line-height: 1.35; }
.spk-choice small { color: #6f6a61; font-size: 11px; line-height: 1.4; }
.spk-empty { display: grid; gap: 5px; padding: 18px; color: #6f6a61; text-align: center; }
.spk-empty strong { color: #171717; }

.save-profile {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #d8d3ca;
  background: #fffaf0;
  cursor: pointer;
}

.save-profile input { flex: 0 0 auto; width: 19px; height: 19px; margin: 1px 0 0; accent-color: #ff5b18; }
.save-profile span { display: grid; gap: 3px; }
.save-profile strong { color: #171717; font-size: 13px; line-height: 1.35; }
.save-profile small { color: #6f6a61; font-size: 10px; font-weight: 500; line-height: 1.45; }
.saved-profile-note { margin-top: 8px; color: #26723b; font-size: 11px; font-weight: 700; }

@media (max-width: 650px) {
  .spk-options { max-height: 360px; padding: 7px; }
  .spk-choice { padding: 12px 10px; }
}
