* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Inter", sans-serif;
  background: #0b1117;
  color: #eaeaea;
}

.top {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #bfc6cc;
}

.hero-full {
  min-height: 90vh;
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.8)
  ),
  url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 14px;
}

.hero-inner p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: #cfd6db;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.section {
  padding: 90px 80px;
}

.section.dark {
  background: #05090d;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title.light {
  color: #eaeaea;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.room-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 12px;
}

.room-card h3 {
  font-family: "Playfair Display", serif;
}

.room-card p {
  font-size: 13px;
  color: #cfd6db;
}

.feature-card {
  background: #0f1720;
  padding: 26px;
  border-radius: 20px;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
}

.review {
  background: #0f1720;
  padding: 26px;
  border-radius: 18px;
  font-size: 14px;
}

.review span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #9aa5ae;
}

.cta {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1f2937, #020617);
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
}

button {
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: #e6eef5;
  color: #000;
}

.btn-outline {
  background: transparent;
  border: 1px solid #e6eef5;
  color: #e6eef5;
}

.footer {
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #9aa5ae;
}

@media (max-width: 900px) {
  .grid-3, .grid-2, .gallery {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 24px;
  }
}
