:root {
  --sand: #F5EFE0;
  --sand-dark: #E8DCC8;
  --ocean: #1A3A4A;
  --ocean-mid: #2C5F72;
  --ocean-light: #4A8FA6;
  --coral: #C4704A;
  --coral-light: #D9896A;
  --ivory: #FAF7F2;
  --charcoal: #1C1C1C;
  --text-muted: #6B6454;
  --gold: #6B9E7A;
  --gold-light: #8FBF9A;
}

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

html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── CURSOR ─── */
body { cursor: none; }
.cursor {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--coral);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.5;
  transition: transform 0.35s ease, width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}
a:hover ~ .cursor-ring, button:hover ~ .cursor-ring { width: 56px; height: 56px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.4s;
  background: rgba(26, 58, 74, 0.96);
}
nav.scrolled {
  background: rgba(26, 58, 74, 0.96);
  padding: 16px 60px;
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--sand);
  text-decoration: none;
}
.nav-logo span { font-style: italic; color: var(--gold-light); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--charcoal); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--sand); transition: 0.3s; }

/* ─── HERO (home) ─── */
#hero {
  height: 100vh; min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,30,40,0.82) 0%, rgba(12,30,40,0.55) 50%, rgba(12,30,40,0.15) 100%),
    linear-gradient(to bottom, rgba(12,30,40,0.25) 0%, rgba(12,30,40,0.1) 40%, rgba(12,30,40,0.7) 100%),
    url('https://res.cloudinary.com/dfaakg2ds/image/upload/v1774515317/MB-6694_xfyq4d.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.0); } }

.hero-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 100px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--sand);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-subtitle {
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: rgba(245,239,224,0.75);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  border: none;
  cursor: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold-light); }
.btn-ghost svg { transition: transform 0.3s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,30,40,0.35) 0%, rgba(12,30,40,0.35) 40%, rgba(12,30,40,0.85) 100%),
    var(--hero-img) center/cover no-repeat;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 130px 60px 56px;
}
.breadcrumb {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.55);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(245,239,224,0.65); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 300;
  color: var(--sand);
  line-height: 1.05;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 200;
  color: rgba(245,239,224,0.7);
  max-width: 540px;
  line-height: 1.8;
}

/* ─── STRIP ─── */
.strip {
  background: var(--ocean);
  padding: 20px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  animation: stripScroll 28s linear infinite;
  will-change: transform;
}
.strip:hover .strip-track { animation-play-state: paused; }
@keyframes stripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}
.strip-item svg { color: var(--gold); flex-shrink: 0; }
.strip-divider { width: 1px; height: 20px; background: rgba(245,239,224,0.15); flex-shrink: 0; }

/* ─── SECTION SHARED ─── */
section { position: relative; }
.section-label {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ocean);
}
.section-heading em { font-style: italic; color: var(--coral); }
.section-body {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 520px;
}
.view-all-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  transition: gap 0.3s;
  margin-top: 20px;
}
.view-all-link:hover { gap: 16px; }
section .view-all-link.on-dark { color: var(--gold-light); }

/* ─── INTRO ─── */
#intro {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--ivory);
}
.intro-image-stack { position: relative; }
.intro-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.intro-img-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 6px solid var(--ivory);
}
.intro-badge {
  position: absolute;
  top: 40px; left: -30px;
  background: var(--ocean);
  color: var(--sand);
  padding: 20px 24px;
  text-align: center;
}
.intro-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.intro-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.6);
  display: block;
  margin-top: 4px;
}
.intro-text { padding-left: 20px; }
.intro-features { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-item {}
.feature-icon { color: var(--gold); margin-bottom: 10px; }
.feature-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 0.8rem;
  font-weight: 200;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── EXPERIENCES ─── */
#experiences {
  background: var(--ocean);
  padding: 120px 60px;
  overflow: hidden;
}
#experiences .section-heading { color: var(--sand); }
#experiences .section-label { color: var(--gold-light); }
#experiences .section-body { color: rgba(245,239,224,0.6); max-width: 480px; }
.exp-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: none;
}
.exp-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.exp-card:hover img { transform: scale(1.08); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,30,40,0.9) 0%, rgba(12,30,40,0.1) 55%);
  display: flex; align-items: flex-end;
  padding: 32px;
  transition: background 0.4s;
}
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(to top, rgba(12,30,40,0.95) 0%, rgba(12,30,40,0.3) 60%);
}
.exp-card-content {}
.exp-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 8px;
}
.exp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1.2;
  margin-bottom: 10px;
}
.exp-card-desc {
  font-size: 0.78rem;
  font-weight: 200;
  color: rgba(245,239,224,0.65);
  line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease;
}
.exp-card:hover .exp-card-desc { max-height: 140px; }
.exp-card.static .exp-card-desc { max-height: 140px; }

/* ─── ACCOMMODATIONS ─── */
#accommodations {
  padding: 120px 60px;
  background: var(--sand);
}
.acc-header { margin-bottom: 70px; }
.acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.acc-grid.acc-grid-4 { grid-template-columns: repeat(2, 1fr); }
.acc-card {
  background: var(--ivory);
  overflow: hidden;
}
.acc-card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.acc-card:hover .acc-card-img { transform: scale(1.04); }
.acc-card-img-wrap { overflow: hidden; }
.acc-card-body { padding: 28px 30px 32px; }
.acc-card-type {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.acc-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ocean);
  margin-bottom: 12px;
}
.acc-card-desc {
  font-size: 0.8rem;
  font-weight: 200;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.acc-amenities {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.amenity-tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-mid);
  border: 1px solid rgba(44,95,114,0.25);
  padding: 5px 10px;
}
.acc-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  text-decoration: none;
  font-weight: 400;
  transition: gap 0.3s;
}
.acc-card-link:hover { gap: 14px; }

/* ─── LEGAL PAGES ─── */
.legal-content { max-width: 820px; margin: 0 auto; padding: 100px 60px 120px; }
.legal-updated {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 36px;
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ocean);
  margin: 44px 0 14px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-note {
  font-size: 0.8rem;
  font-weight: 200;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin-bottom: 40px;
}
@media (max-width: 600px) { .legal-content { padding: 60px 20px 80px; } }

/* ─── CTA BAND ─── */
.cta-band { background: var(--ocean); padding: 100px 60px; text-align: center; }
.cta-band .section-label { color: var(--gold-light); }
.cta-band .section-heading { color: var(--sand); }
.cta-band .section-body { color: rgba(245,239,224,0.6); max-width: 560px; margin: 20px auto 36px; }
@media (max-width: 600px) { .cta-band { padding: 60px 24px; } }

/* ─── QUOTE BAND ─── */
#quote-band {
  background: var(--sand-dark);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#quote-band::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(26,58,74,0.05);
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ocean);
  max-width: 800px;
  margin: 0 auto 28px;
  line-height: 1.4;
  position: relative;
}
.quote-attr {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── WHY US ─── */
#why {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.why-img-stripe {
  position: absolute;
  top: 60px; right: -30px;
  width: 60px; bottom: 60px;
  background: var(--gold);
  opacity: 0.35;
}
.why-list { margin-top: 44px; }
.why-item {
  display: flex; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(26,58,74,0.1);
}
.why-item:first-child { border-top: 1px solid rgba(26,58,74,0.1); }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  width: 30px;
  margin-top: 2px;
}
.why-item-title {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ocean);
  margin-bottom: 6px;
}
.why-item-desc {
  font-size: 0.8rem;
  font-weight: 200;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── GALLERY ─── */
#gallery {
  overflow: hidden;
  background: var(--charcoal);
  padding: 3px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 220px 260px 220px 300px;
  gap: 3px;
}

.gc-1  { grid-column: 1 / 6;   grid-row: 1; }
.gc-2  { grid-column: 6 / 9;   grid-row: 1; }
.gc-3  { grid-column: 9 / 13;  grid-row: 1; }
.gc-4  { grid-column: 1 / 4;   grid-row: 2; }
.gc-5  { grid-column: 4 / 8;   grid-row: 2; }
.gc-6  { grid-column: 8 / 13;  grid-row: 2 / 4; }
.gc-7  { grid-column: 1 / 5;   grid-row: 3 / 5; }
.gc-8  { grid-column: 5 / 8;   grid-row: 3; }
.gc-9  { grid-column: 8 / 13;  grid-row: 4; }
.gc-10 { grid-column: 5 / 8;   grid-row: 4; }
.gc-11 { grid-column: 1 / 5;   grid-row: 5; }
.gc-12 { grid-column: 5 / 9;   grid-row: 5; }
.gc-13 { grid-column: 9 / 13;  grid-row: 5; }

.gc-14 { grid-column: 1 / 7;   grid-row: 6 / 7; }
.gc-15 { grid-column: 7 / 13;  grid-row: 6 / 7; }
.gc-16 { grid-column: 1 / 5;   grid-row: 7; }
.gc-17 { grid-column: 5 / 9;   grid-row: 7; }
.gc-18 { grid-column: 9 / 13;  grid-row: 7; }
.gc-19 { grid-column: 1 / 13;  grid-row: 8; height: 300px; }
.gc-20 { grid-column: 1 / 7;   grid-row: 9; }
.gc-21 { grid-column: 7 / 13;  grid-row: 9; }

.gallery-cell {
  overflow: hidden;
  position: relative;
  min-height: 180px;
}
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.88);
}
.gallery-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,30,40,0.45) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery-cell:hover img { transform: scale(1.07); filter: brightness(1); }
.gallery-cell:hover::after { opacity: 1; }

/* ─── ROOM DETAIL ─── */
.room-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  background: var(--charcoal);
  padding: 3px;
  height: 560px;
}
.room-gallery-main { grid-column: 1; grid-row: 1 / 4; overflow: hidden; }
.room-gallery-cell { grid-column: 2; overflow: hidden; position: relative; }
.room-gallery-cell img, .room-gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.92);
}
.room-gallery-cell:hover img, .room-gallery-main:hover img { transform: scale(1.06); filter: brightness(1); }

.room-detail {
  padding: 90px 60px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.room-detail-body p.section-body { max-width: 100%; margin-top: 20px; margin-bottom: 40px; }
.room-detail-aside {
  background: var(--ocean);
  padding: 40px 36px;
}
.room-detail-aside .acc-card-type { color: var(--gold-light); }
.room-detail-aside .acc-card-desc { color: rgba(245,239,224,0.55); }

/* rate preview grid (also used on accommodations listing) */
.cs-rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.cs-rate-cell {
  background: rgba(255,255,255,0.04);
  padding: 14px 16px;
}
.cs-rate-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.35);
  margin-bottom: 4px;
}
.cs-rate-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.2;
}
.cs-rate-value span {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 200;
  color: rgba(245,239,224,0.4);
  margin-left: 2px;
}

.cs-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.cs-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.cs-service-tag {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.5);
  border: 1px solid rgba(184,150,90,0.25);
  padding: 5px 10px;
}

.cs-notify-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
  transition: gap 0.3s;
  margin-top: auto;
}
.cs-notify-link:hover { gap: 14px; color: var(--gold-light); }

/* ─── COMING SOON HERO BADGE ─── */
.hero-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 14px 28px;
  border: 1px solid rgba(184,150,90,0.45);
  background: rgba(12,30,40,0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-cs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.hero-cs-text {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-cs-text strong {
  color: var(--sand);
  font-weight: 400;
}

/* ─── COMING SOON ACC CARD ─── */
.acc-card-coming {
  background: var(--ocean);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.acc-card-coming-img-wrap {
  overflow: hidden;
  position: relative;
}
.acc-card-coming-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block;
  filter: brightness(0.55) saturate(0.7);
  transition: transform 0.6s;
}
.acc-card-coming:hover .acc-card-coming-img { transform: scale(1.04); }
.acc-coming-overlay-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.acc-card-coming-body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.acc-card-coming-body .acc-card-type { color: var(--gold-light); }
.acc-card-coming-body .acc-card-title { color: var(--sand); }
.acc-card-coming-body .acc-card-desc { color: rgba(245,239,224,0.55); margin-bottom: 28px; }

/* ─── CONTACT ─── */
#contact {
  background: var(--ocean);
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
#contact .section-heading { color: var(--sand); }
#contact .section-label { color: var(--gold-light); }
#contact .section-body { color: rgba(245,239,224,0.55); margin-bottom: 50px; }

.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(184,150,90,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-light);
}
.contact-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.4);
  margin-bottom: 4px;
}
.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--sand);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.contact-value:hover { color: var(--gold-light); }

/* form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.45);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--sand);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 200;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  cursor: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(245,239,224,0.25); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--ocean); color: var(--sand); }
.form-submit {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  border: none;
  padding: 18px 40px;
  cursor: none;
  align-self: flex-start;
  transition: background 0.3s, transform 0.3s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  background: #0D1F28;
  padding: 60px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-brand-name span { font-style: italic; color: var(--gold-light); }
.footer-tagline {
  font-size: 0.8rem;
  font-weight: 200;
  color: rgba(245,239,224,0.4);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,239,224,0.4);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.8rem;
  font-weight: 200;
  color: rgba(245,239,224,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 0.7rem;
  font-weight: 200;
  color: rgba(245,239,224,0.25);
  letter-spacing: 0.08em;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.65rem;
  color: rgba(245,239,224,0.25);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

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

/* ─── MOBILE NAV OVERLAY ─── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--ocean);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold-light); }
.mobile-close {
  position: absolute; top: 24px; right: 30px;
  background: none; border: none;
  color: var(--sand); font-size: 2rem; cursor: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  #intro { grid-template-columns: 1fr; gap: 60px; padding: 80px 32px; }
  .intro-text { padding-left: 0; }
  .intro-badge { left: 16px; }
  #experiences { padding: 80px 32px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { aspect-ratio: 16/9; }
  #accommodations { padding: 80px 32px; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .acc-grid.acc-grid-4 { grid-template-columns: 1fr 1fr; }
  #why { grid-template-columns: 1fr; padding: 80px 32px; gap: 60px; }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
  .gallery-cell[class*="gc-"] { grid-column: span 3; grid-row: span 1; height: 220px; }
  .gallery-cell.gc-1 { grid-column: span 6; height: 280px; }
  .gallery-cell.gc-6, .gallery-cell.gc-7 { grid-column: span 3; grid-row: span 1; }
  .gallery-cell.gc-14, .gallery-cell.gc-19 { grid-column: span 6; height: 240px; }
  #contact { grid-template-columns: 1fr; padding: 80px 32px; }
  footer { padding: 50px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .strip { padding: 16px 24px; gap: 24px; flex-wrap: wrap; }
  .hero-content { padding: 0 32px 80px; }
  .page-hero-content { padding: 110px 32px 44px; }
  .room-detail { padding: 70px 32px 90px; }
  .room-detail-grid { grid-template-columns: 1fr; gap: 50px; }
  .room-gallery { grid-template-columns: repeat(3, 1fr); grid-template-rows: 260px 160px; height: auto; }
  .room-gallery-main { grid-column: 1 / 4; grid-row: 1; }
  .room-gallery-cell { grid-row: 2; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 3rem; }
  .exp-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-cell[class*="gc-"] { grid-column: span 1; grid-row: span 1; height: 200px; }
  .gallery-cell.gc-1 { grid-column: span 2; height: 240px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  #quote-band { padding: 60px 32px; }
  .acc-grid { grid-template-columns: 1fr; }
  .acc-grid.acc-grid-4 { grid-template-columns: 1fr; }

  /* ── prevent horizontal bleed ── */
  .intro-img-accent { right: 0; bottom: 0; }
  .intro-badge { left: 8px; top: 16px; }
  .intro-image-stack { overflow: hidden; }
  .why-img-stripe { display: none; }
  .why-image { overflow: hidden; }
  .hero-coming-soon { max-width: 100%; }
  .strip-track { animation-duration: 20s; }
  #intro { padding: 60px 20px; }
  #experiences { padding: 60px 20px; }
  #accommodations { padding: 60px 20px; }
  #why { padding: 60px 20px; }
  #contact { padding: 60px 20px; }
  footer { padding: 40px 20px 24px; }
  .hero-content { padding: 0 20px 60px; }
  .page-hero-content { padding: 100px 20px 36px; }
  .room-detail { padding: 60px 20px 70px; }
  .room-gallery { grid-template-columns: 1fr; grid-template-rows: 240px repeat(3, 140px); height: auto; }
  .room-gallery-main { grid-column: 1; grid-row: 1; }
  .room-gallery-cell { grid-column: 1; }
  .room-detail-aside { padding: 30px 24px; }
}

/* ── Touch devices — disable custom cursor ── */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .hamburger, .form-submit, button { cursor: pointer; }
  a, select, input, textarea { cursor: auto; }
}
