@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ===========================
   DESIGN SYSTEM
=========================== */
:root {
  --gold: #C9A96E;
  --gold-hover: #b38f58;
  --gold-light: rgba(201,169,110,0.15);
  --dark:        #0c0c0c;   /* body bg */
  --dark-2:      #131210;   /* features section — almost-black warm */
  --dark-3:      #1c1916;   /* form bg — warm dark brown */
  --section-b:   #0f0e0c;   /* intro / gallery — slightly off-black */
  --section-c:   #17140f;   /* location section — warm charcoal */
  --section-d:   #0b0d10;   /* investment — cool-dark contrast */
  --section-e:   #111008;   /* booking — deepest warm */
  --cream: #f5f0eb;
  --nav-bg-light: rgba(245, 241, 235, 0.97); /* navbar default — cream-white */
  --text: #e8e2d9;
  --text-muted: #888;
  --nav-height: 80px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  transition: var(--transition);
}

/* Pill container — transparent over hero */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  padding: 0 2rem;
  height: 56px;
  border-radius: 100px;
  background: transparent;
  transition: var(--transition);
}

/* Scrolled state — frosted white glass */
.navbar.scrolled .navbar-inner {
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff; /* white over transparent hero */
  transition: color 0.4s ease;
}

.brand span { color: var(--gold); }

/* When scrolled, brand text goes dark against white glass */
.navbar.scrolled .brand { color: #1a1208; }
.navbar.scrolled .brand span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85); /* white over hero */
  transition: color 0.3s ease;
}

/* Nav links go dark when scrolled over white glass */
.navbar.scrolled .nav-links a { color: #3a3025; }

.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a:hover { color: var(--gold-hover); }

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  font-weight: 500 !important;
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-hover) !important;
  color: #000 !important;
  transform: scale(1.03);
}

/* Mobile nav toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: #fff; /* white bars over transparent hero */
  transition: var(--transition);
}

/* Flip dark when scrolled over white glass */
.navbar.scrolled .hamburger span { background: #1a1208; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 10s ease forwards;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(12,12,12,0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #000;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-light);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ===========================
   DIVIDER
=========================== */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

/* ===========================
   INTRO SECTION
=========================== */
.intro-section {
  padding: 4.8rem 2rem; /* was 8rem — reduced 40% */
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Intro wrapper gets its own subtle bg */
#property {
  background: var(--section-b);
}

.intro-section .label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.intro-section h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: #fff;
  margin-bottom: 2rem;
  font-style: italic;
}

.intro-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.intro-image-wrap {
  position: relative;
}

.intro-image-wrap img {
  height: 600px;
  object-fit: cover;
  border-radius: 2px;
}

.intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #F8F4EE;
  color: #1a140a;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.intro-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.intro-badge .txt { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; color: #3a3025; }

/* Cream button variant — for use on dark sections */
.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F8F4EE;
  color: #1a140a;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(201,169,110,0.35);
  cursor: pointer;
  transition: var(--transition);
}

.btn-cream:hover {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* ===========================
   FULL-WIDTH SECTION DARK
=========================== */
.section-dark {
  background: var(--dark-2); /* warm almost-black */
  padding: 4.8rem 2rem; /* was 8rem */
}

/* ===========================
   RESIDENCE SECTION (cream light)
=========================== */
.residence-section {
  background: #F8F4EE;
  padding: 2rem 2rem 1.5rem; /* was 3.5rem */
}

.residence-header {
  max-width: 780px;
  margin: 0 auto 2.5rem; /* was 5rem */
  text-align: center;
}

.res-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem; /* was 1.2rem */
}

.res-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); /* was 3.8rem */
  color: #1a140a;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.75rem; /* was 1.5rem */
}

.res-title em {
  font-style: italic;
  color: var(--gold);
}

.res-sub {
  font-size: 1.05rem;
  color: #7a7065;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

/* Highlighted feature cards */
.res-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; /* was 1.5rem */
  max-width: 1100px;
  margin: 0 auto 1.5rem; /* was 4rem */
}

.res-card {
  background: #fff;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 10px;
  padding: 1.2rem 1.5rem; /* was 2rem 2rem 1.8rem */
  transition: all 0.35s ease;
}

.res-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.res-card svg {
  width: 26px; /* was 32px */
  height: 26px;
  color: var(--gold);
  margin-bottom: 0.6rem; /* was 1.2rem */
  display: block;
}

.res-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a140a;
  margin-bottom: 0.4rem;
}

.res-card p {
  font-size: 0.88rem;
  color: #9a8f84;
  line-height: 1.4;
}

/* Amenity marquee scroll */
.amenity-marquee-wrap {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

/* Fade edges */
.amenity-marquee-wrap::before,
.amenity-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.amenity-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #F8F4EE, transparent);
}
.amenity-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #F8F4EE, transparent);
}

.amenity-marquee { overflow: hidden; }

.amenity-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: amenityScroll 35s linear infinite;
}

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

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 100px;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  color: #3a3025;
  white-space: nowrap;
  font-weight: 500;
}

.amenity-tag svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .res-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .res-cards { grid-template-columns: 1fr; }
}

/* 4-card override for merged hospitality grid */
.res-cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .res-cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .res-cards-4 { grid-template-columns: 1fr; }
}

/* 5-card override */
.res-cards-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .res-cards-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .res-cards-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .res-cards-5 { grid-template-columns: 1fr; }
}


.section-center {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #fff;
  font-style: italic;
}

/* ===========================
   FEATURES GRID
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.feature-item {
  background: var(--dark-2);
  padding: 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: background 0.3s ease;
}

.feature-item:hover { background: var(--dark-3); }

.feature-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--gold);
  margin-top: 2px;
}

.feature-item span {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   HIGHLIGHT STRIP
=========================== */
.strip {
  background: #F8F4EE;
  padding: 1.5rem 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: stripScroll 20s linear infinite;
  white-space: nowrap;
}

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

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #3a3025;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strip-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ===========================
   GALLERY
=========================== */
/* Gallery sits on body bg (#0c0c0c) — already dark, fine as-is */
.gallery-section { padding: 2.5rem 2rem 3rem; max-width: 1400px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }

.gallery-item img, .gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }

/* Eliminate grain/aliasing artifact on downscaled thumbnails */
.gallery-item img {
  image-rendering: auto;
  transform: translateZ(0); /* force GPU compositing — removes noise layer */
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.25); }

/* ===========================
   LOCATION SECTION
=========================== */
.location-section {
  background: var(--section-c); /* warm charcoal — noticeably different from adjacent sections */
  padding: 8rem 2rem;
}

.location-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.location-points { margin-top: 2.5rem; }

.location-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.location-point:last-child { border-bottom: none; }

.point-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.point-text strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.25rem; }
.point-text p { color: var(--text-muted); font-size: 0.88rem; }

.location-image { border-radius: 2px; overflow: hidden; }
.location-image img { height: 550px; object-fit: cover; }

/* ===========================
   INVESTMENT
=========================== */
/* Investment wrapper gets a cool-dark shade to contrast the warm location section */
#investment {
  background: var(--section-d);
}
.investment-section { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }

.investment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.invest-card {
  border: 1px solid rgba(201,169,110,0.15);
  padding: 2.5rem;
  border-radius: 2px;
  transition: var(--transition);
}

.invest-card:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  transform: translateY(-4px);
}

.invest-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.invest-card h4 { font-size: 1.2rem; color: #fff; margin-bottom: 0.75rem; font-family: 'Jost', sans-serif; font-weight: 500; }
.invest-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Social proof line below gallery */
.gallery-social-proof {
  text-align: center;
  margin: 1.5rem auto 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-style: italic;
  opacity: 0.85;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

/* ===========================
   BOOKING / CONTACT
=========================== */
.booking-section {
  background: var(--section-e);
  padding: 2.4rem 2rem 3rem; /* was 3rem */
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.booking-info .label { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1rem; display: block; }
.booking-info h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: #fff; font-style: italic; margin-bottom: 1.5rem; }
.booking-info p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-line:hover { border-color: var(--gold); }

.contact-icon { width: 40px; height: 40px; background: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-value { font-size: 1rem; color: #fff; font-weight: 500; }

/* Quick Booking Card (replaces form) */
.quick-book-card {
  background: #0f1117;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.qb-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qb-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.qb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.qb-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 360px;
  margin: 0;
}

.qb-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.qb-perks span {
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  letter-spacing: 0.04em;
}

.qb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1.15rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.qb-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.7;
}

/* Gallery room labels */
.gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  border: 1px solid rgba(201,169,110,0.3);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0);
}



.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.urgency-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.5s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ===========================
   FINAL CTA BANNER
=========================== */
.cta-banner {
  position: relative;
  padding: 3rem 2rem;
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1208 50%, var(--dark) 100%);
}

.cta-banner-gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-banner h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; font-style: italic; margin-bottom: 1.5rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-banner .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: #050505;
  padding: 2.5rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #fff;
}

.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; max-width: 260px; }

.footer-links h4, .footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--text-muted); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

/* ===========================
   WHATSAPP FLOAT
=========================== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===========================
   MOBILE MENU
=========================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  inset-inline: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: rgba(255,255,255,0.8); padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .intro-section, .location-grid, .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .intro-image-wrap img { height: 350px; }
  .intro-badge { left: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .location-image img { height: 350px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .gallery-section { padding: 1.5rem 1rem 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 6px; }
  .gallery-item:first-child { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-ghost { text-align: center; justify-content: center; }
}
