:root {
  --bg: #f8f5ef;
  --surface: #ffffff;
  --surface-2: #f2ede3;
  --text: #1d2430;
  --muted: #5d6672;
  --primary: #1e3a5f;
  --primary-dark: #132741;
  --accent: #c8a96b;
  --border: rgba(29, 36, 48, 0.08);
  --shadow: 0 14px 40px rgba(24, 33, 48, 0.08);
  --radius: 22px;
  --container: 1180px;
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.soft-bg {
  background: var(--surface-2);
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1, h2, h3 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: rgba(30, 58, 95, 0.08);
  color: var(--primary);
}

.btn-secondary:hover {
  background: rgba(30, 58, 95, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 245, 239, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29, 36, 48, 0.05);
}

.header-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-top {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
}

.brand-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 34px;
  }

  .brand-main {
    font-size: 0.95rem;
  }

  .brand-top {
    font-size: 0.58rem;
  }
}
.desktop-nav {
  display: flex;
  gap: 28px;
}

.desktop-nav a {
  color: var(--text);
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-call {
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 18px;
  background: var(--bg);
  border-top: 1px solid rgba(29, 36, 48, 0.05);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-weight: 600;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 10s ease-in-out infinite alternate;
}
.hero-video,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 0;
}

.hero-bg.fallback-image {
  z-index: -1;
  opacity: 0;
}
.hero-bg {
  animation: heroZoom 10s ease-in-out infinite alternate;
}

.hero-video {
  animation: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 18, 28, 0.78), rgba(10, 18, 28, 0.35)),
    linear-gradient(to top, rgba(10, 18, 28, 0.45), rgba(10, 18, 28, 0.1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
  padding: 40px 0;
}

.hero .eyebrow {
  color: #e7c98d;
}

.hero h1,
.hero .hero-text {
  color: #fff;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-top: 18px;
  max-width: 620px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.stack-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 480px;
  object-fit: cover;
}

.stack-small {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: min(38%, 240px);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 6px solid var(--bg);
}

.content-block p + p {
  margin-top: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(24, 33, 48, 0.04);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.room-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(24, 33, 48, 0.12);
}

.room-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

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

.room-content {
  padding: 20px;
}

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

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}
.hidden-gallery-item {
  display: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.location-grid {
  align-items: stretch;
}
.location-qr-card {
  margin: 20px 0 24px;
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(24, 33, 48, 0.04);
}

.location-qr-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  padding: 6px;
}

.location-qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-qr-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.location-qr-text p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .location-qr-card {
    align-items: flex-start;
  }

  .location-qr-image {
    width: 100px;
    height: 100px;
  }

  .location-qr-text p {
    font-size: 0.9rem;
  }
}
.address-box {
  margin: 24px 0;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.address-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.map-wrap {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-card {
  background: linear-gradient(135deg, #fff 0%, #f3ede1 100%);
  border-radius: 28px;
  padding: 42px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-card p {
  max-width: 680px;
  margin: 0 auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.site-footer {
  background: #18222e;
  color: rgba(255,255,255,0.86);
  padding: 28px 0 100px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.8);
}

.mobile-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  border-top: 1px solid rgba(29, 36, 48, 0.08);
}

.sticky-btn {
  min-height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.call-btn {
  background: var(--primary);
  color: #fff;
}

.wa-btn {
  background: #e9f7ef;
  color: #17643d;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(100%, 1000px);
  max-height: 85vh;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-nav.prev {
  left: 16px;
}

.lightbox-nav.next {
  right: 16px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}
/* Reveal animations */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal.show,
.reveal-up.show,
.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 1024px) {
  .two-col,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .stack-small {
    right: 10px;
    bottom: 10px;
    width: min(42%, 220px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .location-actions {
    flex-direction: column;
  }
}
  .btn {
    width: 100%;
  }

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

  .stack-main {
    min-height: 340px;
  }

  .stack-small {
    width: 38%;
    border-width: 4px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .mobile-sticky-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .hero-bg,
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right {
    animation: none !important;
    transition: none !important;
  }
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.reviews-rating {
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  padding-right: 18px;
}

.rating-score {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.rating-stars,
.review-stars {
  color: #c8a96b;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.reviews-summary-text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.reviews-marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: reviewsScroll 45s linear infinite;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

.review-card {
  width: 320px;
  min-height: 240px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.review-card p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  flex-grow: 1;
}

.review-card h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  color: var(--text);
}

.review-card span {
  font-size: 0.88rem;
  color: var(--muted);
}

@keyframes reviewsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .reviews-rating {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 12px;
    width: 100%;
    align-items: flex-start;
  }

  .review-card {
    width: 280px;
    min-height: 230px;
    padding: 18px;
  }

  .reviews-marquee {
    animation-duration: 36s;
  }
}
.amenities-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(24, 33, 48, 0.04);
}

.amenity-chip span:first-child {
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .amenities-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .amenities-icons {
    grid-template-columns: 1fr;
  }

  .amenity-chip {
    padding: 14px 16px;
  }
}
.room-price {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.room-price strong {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 800;
}

.room-btn {
  width: 100%;
  justify-content: center;
}
.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.why-choose {
  background: linear-gradient(135deg, #ffffff, #f3ede1);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(29, 36, 48, 0.08);
  box-shadow: 0 10px 28px rgba(24, 33, 48, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(200,169,107,0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(24, 33, 48, 0.12);
}

.why-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
