:root {
  color-scheme: dark;
  --bg: #080308;
  --panel: rgba(5, 4, 11, 0.9);
  --surface: rgba(255, 255, 255, 0.98);
  --text: #f8f5f0;
  --text-muted: #d5c7ba;
  --accent: #6e1f35;
  --accent-strong: #4a1020;
  --gold: #d9b274;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #090608 0%, #12060f 100%);
  color: var(--text);
}

body {
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 4, 9, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  flex: 1;
}

.site-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.24s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.button-primary,
.button-secondary {
  background: var(--accent);
  color: white;
}

.hero {
  position: relative;
  min-height: 88vh;
  background-image: linear-gradient(180deg, rgba(7, 5, 10, 0.82) 0%, rgba(7, 5, 10, 0.6) 100%), url("unnamed (12).jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem 3rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 8, 16, 0.12) 0%, rgba(5, 4, 11, 0.42) 60%);
  z-index: 0;
}

.hero-content,
.booking-panel,
.intro-section,
.section {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 820px;
}

.hero-subtitle {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-rating {
  margin-top: 1.6rem;
  font-size: 1.45rem;
  color: var(--gold);
}

.booking-panel {
  z-index: 3;
  margin-top: auto;
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.3rem;
  background: rgba(10, 8, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.booking-field input,
.booking-field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.booking-field input::placeholder,
.booking-field select::placeholder {
  color: var(--text-muted);
}

.intro-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 1rem;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.small-label {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.intro-rating {
  color: var(--gold);
  font-size: 1.15rem;
}

.intro-copy {
  margin: 0;
  font-size: 1.1rem;
  max-width: 720px;
  color: var(--text-muted);
}

.section {
  padding: 3rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.section-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.section h2,
.section h3 {
  margin: 0.25rem 0 0;
}

.section h2 {
  font-size: clamp(2rem, 2.4vw, 3rem);
  line-height: 1.05;
}

.section-link {
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.room-card,
.gallery-card {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 8, 15, 0.94);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  display: block;
}

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

.room-card-body {
  padding: 1.35rem;
}

.room-card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.room-card-body p {
  margin: 0;
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.gallery-card.large-card {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}


.amenities-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.amenity-item,
.contact-grid > div {
  padding: 1.75rem;
  border-radius: 24px;
  background: rgba(10, 8, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.amenity-item h3,
.contact-grid h3 {
  margin-top: 0;
}

.amenity-item p,
.contact-grid p {
  color: var(--text-muted);
}

.contact-section {
  padding-bottom: 4rem;
}

@media (max-width: 1024px) {
  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 76vh;
    padding-top: 3.5rem;
  }

  .booking-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-section,
  .amenities-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card.large-card {
    grid-column: span 2;
  }
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 720px) {
  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .brand-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.28rem;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 0.5rem;
    background: rgba(12, 10, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .header-actions {
    display: none;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

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

  .room-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
}
.site-footer {
    background-color: #111;
    color: #fff;
    padding: 60px 20px 20px 20px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.footer-brand h3, .footer-links h4, .footer-contact h4 {
    color: #dfa974;
    margin-bottom: 15px;
}

.footer-brand p, .footer-contact p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #dfa974;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #777;
    font-size: 0.85rem;
}