* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1a24, #000);
  color: #fff;
  line-height: 1.6;
}

.blue {
  color: #1ea7ff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.brand img {
  height: 42px;
}

.menu {
  font-size: 26px;.ba-card.placeholder {
  background: #0f1b26;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  text-align: center;
  border: 1px dashed rgba(255,255,255,.25);
}

.ba-card .ph {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  padding: 14px;
  line-height: 1.4;
}
  cursor: pointer;
}

.hero {
  padding: 40px 20px 60px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
}

.tagline {
  margin-top: 10px;
  font-style: italic;
  opacity: 0.9;
}

.subtext {
  margin: 20px 0 30px;
  max-width: 520px;
  opacity: 0.85;
}

.btn {
  display: block;
  padding: 16px;
  margin-bottom: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.primary {
  background: #1ea7ff;
  color: #000;
}

.secondary {
  border: 1px solid #444;
  color: #fff;
}

.services {
  padding: 60px 20px;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.card {
  background: #0f0f0f;
  padding: 22px;
  border-radius: 10px;
  text-align: center;
}

.cta {
  padding: 60px 20px;
  text-align: center;
}

footer {
  padding: 30px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}
.pricing-grid ul {
  padding-left: 18px;
  text-align: left;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 10px 0;
}

.booking-form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.booking-form textarea {
  min-height: 90px;
  resize: vertical;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-card span {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(0,0,0,.7);
  color: #fff;
  padding: 4px 8px;
  font-size: .8rem;
  border-radius: 6px;
