:root {
  --black: #141414;
  --black-mid: #1e1e1e;
  --black-soft: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e0c070;
  --gold-dim: #8a6f2e;
  --white: #f5f5f3;
  --grey: #a0a0a0;
  --grey-light: #d0d0d0;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-w: 1140px;
  --section-pad: 90px 24px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.gold {
  color: var(--gold);
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--grey);
  max-width: 520px;
}
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 40px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 12px 26px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}
/* NAV */
nav.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 8px 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 64px;
  height: 64px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--grey-light);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black-mid);
  padding: 20px 24px;
  gap: 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-light);
  padding: 4px 0;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu.open {
  display: flex;
}
/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 20, 20, 0.97) 0%,
    rgba(20, 20, 20, 0.85) 50%,
    rgba(201, 168, 76, 0.08) 100%
  );
}
.hero-geo {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.07;
}
.hero-geo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    var(--gold) 0px,
    var(--gold) 1px,
    transparent 1px,
    transparent 40px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.hero-stat {
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding-top: 16px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.hero-card {
  background: var(--black-mid);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 32px;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 24px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price-row:last-of-type {
  border-bottom: none;
}
.price-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--grey-light);
}
.price-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-ac {
  background: var(--gold);
}
.dot-nonac {
  background: var(--grey);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-weight: 700;
}
.price-night {
  font-size: 11px;
  color: var(--grey);
}
.hero-card-cta {
  margin-top: 24px;
  width: 100%;
  text-align: center;
  justify-content: center;
}
/* ABOUT */
#about {
  padding: var(--section-pad);
  background: var(--black-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-feature {
  background: var(--black-soft);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  padding: 20px;
  transition: border-color 0.2s;
}
.about-feature:hover {
  border-color: rgba(201, 168, 76, 0.4);
}
.feature-icon {
  font-size: 22px;
  margin-bottom: 8px;
}
.feature-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
}
.about-image-stack {
  position: relative;
  height: 420px;
}
.about-img-main {
  width: 75%;
  height: 340px;
  background: var(--black-soft);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 13px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.about-img-accent {
  width: 55%;
  height: 200px;
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 13px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}
.img-placeholder-icon {
  font-size: 28px;
  opacity: 0.5;
}
.accent-label {
  position: absolute;
  bottom: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 2px;
}
/* ROOMS */
#rooms {
  padding: var(--section-pad);
  background: var(--black);
}
.rooms-header {
  text-align: center;
  margin-bottom: 60px;
}
.rooms-header .section-sub {
  margin: 0 auto;
}
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.room-card {
  background: var(--black-mid);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.room-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.5);
}
.room-card.featured {
  border-color: rgba(201, 168, 76, 0.4);
}
.room-img {
  width: 100%;
  height: 200px;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  object-fit: cover;
  object-position: center;
}
.room-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
}
.room-body {
  padding: 28px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.room-desc {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.6;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.amenity-tag {
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  color: var(--grey-light);
  padding: 4px 10px;
  border-radius: 2px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.room-price {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.room-price-label {
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}
/* GALLERY */
#gallery {
  padding: var(--section-pad);
  background: var(--black-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.gallery-header {
  margin-bottom: 40px;
}
.gallery-tabs {
  display: inline-flex;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 32px;
}
.gallery-tab {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: transparent;
  color: var(--grey);
  border: none;
  transition:
    background 0.2s,
    color 0.2s;
  font-family: var(--font-body);
}
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--gold);
  color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.g-item {
  aspect-ratio: 4/3;
  background: var(--black-soft);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s;
}
.g-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
}
.g-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.g-item:hover img {
  transform: scale(1.04);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.12);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  font-size: 24px;
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
}
.lightbox-close:hover {
  opacity: 1;
  color: var(--gold);
}
/* LOCATION */
#location {
  padding: var(--section-pad);
  background: var(--black);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-row:last-of-type {
  border-bottom: none;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #c9a84c;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 15px;
  color: var(--white);
}
.contact-value a {
  transition: color 0.2s;
}
.contact-value a:hover {
  color: var(--gold);
}
.map-container {
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  overflow: hidden;
  height: 380px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
}
.social-strip {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-light);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: #25d366;
  color: #25d366;
}
.social-btn.facebook:hover {
  background: rgba(24, 119, 242, 0.08);
  border-color: #1877f2;
  color: #1877f2;
}
.social-btn.instagram:hover {
  background: rgba(228, 64, 95, 0.08);
  border-color: #e4405f;
  color: #e4405f;
}
/* CTA */
#cta {
  background: linear-gradient(
    135deg,
    var(--black-mid) 0%,
    rgba(201, 168, 76, 0.07) 100%
  );
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 70px 24px;
  text-align: center;
}
#cta .section-sub {
  margin: 0 auto 32px;
  text-align: center;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* FOOTER */
footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 48px 24px 28px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-name span {
  color: var(--gold);
}
.footer-tagline {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--grey);
}
.footer-copy a {
  color: var(--gold);
}
/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.wa-float::after {
  content: "Chat with us";
  position: absolute;
  right: 68px;
  background: var(--black-mid);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.wa-float:hover::after {
  opacity: 1;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-stack {
    height: 280px;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .g-item:first-child {
    grid-column: span 2;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  :root {
    --section-pad: 60px 20px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .g-item:first-child {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
.social-btn.airbnb:hover {
  background: rgba(255, 90, 95, 0.08);
  border-color: #ff5a5f;
  color: #ff5a5f;
}
.social-btn.bookingcom:hover {
  background: rgba(0, 99, 191, 0.08);
  border-color: #0063bf;
  color: #0063bf;
}
.btn-airbnb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ff5a5f;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  border: 1.5px solid #ff5a5f;
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-airbnb:hover {
  background: #ff5a5f;
  color: #fff;
}
