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

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

:root {
  --luna-gold: #c4975a;
  --luna-stone: #8c7b6a;
  --luna-night: #1e1a16;
  --luna-parchment: #f7f3ee;
  --luna-warm: #ede6da;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --content: 840px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--luna-parchment);
  color: var(--luna-night);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site { min-height: 100vh; }

/* ── Header ── */

.header {
  background: var(--luna-night);
  padding: 16px 32px 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

.wordmark {
  text-align: center;
  padding: 16px 0 14px;
  border-bottom: 0.5px solid rgba(196, 151, 90, 0.3);
}

.wordmark-main {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #f7f3ee;
  text-transform: uppercase;
}

.wordmark-sub {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--luna-gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.wordmark-link {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(247, 243, 238, 0.45);
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s;
}

.wordmark-link:hover { color: var(--luna-gold); }

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 2px;
}

.nav-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
  padding: 12px 12px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-btn:hover { color: rgba(247, 243, 238, 0.85); }
.nav-btn.active { color: var(--luna-gold); border-bottom-color: var(--luna-gold); }

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 48px 32px 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 26, 22, 0.2) 0%, rgba(30, 26, 22, 0.82) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content);
  margin: 0 auto;
  width: 100%;
  color: #f7f3ee;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--luna-gold);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  max-width: 14ch;
}

.hero-title em { font-style: italic; }

.hero-sub {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 48ch;
  opacity: 0.9;
}

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

.hero-btn {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}

.hero-btn:hover { opacity: 0.9; }
.hero-btn-gold { background: var(--luna-gold); color: var(--luna-night); }
.hero-btn-ghost {
  background: transparent;
  color: #f7f3ee;
  border: 0.5px solid rgba(247, 243, 238, 0.45);
}

/* ── Stats bar ── */

.stats-bar {
  background: var(--luna-night);
  border-bottom: 0.5px solid rgba(196, 151, 90, 0.2);
}

.stats-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(196, 151, 90, 0.15);
}

.stat {
  background: var(--luna-night);
  padding: 22px 16px;
  text-align: center;
}

.stat b {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--luna-gold);
  display: block;
  line-height: 1;
}

.stat span {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
  margin-top: 6px;
  display: block;
}

/* ── Content ── */

.content {
  padding: 48px 32px 56px;
  max-width: var(--content);
  margin: 0 auto;
}

.tab-panel { display: none; animation: fadeIn 0.35s ease; }
.tab-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--luna-gold);
  margin-bottom: 12px;
}

.tab-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.tab-title em { font-style: italic; font-weight: 300; }

.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #3d3530;
  margin-bottom: 16px;
}

.divider {
  width: 40px;
  height: 0.5px;
  background: var(--luna-gold);
  margin: 28px 0;
}

.divider-center { margin-left: auto; margin-right: auto; }

/* ── Photo banner (full bleed) ── */

.photo-banner {
  margin: 32px calc(-1 * min(32px, 5vw));
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  position: relative;
}

.photo-banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(30, 26, 22, 0.75));
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.85);
}

/* ── Photo amenity cards ── */

.photo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.photo-card {
  border-radius: 6px;
  overflow: hidden;
  border: 0.5px solid rgba(140, 123, 106, 0.2);
  background: var(--luna-warm);
}

.photo-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.photo-card-body { padding: 18px 20px; }

.photo-card-num {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--luna-gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.photo-card-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 8px;
}

.photo-card-body p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--luna-stone);
}

/* ── Feature grid ── */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.feature-card {
  background: var(--luna-warm);
  border: 0.5px solid rgba(140, 123, 106, 0.25);
  border-radius: 6px;
  padding: 18px 20px;
}

.feature-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--luna-stone);
  margin-bottom: 8px;
}

.feature-detail {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

/* ── Amenity list ── */

.amenity-list { list-style: none; margin-top: 20px; }

.amenity-list li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: #3d3530;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(140, 123, 106, 0.2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.amenity-list li:last-child { border-bottom: none; }

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--luna-gold);
  margin-top: 10px;
  flex-shrink: 0;
}

/* ── Suite cards ── */

.suite-section { margin-top: 32px; }

.suite-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(140, 123, 106, 0.25);
}

.suite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.suite-card {
  background: var(--luna-warm);
  border: 0.5px solid rgba(140, 123, 106, 0.2);
  border-radius: 6px;
  padding: 16px 18px;
}

.suite-card .num {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--luna-gold);
  margin-bottom: 6px;
}

.suite-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 6px;
}

.suite-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--luna-stone);
}

/* ── Villa showcase ── */

.villa-showcase {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.villa-block {
  border: 0.5px solid rgba(140, 123, 106, 0.25);
  border-radius: 6px;
  overflow: hidden;
  background: var(--luna-warm);
}

.villa-block-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.villa-block-body { padding: 24px 26px; }

.villa-block-icon {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--luna-gold);
  margin-bottom: 10px;
}

.villa-block-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.villa-block-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--luna-stone);
  margin: 14px 0 16px;
}

.villa-block-stats b {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--luna-night);
  display: block;
}

.villa-link {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--luna-gold);
}

.villa-link:hover { text-decoration: underline; }

/* ── Experiences ── */

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.experience-item {
  background: var(--luna-warm);
  border: 0.5px solid rgba(140, 123, 106, 0.2);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
}

.experience-item span {
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}

.experience-item p {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.35;
}

/* ── Quote ── */

.quote-block {
  border-left: 2px solid var(--luna-gold);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--luna-night);
}

.quote-block cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--luna-stone);
  margin-top: 10px;
  display: block;
}

/* ── Gallery masonry ── */

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.gallery-masonry img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  cursor: zoom-in;
  transition: opacity 0.2s;
}

.gallery-masonry img:hover { opacity: 0.9; }
.gallery-masonry .tall { grid-row: span 2; height: 100%; min-height: 280px; }
.gallery-masonry .wide { grid-column: span 2; height: 180px; }
.gallery-masonry .sq { height: 180px; }

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gallery-filter {
  background: var(--luna-warm);
  border: 0.5px solid rgba(140, 123, 106, 0.35);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  cursor: pointer;
  color: var(--luna-stone);
}

.gallery-filter.active {
  background: var(--luna-night);
  color: var(--luna-parchment);
  border-color: var(--luna-night);
}

/* ── CTA, forms, name-box ── */

.cta-block {
  background: var(--luna-night);
  border-radius: 6px;
  padding: 28px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: #f7f3ee;
  font-style: italic;
}

.cta-btn {
  background: var(--luna-gold);
  color: var(--luna-night);
  border: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
}

.name-box {
  background: var(--luna-warm);
  border: 0.5px solid rgba(196, 151, 90, 0.4);
  border-left: 3px solid var(--luna-gold);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin-top: 28px;
}

.name-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  margin-bottom: 6px;
}

.name-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--luna-stone);
  line-height: 1.7;
}

.deposit-form { margin-top: 28px; }
.form-row { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--luna-stone);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--luna-warm);
  border: 0.5px solid rgba(140, 123, 106, 0.35);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  resize: vertical;
}

.form-input:focus { outline: none; border-color: var(--luna-gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.submit-btn {
  background: var(--luna-night);
  color: var(--luna-parchment);
  border: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}

.policy-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--luna-stone);
  line-height: 1.7;
  margin-top: 16px;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.info-card {
  background: var(--luna-warm);
  border: 0.5px solid rgba(140, 123, 106, 0.2);
  border-radius: 6px;
  padding: 18px 20px;
}

.info-card h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--luna-stone);
  margin-bottom: 8px;
}

.info-card p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.45;
}

/* ── Booking ── */

.booking-widget {
  margin-top: 24px;
  background: #fff;
  border: 0.5px solid rgba(140, 123, 106, 0.25);
  border-radius: 6px;
  overflow: hidden;
}

.booking-widget iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

.villa-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.villa-pick {
  background: var(--luna-warm);
  border: 0.5px solid rgba(140, 123, 106, 0.35);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 3px;
  cursor: pointer;
  color: var(--luna-stone);
}

.villa-pick.active {
  background: var(--luna-night);
  color: var(--luna-parchment);
  border-color: var(--luna-night);
}

/* ── Lightbox ── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 26, 22, 0.94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--luna-parchment);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--luna-parchment);
  font-size: 36px;
  cursor: pointer;
  padding: 20px;
  opacity: 0.7;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

/* ── Footer & WA ── */

.footer {
  background: var(--luna-night);
  padding: 40px 32px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f7f3ee;
  margin-bottom: 8px;
}

.footer p {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.4);
  line-height: 2.2;
}

.footer a { color: var(--luna-gold); }

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: #25d366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

/* ── Responsive ── */

@media (max-width: 720px) {
  .header, .hero, .content { padding-left: 20px; padding-right: 20px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .photo-cards, .feature-grid, .suite-grid, .form-grid, .info-cards { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .wide { grid-column: span 1; }
  .hero { min-height: 60vh; }
  .photo-banner { margin-left: -20px; margin-right: -20px; }
}