:root {
  --bg: #0b0b0d;
  --bg-soft: #111115;
  --surface: #17171c;
  --surface-2: #1f1f26;
  --text: #f4f1e8;
  --text-muted: #c8c0ab;
  --gold: #c7a96b;
  --gold-soft: #e2c58c;
  --line: rgba(199, 169, 107, 0.24);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(199, 169, 107, 0.12), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(199, 169, 107, 0.08), transparent 30%),
    var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.navbar.scrolled {
  border-bottom-color: var(--line);
  background: rgba(9, 9, 11, 0.95);
}

.nav-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--gold-soft);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}

.nav-hub-link {
  background: var(--gold) !important;
  color: var(--bg) !important;
  padding: 0.5rem 0.9rem !important;
  border-radius: 999px !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nav-hub-link:hover {
  background: var(--gold-soft) !important;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  background-image:
    linear-gradient(to bottom, rgba(7, 7, 9, 0.35), rgba(7, 7, 9, 0.84)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(11, 11, 14, 0.9) 0%, rgba(11, 11, 14, 0.35) 55%, rgba(11, 11, 14, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: riseIn 1.2s ease-out both;
}

.hero-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  margin-bottom: 1.2rem;
}

.hero-subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 56ch;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #b99657, #e0c488);
  color: #241d10;
  text-decoration: none;
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(199, 169, 107, 0.2);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(199, 169, 107, 0.28);
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.room-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  animation: riseIn 0.9s ease forwards;
}

.room-card:nth-child(2) {
  animation-delay: 0.12s;
}

.room-card:nth-child(3) {
  animation-delay: 0.24s;
}

.room-body {
  padding: 1.3rem;
}

.room-body h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.price {
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  font-size: 1.2rem;
  font-weight: 700;
}

.price span {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.room-body ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-muted);
}

.amenities {
  background:
    linear-gradient(to right, rgba(199, 169, 107, 0.08), transparent 60%),
    var(--bg-soft);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.amenities-grid article {
  background: rgba(28, 28, 34, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
}

.amenities-grid h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold-soft);
}

.testimonials {
  background: var(--bg-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-grid blockquote {
  margin: 0;
  background: #141418;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  color: var(--text-muted);
}

.testimonial-grid cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--gold-soft);
  font-style: normal;
}

.slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.slides {
  position: relative;
  height: clamp(260px, 45vw, 520px);
}

.slide {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.slide.active {
  opacity: 1;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  background: rgba(15, 15, 18, 0.7);
  color: var(--gold-soft);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
}

.prev {
  left: 14px;
}

.next {
  right: 14px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: var(--gold-soft);
}

.booking {
  background:
    radial-gradient(circle at 80% 30%, rgba(199, 169, 107, 0.14), transparent 32%),
    var(--bg-soft);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

.booking-copy h2 {
  margin-bottom: 0.8rem;
}

.booking-copy p {
  color: var(--text-muted);
}

.booking-form {
  background: rgba(20, 20, 24, 0.95);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  display: grid;
  gap: 0.7rem;
}

.booking-form label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-form input,
.booking-form select {
  background: #101015;
  color: var(--text);
  border: 1px solid #35353f;
  border-radius: 9px;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(199, 169, 107, 0.2);
}

.form-message {
  margin: 0.3rem 0 0;
  min-height: 1.2rem;
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  color: var(--text-muted);
  text-align: center;
}

@keyframes riseIn {
  from {
    transform: translateY(18px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .room-grid,
  .amenities-grid,
  .testimonial-grid,
  .booking-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    position: absolute;
    right: 4%;
    top: 76px;
    width: min(300px, 92vw);
    background: rgba(10, 10, 12, 0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 680px) {
  .room-grid,
  .amenities-grid,
  .testimonial-grid,
  .booking-wrap {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section {
    padding: 4.4rem 0;
  }
}
