* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #f9f7f4 0%, #f0ede8 100%);
  color: #222;
  line-height: 1.6;
  min-height: 100vh;
}
.wrap {
  max-width: 1200px;
  margin: 36px auto;
  padding: 28px;
}
.heroo {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.hero-media {
  flex: 1;
  min-width: 280px;
  height: 320px;
  border-radius: 14px;
  background-image: url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 42, 58, 0.55), transparent);
  border-radius: 14px;
}
.heroo-content {
  flex: 1.2;
  padding: 8px 18px;
}
.tag {
  font-family: "Playfair Display", serif;
  color: #b38e5d;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #14232d;
  margin-bottom: 12px;
}
p.lead {
  color: #565656;
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 18px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}
.feature {
  background: #faf9f7;
  padding: 14px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.feature i {
  color: #b38e5d;
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(179, 142, 93, 0.08);
}
.feature p {
  font-size: 0.95rem;
  color: #444;
}
.booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  width: 420px;
  max-width: 100%;
}
label {
  display: block;
  font-size: 0.85rem;
  color: #556;
  margin-bottom: 6px;
  font-weight: 600;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e8e6e3;
  background: #fbfbfb;
  font-size: 0.95rem;
  color: #222;
}
.row {
  display: flex;
  gap: 12px;
}
.row .col {
  flex: 1;
}
.small {
  font-size: 0.85rem;
  color: #777;
  margin-top: 6px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b38e5d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.cta:hover {
  transform: translateY(-4px);
}
.note {
  font-size: 0.9rem;
  color: #606;
  text-align: center;
  margin-top: 18px;
}
.info-panel {
  margin-top: 28px;
  background: linear-gradient(135deg, #1a2a3a 0%, #2d3e50 100%);
  color: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}
.info-panel h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.info-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 10px;
}
footer {
  margin-top: 34px;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .heroo {
    flex-direction: column;
  }
  .hero-media {
    height: 240px;
  }
  .booking-card {
    width: 100%;
  }
}
