.hero h1 {
  line-height: 1.1;
}

.hero-subtitle {
  line-height: 1.5;
}

.about-main p {
  color: var(--color-text-muted);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2rem;
}

.section-subtitle {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.btbt-grid {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .booking-layout,
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}