.hero {
  min-height: 620px;
  background: url('/assets/img/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 90px 7% 150px;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,30,18,.88), rgba(0,0,0,.42), rgba(0,0,0,.12));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-small {
  color: #2fbd72;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 5px;
  font-size: 13px;
}

.hero h1 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1;
  margin: 18px 0 10px;
  font-weight: 500;
}

.hero h3 {
  color: #31ad69;
  font-size: 30px;
  margin-bottom: 18px;
}

.hero p {
  color: #fff;
  line-height: 1.8;
  max-width: 600px;
  font-size: 17px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.search-panel {
  width: min(1100px, 86%);
  margin: -70px auto 55px;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr auto auto 1.7fr;
  gap: 24px;
  align-items: center;
}

body.dark .search-panel {
  background: #111;
  color: #fff;
}

.search-title {
  font-size: 20px;
  font-weight: 900;
}

.search-panel label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  white-space: nowrap;
}

.search-panel input[type="radio"] {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
}

.search-panel form {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
}

.search-panel input[type="text"] {
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.search-panel button {
  border: none;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
