/* ═══════════════════════════════════════════════════════════════
   MARIVEN — Clean CSS Rewrite
   Fonts: Bricolage Grotesque, Playfair Display
   ═══════════════════════════════════════════════════════════════ */

/* ── Fonts ──────────────────────────────────────────────────── */
/* Libre Franklin loaded via <link> in link.php (non-blocking) */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvRviyMgvs-wJDtw.woff2")
    format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bricolagegrotesque/v9/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvSni-Molsg.woff2")
    format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyMgvs-wJDtw.woff2")
    format("woff2");
}
@font-face {
  font-family: "IvyPresto";
  src: url("../Ivy-Presto-font-Family/fonts/fonnts.com-Ivy-Ora-Display-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Size-adjusted fallbacks — reduce CLS during font swap */
@font-face {
  font-family: "IvyPresto-fallback";
  src: local("Georgia"), local("Times New Roman"), local("serif");
  size-adjust: 112%;
  ascent-override: 84%;
  descent-override: 20%;
  line-gap-override: normal;
}
@font-face {
  font-family: "BricolageFallback";
  src: local("Arial"), local("Helvetica Neue"), local("sans-serif");
  size-adjust: 104%;
  ascent-override: 91%;
  descent-override: 23%;
  line-gap-override: normal;
}
/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  /* Colors */
  --cream: #f6f1ed;
  --cream-light: #fcfbfa;
  --cream-mid: #f0eae4;
  --dark: #26140e;
  --dark-2: #26140e;
  --brown: #d98841;
  --taupe: #998e85;
  --border: #d1dfe0;
  --border-light: #ecf2f2;
  --green-accent: #35e0a1;
  --link-blue: #0099ff;

  /* Typography */
  --font-sans: "Bricolage Grotesque", "BricolageFallback", sans-serif;
  /* --font-serif: "Playfair Display", Georgia, serif; */
  --font-serif: "IvyPresto", "IvyPresto-fallback", serif;

  /* Spacing */
  --section-pad: clamp(64px, 8vw, 120px);
  --container: 1280px;
  --gap: clamp(16px, 2.5vw, 32px);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.35s;
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-2);
  background: var(--cream);
  overflow-x: hidden;
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
p {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(40px, 6vw, 80px);
}
h2 {
  font-size: clamp(28px, 4vw, 52px);
}
h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}
h4 {
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
p {
  font-size: clamp(14px, 1.2vw, 16px);
}

/* ── Layout Utilities ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid var(--brown);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.label--light {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.4);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  color: var(--taupe);
  margin-bottom: 32px;
}
.section-header--light h2,
.section-header--light p {
  color: rgba(255, 255, 255, 0.9);
}
.section-header--light p {
  opacity: 0.75;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--dark);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1.5px solid rgb(255, 255, 255);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}
.btn-outline-dark {
  border: 1.5px solid var(--dark);
  color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--cream);
}
.btn-book {
  background: var(--cream);
  color: var(--dark);
  padding: 10px 22px;
  font-size: 13px;
  flex-shrink: 0;
}
.btn-book:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ── Scroll Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
}
.navbar-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--dur) var(--ease);
}
.navbar.scrolled .navbar-logo img {
  filter: none;
}
.navbar-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--dur);
}
.navbar-links a:hover {
  color: #fff;
}
.navbar.scrolled .navbar-links a {
  color: var(--dark-2);
}
.navbar.scrolled .navbar-links a:hover {
  color: var(--brown);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}
.navbar-phone {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--dur);
}
.navbar-phone:hover {
  color: #fff;
}
.navbar.scrolled .navbar-phone {
  color: var(--dark-2);
}
.navbar.scrolled .navbar-phone:hover {
  color: var(--brown);
}

/* Mobile toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.navbar-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled .navbar-toggle span {
  background: var(--dark);
}
.navbar-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar-toggle.open span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* old mobile menu stub removed — new styles at bottom */

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #0a0a0a; /* dark fallback while video loads — no background image */
  color: #fff;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
}

/* Base styles shared by both videos */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Desktop (landscape) video: visible by default, hidden on mobile */
.hero-video--desktop {
  display: block;
}

/* Mobile (portrait) video: hidden by default, visible on mobile */
.hero-video--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-video--desktop {
    display: none;
  }
  .hero-video--mobile {
    display: block;
    object-position: center top; /* portrait framing — keeps subject at top */
  }
}
.hero-sound-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-sound-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 65%, transparent 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 45%, transparent 100%);
}

/* ── Hero content entrance animation ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 72px);
  max-width: 740px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: heroFadeUp 0.9s var(--ease) 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6.5vw, 86px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
  animation: heroFadeUp 0.9s var(--ease) 0.25s both;
}
.hero-sub {
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 44px;
  max-width: 440px;
  line-height: 1.75;
  animation: heroFadeUp 0.9s var(--ease) 0.4s both;
}
.hero-cta {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px 36px;
  backdrop-filter: blur(6px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  animation: heroFadeUp 0.9s var(--ease) 0.55s both;
}
.hero-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute;
  bottom: clamp(28px, 4vw, 52px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeUp 1s var(--ease) 1s both;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}
.hero-scroll-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* TripAdvisor badge */
.tripadvisor-badge {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  right: clamp(20px, 4vw, 60px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
  transition: background var(--dur);
}
.tripadvisor-badge:hover {
  background: rgba(255, 255, 255, 0.2);
}
.ta-stars {
  display: flex;
  gap: 2px;
  color: var(--green-accent);
  font-size: 14px;
}
.ta-score {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-serif);
}
.ta-logo {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* About Carousel */
.about-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/5;
}
.about-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s var(--ease);
}
.about-slide {
  flex: 0 0 100%;
  height: 100%;
}
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition:
    background var(--dur),
    transform var(--dur);
  padding: 0;
}
.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* About Content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-content h2 {
  margin-bottom: 4px;
  color: var(--dark);
}
.about-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--brown);
  font-style: italic;
  font-family: "Libre Franklin", sans-serif;
  margin-bottom: 12px;
}
.about-letter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-letter p {
  color: var(--dark-2);
  line-height: 1.75;
}
.about-signature {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.sig-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--dark);
}
.sig-title {
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--dark);
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 48px;
}
.gallery-header h2 {
  color: var(--cream);
}
.gallery-header .section-label {
  color: rgba(246, 241, 237, 0.6);
  border-color: rgba(246, 241, 237, 0.25);
}
.gallery-scroll-wrap {
  overflow-x: auto;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.gallery-scroll-wrap.grabbing {
  cursor: grabbing;
}
.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 60px);
  width: max-content;
  user-select: none;
}
.gallery-item {
  flex: 0 0 auto;
  width: clamp(260px, 28vw, 420px);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 14px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ══════════════════════════════════════════════════════════════
   PILLARS (4 Pillar Section)
   ══════════════════════════════════════════════════════════════ */
.pillars {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.pillar-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--border);
}
.pillar-item:last-child {
  border-bottom: none;
}
.pillar-item--reverse {
  direction: rtl;
}
.pillar-item--reverse > * {
  direction: ltr;
}
.pillar-image {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.pillar-item:hover .pillar-image img {
  transform: scale(1.04);
}
.pillar-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar-no {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--brown);
  opacity: 0.25;
  line-height: 1;
  display: block;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--dark);
  line-height: 1.2;
}
.pillar-content p {
  color: var(--taupe);
  line-height: 1.8;
  font-size: clamp(14px, 1.2vw, 16px);
}
@media (max-width: 768px) {
  .pillar-item {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .pillar-item--reverse {
    direction: ltr;
  }
  .pillar-image {
    aspect-ratio: 16/9;
  }
  .pillar-no {
    font-size: 48px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ROOMS
   ══════════════════════════════════════════════════════════════ */
.rooms {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.room-card {
  display: flex;
  flex-direction: column;
  background: var(--dark);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 42, 52, 0.18);
}
.room-card--wide {
  grid-column: span 2;
}
.room-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.room-card--wide .room-img-wrap {
  aspect-ratio: 16/9;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-card:hover .room-img-wrap img {
  transform: scale(1.05);
}
.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0, 42, 52, 0.85) 100%
  );
}
.room-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.room-name {
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--cream);
}
.room-desc {
  font-size: 13px;
  color: rgb(255, 255, 255);
  line-height: 1.65;
  flex: 1;
}
.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.room-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(246, 241, 237, 0.7);
}
.room-meta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: rgba(246, 241, 237, 0.6);
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}
.room-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-from {
  font-size: 11px;
  color: rgba(246, 241, 237, 0.5);
  letter-spacing: 0.04em;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--cream);
  line-height: 1;
}
.price-night {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(246, 241, 237, 0.6);
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--dark-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    background 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}
.service-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}
.service-body {
  padding: 22px 24px 28px;
}
.service-body h3 {
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 13px;
  color: rgba(246, 241, 237, 0.6);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   EVENTS
   ══════════════════════════════════════════════════════════════ */
.events {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.event-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 42, 52, 0.05);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 42, 52, 0.12);
}
.event-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.event-card:hover .event-img img {
  transform: scale(1.05);
}
.event-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid var(--brown);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}
.event-body h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--dark);
}
.event-body p {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.65;
}
.event-meta {
  font-size: 12px;
  color: var(--brown);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.testimonials-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(20px, 4vw, 60px);
}
.testimonial-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ta-review-logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}
.testimonial-stars {
  color: var(--green-accent);
  font-size: 18px;
  letter-spacing: 4px;
}
.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
}
.testimonial-text {
  font-size: 15px;
  color: rgb(255, 255, 255);
  max-width: 580px;
  line-height: 1.75;
}
.testimonial-author {
  font-size: 14px;
  font-weight: 500;
  color: rgba(246, 241, 237, 0.85);
}
.testimonial-author span {
  color: rgba(246, 241, 237, 0.5);
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.t-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--dur) var(--ease);
}
.t-nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.t-nav-btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════ */
.blog {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.blog-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s;
  display: block;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 42, 52, 0.1);
}
.blog-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-date {
  font-size: 12px;
  color: var(--brown);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.blog-body h3 {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--dark);
  line-height: 1.3;
}
.blog-body p {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.faq .section-header--light h2 {
  color: var(--cream);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
  color: var(--cream);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--dur);
}
.faq-question:hover {
  color: rgba(246, 241, 237, 0.75);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  stroke: currentColor;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.4s var(--ease);
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: 22px;
  color: rgb(255, 255, 255);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   BOOKING / CONTACT SECTION
   ══════════════════════════════════════════════════════════════ */
.booking-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.booking-form-wrap h2 {
  margin: 12px 0 0;
}
.booking-intro {
  color: var(--taupe);
  margin: 14px 0 28px;
  line-height: 1.7;
  font-size: 0.97rem;
}
.bk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bk-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.bk-submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.bk-submit:hover svg {
  transform: translateX(4px);
}
.booking-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.bk-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.bk-contact-item:hover {
  color: var(--brown);
}
.bk-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.6;
}
.booking-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 520px;
}
.booking-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  .booking-map-wrap {
    min-height: 360px;
  }
  .booking-map-wrap iframe {
    min-height: 360px;
  }
}
@media (max-width: 560px) {
  .bk-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: clamp(56px, 7vw, 96px) 0 0;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo img {
  filter: brightness(0) invert(1);
  height: 80px;
  width: auto;
}
.footer-address {
  color: rgb(255, 255, 255);
  font-size: 0.85rem;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
}
.footer-label {
  color: rgb(255, 255, 255);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.footer-brand-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand-nav a {
  font-size: 14px;
  color: rgba(246, 241, 237, 0.85);
  transition: color var(--dur);
}
.footer-brand-nav a:hover {
  color: var(--cream);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col .footer-label {
  text-align: center;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-col nav a {
  font-size: 14px;
  color: rgba(246, 241, 237, 0.85);
  transition: color var(--dur);
}
.footer-col nav a:hover {
  color: var(--cream);
}
.footer-rera {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  filter: brightness(0) invert(1);
}
.footer-qr {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.footer-rera-text {
  color: rgb(255, 255, 255);
  font-size: 0.78rem;
  line-height: 1.65;
  text-align: center;
}
.footer-rera-text a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.footer-rera-text a:hover {
  color: var(--cream);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color var(--dur);
}
.newsletter-form:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--cream);
  font-family: var(--font-sans);
}
.newsletter-form input::placeholder {
  color: rgb(255, 255, 255);
}
.newsletter-form button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
  transition: background var(--dur);
}
.newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.08);
}
.newsletter-form button svg {
  width: 16px;
  height: 16px;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0 28px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgb(255, 255, 255);
}
.footer-bottom p a {
  color: rgba(246, 241, 237, 0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom p:last-of-type {
  margin-right: auto;
}
.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(246, 241, 237, 0.5);
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.back-to-top:hover {
  border-color: rgb(255, 255, 255);
  color: var(--cream);
  transform: translateY(-2px);
}
.back-to-top svg {
  width: 16px;
  height: 16px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet / section layout (≤ 900px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-carousel {
    aspect-ratio: 16/9;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-brand-nav {
    align-items: center;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Hero */
  .hero-sub br {
    display: none;
  }
  .hero-content {
    padding: 28px 24px;
  }
  .hero-scroll-hint {
    display: none;
  }

  /* Footer */
  .footer-top {
    padding-bottom: 36px;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-brand-nav {
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .back-to-top {
    align-self: flex-end;
  }
  .footer-disclaimer {
    font-size: 0.72rem;
  }
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s var(--ease),
    padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.12) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}
#navbar.scrolled {
  background: rgba(246, 241, 237, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(31, 58, 64, 0.08);
}
#navbar.scrolled .nav-link,
#navbar.scrolled .nav-info {
  color: var(--brown);
}
#navbar.scrolled .nav-separator {
  background: rgba(31, 58, 64, 0.15);
}
#navbar.scrolled .phone-pill {
  border-color: rgba(31, 58, 64, 0.15);
  color: var(--brown);
}

/* nav left */
.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-link:hover::after {
  width: 100%;
}

/* nav logo */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
#navbar.scrolled .nav-logo img {
  filter: none;
}

/* nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-info {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}
.nav-info svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}
.nav-separator {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.4s;
}
.phone-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    color 0.25s,
    border-color 0.4s,
    background 0.25s;
}
.phone-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}
#navbar.scrolled .phone-pill:hover {
  background: rgba(31, 58, 64, 0.06);
}
.phone-pill svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition:
    transform 0.3s,
    opacity 0.3s,
    background 0.4s;
  border-radius: 99px;
}
#navbar.scrolled .hamburger span {
  background: var(--dark);
}
#navbar.scrolled .hamburger.open span {
  background: var(--dark);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 100vw);
  height: 100dvh;
  background: var(--dark);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}
.mobile-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.mobile-close svg {
  width: 20px;
  height: 20px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 28px;
  gap: 2px;
  flex: 1;
}
.mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--brown);
  padding-left: 6px;
}
.mobile-footer {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}
.mobile-footer a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.mobile-footer a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR RESPONSIVE — must come AFTER base nav styles
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  #navbar {
    padding: 20px 28px;
  }
  #navbar.scrolled {
    padding: 14px 28px;
  }
  .nav-left {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
}

@media (max-width: 1100px) {
  /* Hide desktop links, show hamburger */
  .nav-left,
  .nav-right {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
  }
  /* Logo: take out of absolute centering */
  .nav-logo {
    position: static !important;
    transform: none !important;
  }
  .nav-logo img {
    height: 32px;
  }
  #navbar {
    padding: 16px 20px;
  }
  #navbar.scrolled {
    padding: 12px 20px;
  }
}

/* ── Amenity Cards ───────────────────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition:
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.amenity-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.amenity-item:hover .amenity-img-wrap img {
  transform: scale(1.04);
}
.amenity-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 28px 28px;
  flex: 1;
}
.amenity-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.amenity-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.amenity-desc {
  color: var(--taupe);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
@media (max-width: 1024px) {
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }
  .amenity-content {
    padding: 20px;
  }
}
/* ── Connectivity ─────────────────────────────────────────────── */
.connectivity {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.connectivity-routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}
.route-item {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  text-align: center;
}
.route-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(161, 130, 106, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}
.route-icon svg {
  width: 26px;
  height: 26px;
}
.route-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.route-item p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.65;
}
.map-wrap {
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 600px;
}
.map-wrap img,
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .connectivity-routes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .map-wrap {
    height: 260px;
  }
}

/* ── Developer Section ────────────────────────────────────────── */
.developer {
  padding: var(--section-pad) 0;
  background: var(--dark);
  color: #fff;
}
.developer .section-label {
  color: var(--brown);
}
.developer h2 {
  color: #fff;
  margin: 12px 0 0;
}

/* Main 2-col layout */
.developer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-top: 0;
}

/* Left: image collage */
.developer-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.dev-img-primary {
  grid-column: 1 / -1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/16;
}
.dev-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.dev-img-primary:hover img {
  transform: scale(1.04);
}
.dev-floating-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dev-badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.dev-badge-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dev-img-secondary {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.dev-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.dev-img-secondary:hover img {
  transform: scale(1.04);
}

/* Right: content column */
.developer-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dev-body {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-top: 18px;
}

/* Feature pills */
.dev-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.dev-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 7px 14px;
}
.dev-feature-pill svg {
  width: 14px;
  height: 14px;
  color: var(--brown);
  flex-shrink: 0;
}

/* Stats grid with icons */
.dev-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.dev-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: background 0.3s;
}
.dev-stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.dev-stat-icon {
  width: 38px;
  height: 38px;
  background: rgba(217, 136, 65, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  margin-bottom: 8px;
}
.dev-stat-icon svg {
  width: 18px;
  height: 18px;
}
.dev-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.dev-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .developer-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .dev-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 360px) {
  .dev-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Contact Modal ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--cream-light);
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease);
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--taupe);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.modal-close:hover {
  background: var(--cream-mid);
}
.modal-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark-2);
  background: #fff;
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 5px;
  min-height: 1em;
}
.modal-contact-info {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.modal-contact-info p {
  font-size: 0.9rem;
  color: var(--taupe);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-contact-info svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brown);
}
.modal-contact-info a {
  color: var(--brown);
  text-decoration: none;
}
.modal-contact-info a:hover {
  text-decoration: underline;
}

/* ── Disclaimer ───────────────────────────────────────────────── */
.disclaimer {
  background: var(--dark-2);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.disclaimer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  font-size: 0.72rem;
  color: rgb(255, 255, 255);
  line-height: 1.75;
}
.disclaimer-inner strong {
  color: rgb(255, 255, 255);
  font-weight: 600;
}
.pdc {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: var(--gap);
  margin-top: 48px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS — Tablet & Mobile Fixes
   ══════════════════════════════════════════════════════════════ */

/* Connectivity: 2-col on tablet, 1-col on mobile */
@media (max-width: 900px) and (min-width: 641px) {
  .connectivity-routes {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Map height on tablets */
@media (max-width: 900px) and (min-width: 641px) {
  .map-wrap {
    height: 400px;
  }
}

/* Modal padding — reduce on small screens */
@media (max-width: 560px) {
  .modal-box {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

/* Navbar padding on very small screens */
@media (max-width: 400px) {
  #navbar {
    padding: 14px 16px;
  }
  #navbar.scrolled {
    padding: 10px 16px;
  }
}

/* Hero content on small phones */
@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(36px, 10vw, 52px);
  }
  .hero-cta {
    padding: 12px 28px;
    font-size: 12px;
  }
}

/* Pillar section on very small screens */
@media (max-width: 480px) {
  .pillar-item {
    gap: 20px;
    padding: 32px 0;
  }
  .pillar-no {
    font-size: 40px;
  }
}

/* About carousel height on mobile */
@media (max-width: 480px) {
  .about-carousel {
    aspect-ratio: 4/3;
  }
}

/* Amenity grid on small phones */
@media (max-width: 400px) {
  .amenity-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery items slightly smaller on mobile */
@media (max-width: 480px) {
  .gallery-item {
    width: clamp(220px, 80vw, 300px);
  }
}

/* Footer on very small screens */
@media (max-width: 400px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Booking form two-col name/phone on small tablets */
@media (max-width: 640px) and (min-width: 480px) {
  .bk-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Prevent horizontal overflow globally */
html, body {
  overflow-x: hidden;
}

/* Improve tap target sizes on mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
  }
  .dot {
    width: 10px;
    height: 10px;
    padding: 4px;
  }
  .back-to-top {
    width: 44px;
    height: 44px;
  }
}

/* Smooth image rendering */
img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Content visibility for off-screen sections (paint performance) */
.rooms, .gallery, .pillars, .connectivity, .developer, .booking-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
