:root {
  --bg-main: #0f1720;
  --bg-soft: #f5f1ea;
  --bg-dark: #121212;
  --ink: #151515;
  --ink-soft: #d9d6d0;
  --gold: #c39a63;
  --gold-deep: #9f7441;
  --white: #ffffff;
  --container: 1120px;
  --radius: 18px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #faf7f1 0%, #f5f1ea 60%, #ece6dc 100%);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(100% - 2.25rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.nav-toggle span:nth-child(1) { top: 0px; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-toggle.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  width: clamp(130px, 12vw, 190px);
  padding-block: 0.2rem;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a.active {
  opacity: 1;
  color: #f6d4a2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--gold);
  color: #17120b;
  font-weight: 700;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #d0a770;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark-outline {
  background: transparent;
  color: #121212;
  border-color: rgba(18, 18, 18, 0.55);
}

.btn-dark-outline:hover {
  background: rgba(18, 18, 18, 0.08);
}

.btn-nav {
  font-size: 0.92rem;
  padding: 0.68rem 1.05rem;
}

.hero {
  position: relative;
  min-height: min(80vh, 720px);
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at 18% 22%, rgba(195, 154, 99, 0.55), transparent 42%),
    radial-gradient(circle at 82% 90%, rgba(21, 36, 53, 0.65), transparent 46%),
    url("img/res/3.jpg") center / cover no-repeat,
    linear-gradient(140deg, #0f1c2a 0%, #16283c 45%, #0a121b 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: clamp(5rem, 11vh, 7rem);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.11rem;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-top: 0.55rem;
}

.hero p {
  max-width: 62ch;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #0f2717;
}

.btn-whatsapp:hover {
  background: #3bde79;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.64) 100%),
    radial-gradient(circle at 20% 20%, rgba(195, 154, 99, 0.4), transparent 40%),
    url("img/res/2.jpg") center / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  margin-top: 0.45rem;
}

.page-hero p {
  max-width: 70ch;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section-light {
  background: linear-gradient(180deg, #f8f4ed 0%, #f2ece2 100%);
}

.section-dark {
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 88% 6%, rgba(195, 154, 99, 0.2), transparent 36%),
    linear-gradient(165deg, #121212 0%, #1b1c1d 100%);
}

.section-accent {
  background: linear-gradient(145deg, #d9bf98 0%, #c9aa7f 100%);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.compact-head {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.slider-section {
  padding-top: 2.6rem;
}

.about-snapshot {
  padding-top: 2.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.about-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy p {
  margin-top: 0.7rem;
}

.quick-photos {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.quick-photos .gallery-card {
  min-height: 180px;
}

.amenity-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.amenity-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  background: #111;
  color: #f0d7af;
  padding: 0.45rem 0.9rem;
}

.image-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}

.slider-track {
  position: relative;
  min-height: clamp(260px, 45vw, 520px);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.slider-btn.prev {
  left: 0.7rem;
}

.slider-btn.next {
  right: 0.7rem;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.room-card {
  border-radius: var(--radius);
  padding: 1.35rem;
}

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow);
}

.card h3,
.room-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.service-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-size: 1.35rem;
}

.room-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.room-card span {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.03rem;
  border-radius: 999px;
  color: #edd7b4;
  background: rgba(195, 154, 99, 0.14);
}

.access-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

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

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 260px;
  display: block;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card.tall {
  min-height: 420px;
}

.room-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.95rem;
}

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

.access-list {
  list-style: none;
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.14);
  font-weight: 600;
}

.access-list li + li {
  margin-top: 0.75rem;
}

.cta {
  background: linear-gradient(180deg, #1e1f1f 0%, #111111 100%);
  color: var(--white);
}

.cta-box {
  text-align: center;
  max-width: 820px;
}

.cta-box h2 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

.cta-actions {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

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

.stat-card {
  background: rgba(15, 15, 15, 0.16);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat-card p {
  margin: 0.5rem 0 0;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.review-card p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.btn-review {
  margin-top: 0.9rem;
}

.review-card strong {
  display: inline-block;
  margin-top: 0.75rem;
  color: #6b4f2c;
}

.reviews-cta {
  margin-top: 1.1rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}

.faq-item p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.6rem;
  z-index: 120;
}

.fab {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.fab-whatsapp {
  background: #25d366;
  color: #0d2f1a;
}

.fab-route {
  background: #d1a66b;
  color: #1a1207;
}

.fab-call {
  background: #0d0d0d;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  z-index: 200;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  width: min(96vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-caption {
  color: #ececec;
  margin: 0.7rem 0 0;
  font-weight: 600;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: 1rem;
  top: 0.7rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 0.8rem;
}

.lightbox-next {
  right: 0.8rem;
}

.map-container {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.map-container iframe {
  width: 100%;
  filter: grayscale(0.2) contrast(1.1);
}

.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.78);
  padding-block: 1rem;
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80%);
    height: 100vh;
    background: #0a121b;
    display: flex;
    flex-direction: column;
    padding: 100px 2.5rem 2.5rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.6);
    z-index: 1050;
    visibility: hidden;
  }

  .site-nav.active {
    right: 0;
    visibility: visible;
  }

  .site-nav a {
    font-size: 1.25rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
  }

  .site-nav a.active {
    color: var(--gold);
  }

  .site-nav a.active::after {
    display: none;
  }

  .features-grid,
  .rooms-grid,
  .services-grid,
  .stats-grid,
  .about-grid,
  .quick-photos,
  .amenity-grid,
  .contact-grid,
  .two-col,
  .gallery-grid,
  .access-wrap {
    grid-template-columns: 1fr;
  }

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

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

  .nav-wrap {
    min-height: 72px;
  }
}

@media (max-width: 640px) {
  .btn-nav {
    display: none;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero {
    min-height: 72vh;
  }

  .card,
  .room-card {
    padding: 1rem;
  }

  .footer-wrap {
    flex-direction: column;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .floating-actions {
    right: 0.7rem;
    bottom: 0.7rem;
    left: auto;
    grid-template-columns: 1fr;
  }

  .fab {
    text-align: center;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
}
