﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #080808;
  --dark:    #111111;
  --surface: #181818;
  --gold:    #c4973a;
  --gold-lt: #e0b85a;
  --gold-dim: rgba(196,151,58,0.15);
  --cream:   #f0ead8;
  --muted:   #888880;
  --text-secondary: rgba(240,234,216,0.65);
  --text-muted:     rgba(240,234,216,0.4);
  --green:   #3a6b34;
  --white:   #ffffff;
  --wa-green: #25D366;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(8,8,8,0.85) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(196,151,58,0.15);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover { background: var(--gold-lt); }
}
.nav-cta:active { transform: scale(0.97); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.5rem; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: transform 0.3s var(--ease-out), opacity 0.2s ease; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}
.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.7);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}
.nav-mobile-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--dark);
  border-left: 1px solid rgba(196,151,58,0.15);
  padding: 5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-drawer);
  pointer-events: auto;
}
.nav-mobile-drawer.open {
  display: block;
  pointer-events: auto;
}
.nav-mobile-drawer.open .nav-mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-drawer.open .nav-mobile-panel {
  transform: translateX(0);
}
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(196,151,58,0.12);
}
.nav-mobile-links li a {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(196,151,58,0.08);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(240,234,216,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-links li a:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 2rem;
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-mobile-cta:hover { background: var(--gold-lt); }

/* ─── SKIP TO CONTENT ─── */
.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  z-index: 999;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* ─── FOCUS INDICATORS ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Suppress focus ring on mouse click, keep for keyboard */
.btn-primary:focus:not(:focus-visible),
.btn-ghost:focus:not(:focus-visible),
.nav-cta:focus:not(:focus-visible) { outline: none; }

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -0.8%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(8,8,8,0.97) 0%,
      rgba(8,8,8,0.82) 30%,
      rgba(8,8,8,0.45) 60%,
      rgba(8,8,8,0.15) 100%
    ),
    linear-gradient(
      to right,
      rgba(8,8,8,0.55) 0%,
      transparent 65%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  font-weight: 500;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(240,234,216,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
}
.btn-primary:active { transform: scale(0.97); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(240,234,216,0.35);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
}
.btn-ghost:active { transform: scale(0.97); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,234,216,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(196,151,58,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ─── SECTION COMMONS ─── */
section { position: relative; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
h1, h2, h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
}
h2 em { font-style: italic; color: var(--gold); }
p { color: var(--text-secondary); }

/* ─── STATS BAR ─── */
#stats {
  background: var(--surface);
  border-top: 1px solid rgba(196,151,58,0.2);
  border-bottom: 1px solid rgba(196,151,58,0.2);
  padding: 2.5rem 3rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { padding: 1rem; border-right: 1px solid rgba(196,151,58,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── ABOUT ─── */
#about {
  padding: 9rem 0;
  background: var(--black);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.8rem; }
.about-text p { margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.85; }
.about-text p:last-of-type { margin-bottom: 2rem; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}
.about-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.about-img-main img, .about-img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .about-img-main:hover img, .about-img-sm:hover img { transform: scale(1.04); }
}
.about-img-sm { aspect-ratio: 4/3; overflow: hidden; }

/* ─── PRESS STRIP ─── */
.press-strip {
  background: var(--dark);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  text-align: center;
}
.press-strip-text {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-strip-divider {
  color: var(--gold-dim);
  font-size: 0.8rem;
}
.press-strip-source {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.press-strip-link {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.press-strip-link:hover { opacity: 1; }

/* ─── POOL / EXTERIOR ─── */
#pool {
  padding: 0;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.pool-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pool-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pool-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
}
.pool-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  max-width: 560px;
}
.pool-content h2 { margin-bottom: 1.2rem; }
.pool-content p { margin-bottom: 2rem; font-size: 1.02rem; line-height: 1.85; }

/* ─── ROOMS ─── */
#rooms {
  padding: 9rem 0;
  background: var(--surface);
}
.rooms-header { margin-bottom: 4rem; }
.rooms-header h2 { margin-bottom: 1rem; }
.rooms-header p { max-width: 540px; font-size: 1.02rem; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.room-card { position: relative; overflow: hidden; cursor: pointer; }
.room-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .room-card:hover img { transform: scale(1.06); }
}
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.room-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.room-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.room-desc {
  font-size: 0.82rem;
  color: rgba(240,234,216,0.65);
  line-height: 1.5;
}
.room-card--full { grid-column: 1 / -1; }
.room-card--full img { aspect-ratio: 21/9; }

/* ─── PROPERTY CARDS ─── */
.property-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.property-card {
  background: var(--surface);
  border-top: 1px solid var(--gold-dim);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.3s ease;
}
.property-card:hover {
  border-top-color: var(--gold);
}
.property-card-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.property-card-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
  margin: 0;
}
.property-card-body {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 900px) and (min-width: 601px) {
  .property-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .property-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .property-card { border-top: 1px solid var(--gold-dim); }
}

/* ─── AMENITIES ─── */
#amenities {
  padding: 9rem 0;
  background: var(--black);
}
.amenities-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 3.5rem;
}
.amenities-header h2 { margin-bottom: 0; }

/* Amenities icon grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  gap: 0;
  border-top: 1px solid var(--gold-dim);
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 3rem 1.5rem;
  text-align: center;
}
.amenity-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.amenity-name {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── SAHARSH QUOTE ─── */
.saharsh-quote {
  position: relative;
}
.saharsh-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: 7rem;
  color: rgba(196,151,58,0.22);
  line-height: 0.75;
  margin-bottom: 0.5rem;
  font-style: normal;
}
.saharsh-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  color: rgba(240,234,216,0.88);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.saharsh-quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ─── GALLERY ─── */
#gallery {
  padding: 9rem 0;
  background: var(--surface);
}

/* Header row */
.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.gallery-header-row h2 { margin-bottom: 0; }
.gallery-photo-count {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 0.5rem;
}

/* Filter pills */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  background: none;
  border: 1px solid rgba(196,151,58,0.2);
  color: rgba(240,234,216,0.6);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  border-radius: 2rem;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
  touch-action: manipulation;
}
.gallery-filter-btn:hover { color: var(--cream); border-color: rgba(196,151,58,0.45); }
.gallery-filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(196,151,58,0.08);
}
.gallery-filter-btn:active { transform: scale(0.97); }
.filter-count {
  font-size: 0.62rem;
  opacity: 0.65;
  margin-left: 0.25rem;
}

/* Editorial grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.gallery-item[data-span="wide"] {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item[data-span="full"] {
  grid-column: span 3;
  aspect-ratio: 21/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out), filter 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img {
    transform: scale(1.04);
    filter: brightness(0.82);
  }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: border-color 0.25s var(--ease-out);
    pointer-events: none;
    z-index: 1;
  }
  .gallery-item:hover::after { border-color: rgba(196,151,58,0.5); }
}
.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Ghost tiles — fill orphan cells in filtered view */
.gallery-ghost {
  display: none;
  background: var(--surface);
  aspect-ratio: 4/3;
  pointer-events: none;
}

/* Collapse spans when filtered — uniform 3-col grid */
.gallery-grid.is-filtered .gallery-item,
.gallery-grid.is-filtered .gallery-item[data-span="wide"],
.gallery-grid.is-filtered .gallery-item[data-span="full"] {
  grid-column: span 1;
  aspect-ratio: 4/3;
}

/* ─── AVAILABILITY CALENDAR ─── */
#availability {
  padding: 9rem 0;
  background: var(--black);
  border-top: 1px solid rgba(196,151,58,0.12);
}
.cal-header { margin-bottom: 3.5rem; }
.cal-header h2 { margin-bottom: 0.6rem; }
.cal-header p { font-size: 1rem; color: var(--muted); }
.cal-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.cal-nav-btn {
  background: none;
  border: 1px solid rgba(196,151,58,0.3);
  color: var(--gold);
  font-size: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cal-nav-btn:hover { background: rgba(196,151,58,0.1); border-color: var(--gold); }
.cal-nav-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
  min-width: 180px;
}
.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.cal-month { }
.cal-month-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.cal-day-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 0.4rem 0;
}
.cal-grid-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(240,234,216,0.6);
  background: rgba(255,255,255,0.02);
  position: relative;
  cursor: default;
}
.cal-cell.empty { background: transparent; }
.cal-cell.today {
  color: var(--gold);
  font-weight: 600;
  border: 1px solid rgba(196,151,58,0.4);
}
.cal-cell.booked {
  background: rgba(180,60,60,0.18);
  color: rgba(240,234,216,0.25);
  text-decoration: line-through;
}
.cal-cell.available {
  background: rgba(58,107,52,0.15);
  color: rgba(240,234,216,0.8);
}
.cal-cell.past {
  color: rgba(240,234,216,0.2);
  background: transparent;
}
.cal-legend {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.cal-legend-dot.available { background: rgba(58,107,52,0.6); }
.cal-legend-dot.booked { background: rgba(180,60,60,0.45); }
.cal-status {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 2rem;
  min-height: 1.4rem;
}
.cal-status.loading { color: var(--gold); }
.cal-status.error { color: rgba(200,80,80,0.8); }
@media (max-width: 900px) {
  .cal-months { grid-template-columns: 1fr; }
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: 9rem 0;
  background: var(--surface);
  border-top: 1px solid rgba(196,151,58,0.12);
}
.testimonials-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.testimonials-inner .section-label { justify-content: center; }
.testimonials-inner .section-label::before { display: none; }
.testimonials-inner h2 { margin-bottom: 4rem; }
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.google-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.08em; }
.google-score {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.google-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.3rem;
}
/* Featured pull quote */
.testimonial-featured {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}
.testimonial-featured blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  color: rgba(240,234,216,0.92);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-featured cite {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.testimonial-featured cite .cite-meta {
  color: var(--muted);
  margin-left: 0.4rem;
}
/* Two secondary quotes */
.testimonial-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(196,151,58,0.15);
  padding-top: 3rem;
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.testimonial-secondary p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(240,234,216,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.testimonial-secondary-cite {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-secondary-source {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Airbnb reviews row */
.airbnb-reviews {
  max-width: 780px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--gold-dim);
  padding-top: 3rem;
  text-align: left;
}
.airbnb-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.airbnb-logo { flex-shrink: 0; }
.airbnb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.airbnb-review p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(240,234,216,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .airbnb-reviews-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── SAHARSH CTA ─── */
#saharsh {
  padding: 9rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.saharsh-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.saharsh-text .section-label { margin-bottom: 1.2rem; }
.saharsh-text h2 { margin-bottom: 1.5rem; }
.saharsh-text p { margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.85; }
.saharsh-text p:last-of-type { margin-bottom: 2rem; }
.saharsh-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.saharsh-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(196,151,58,0.1);
  font-size: 0.9rem;
  color: rgba(240,234,216,0.75);
}
.saharsh-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.saharsh-image {
  position: relative;
}
.saharsh-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.saharsh-image::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid rgba(196,151,58,0.25);
  z-index: -1;
}
.saharsh-bg-text {
  position: absolute;
  bottom: 3rem;
  right: -2rem;
  font-family: var(--font-serif);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(196,151,58,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ─── LOCATION ─── */
#location {
  padding: 9rem 0;
  background: var(--surface);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-text h2 { margin-bottom: 1.5rem; }
.location-text p { margin-bottom: 1.5rem; font-size: 1.02rem; line-height: 1.85; }
.location-map {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg) brightness(0.75);
}
.location-map::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196,151,58,0.25);
  pointer-events: none;
}

/* ─── CONTACT ─── */
#contact {
  padding: 9rem 0;
  background: var(--black);
  border-top: 1px solid rgba(196,151,58,0.12);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-text h2 { margin-bottom: 1.2rem; }
.contact-text p { margin-bottom: 2.5rem; font-size: 1.02rem; line-height: 1.85; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(196,151,58,0.18);
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s;
}
.contact-channel:hover {
  border-color: var(--gold);
  background: rgba(196,151,58,0.05);
}
.channel-icon { font-size: 1.3rem; flex-shrink: 0; }
.channel-info { flex: 1; }
.channel-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.channel-value { font-size: 0.95rem; color: rgba(240,234,216,0.8); }
.channel-arrow { color: var(--gold); font-size: 1rem; }

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,58,0.2);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-secondary);
}
/* Show validation only after user has interacted (not on load) */
.form-field input:not(:placeholder-shown):invalid,
.form-field select.touched:invalid,
.form-field textarea:not(:placeholder-shown):invalid {
  border-color: rgba(200, 80, 80, 0.7);
}
.form-field input:not(:placeholder-shown):valid,
.form-field select.touched:valid,
.form-field textarea:not(:placeholder-shown):valid {
  border-color: rgba(58, 107, 52, 0.6);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select option { background: var(--dark); }
.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 160ms var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
}
.form-submit:active { transform: scale(0.97); }

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  border-top: 1px solid rgba(196,151,58,0.15);
  padding: 3.5rem 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(196,151,58,0.1);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer-saharsh {
  font-size: 0.72rem;
  color: rgba(240,234,216,0.6);
  letter-spacing: 0.08em;
}
.footer-saharsh a { color: var(--gold); text-decoration: none; }
.footer-saharsh a:hover { text-decoration: underline; }
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(136,136,128,0.85);
}

/* ─── GALLERY LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(8,8,8,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-img {
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  object-fit: contain;
  display: block;
  user-select: none;
  transform: scale(0.94);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(196,151,58,0.3);
  color: var(--gold);
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-nav:hover { background: rgba(196,151,58,0.12); border-color: var(--gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-count {
  position: absolute;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,234,216,0.4);
}
@media (max-width: 600px) {
  .lightbox-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox { backdrop-filter: none; }
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--wa-green);
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 1.4rem 0.9rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 160ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .wa-float:hover { transform: translateY(-2px); }
}
.wa-float:active { transform: scale(0.97); }

.wa-float svg { flex-shrink: 0; }

/* ─── DIVIDERS & UTILS ─── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-scroll { right: 1.5rem; }
  .section-inner { padding: 0 1.5rem; }
  #stats { padding: 2rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(196,151,58,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(196,151,58,0.15); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-main { grid-column: auto; }

  #pool { height: 70vw; min-height: 380px; }
  .pool-overlay {
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.5) 100%);
  }
  .pool-content { max-width: 100%; padding: 0 1.5rem; }

  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-header { padding: 0 1.5rem 2.5rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); padding: 0 1.5rem 4rem; }
  .amenity-item { padding: 2rem 1rem; }

  .gallery-header-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; margin-bottom: 2rem; }
  .gallery-filters { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; padding-bottom: 0.25rem; margin-bottom: 2rem; }
  .gallery-filter-btn { white-space: nowrap; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .gallery-item[data-span="wide"],
  .gallery-item[data-span="full"] { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-grid.is-filtered .gallery-item { grid-column: span 1; aspect-ratio: 4/3; }

  .testimonial-secondary { grid-template-columns: 1fr; gap: 2rem; }
  .saharsh-inner { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  #about, #rooms, #amenities, #gallery, #availability, #testimonials, #location, #contact { padding: 6rem 0; }
}

@media (max-width: 600px) {
  .hero-eyebrow { white-space: normal; font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .gallery-grid,
  .gallery-grid.is-filtered { grid-template-columns: 1fr; gap: 2px; }
  .gallery-item[data-span="wide"],
  .gallery-item[data-span="full"],
  .gallery-grid.is-filtered .gallery-item { grid-column: span 1; aspect-ratio: 4/3; }
  .wa-float span { display: none; }
  .wa-float { padding: 0.9rem; }
}

/* ─── ENTRANCE ANIMATIONS ─── */
/* Progressive enhancement: animations activate only when JS runs */

.js-animate .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-animate .fade-up.visible { opacity: 1; transform: translateY(0); }

.js-animate .fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-animate .fade-left.visible { opacity: 1; transform: translateX(0); }

.js-animate .fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-animate .fade-right.visible { opacity: 1; transform: translateX(0); }

/* Reduced motion: gentle opacity fade, no translate */
@media (prefers-reduced-motion: reduce) {
  .js-animate .fade-up,
  .js-animate .fade-left,
  .js-animate .fade-right {
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }
  .hero-bg img { animation: none !important; transform: scale(1) !important; }
  .hero-scroll::after { animation: none !important; }
  .scrollLine { animation: none !important; }
}