@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Font Families */
  --font-body: 'Manrope', sans-serif;
  --font-heading: 'Manrope', sans-serif;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.05rem;
  --text-lg: 1.18rem;
  --text-xl: 1.4rem;
  --text-2xl: 1.8rem;
  --text-3xl: 2.4rem;
  --text-4xl: 3.4rem;
  --text-5xl: 4.8rem;

  /* Color Palette */
  --color-bg: #F8F3EA;
  --color-bg-soft: #FFF9F0;
  --color-cream: #FFF4E2;
  --color-white: #FFFFFF;

  --color-dark: #101A14;
  --color-deep-green: #183C2E;
  --color-green: #2F6B4F;
  --color-sage: #AFC7B4;
  --color-sage-light: #DCE8DD;

  --color-gold: #C8A45D;
  --color-gold-soft: #E6D4A8;
  --color-brown: #6B4A2F;

  /* Text Colors */
  --text-main: #132018;
  --text-muted: #657168;
  --text-soft: #8A958D;
  --text-light: rgba(255, 255, 255, 0.88);

  /* Glassmorphism Backdrops */
  --glass-white: rgba(255, 255, 255, 0.22);
  --glass-light: rgba(255, 255, 255, 0.34);
  --glass-dark: rgba(16, 26, 20, 0.46);

  /* Borders */
  --border-glass: rgba(255, 255, 255, 0.36);
  --border-soft: rgba(19, 32, 24, 0.1);

  /* Corner Radius */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --radius-2xl: 48px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(16, 26, 20, 0.08);
  --shadow-card: 0 14px 38px rgba(16, 26, 20, 0.10);
  --shadow-strong: 0 14px 38px rgba(16, 26, 20, 0.10);
  --shadow-button: 0 8px 20px rgba(24, 60, 46, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body,
button,
input,
textarea,
select,
p,
span,
li,
a,
small,
label,
div {
  font-family: var(--font-body);
}

body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6,
.room-title,
.pricing-card h3,
.section-title,
.section-heading,
.hero-title,
.navbar-brand-name {
  font-family: var(--font-heading);
}

h1, h2, h3, h4 {
  color: var(--text-main);
  letter-spacing: -0.03em;
  font-weight: 800;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Layout --- */
.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

section {
  padding: 96px 0;
  position: relative;
  scroll-margin-top: 110px;
}

@media (max-width: 768px) {
  section {
    padding: 58px 0;
  }
}

.bg-soft {
  background-color: var(--color-bg-soft);
}

/* Section Header Utilities */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.section-desc {
  font-size: var(--text-md);
  color: var(--text-muted);
  margin-top: 12px;
}

/* --- Glassmorphism System --- */
.glass {
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow-card);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-strong);
}

.glass-dark {
  background: rgba(16, 26, 20, 0.46);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-soft);
}

/* Hover highlights - Optimized to prevent layout paint recalculations */
.card-hover,
.room-card,
.btn,
.btn-primary,
.btn-glass,
.btn-outline {
  transition: transform 0.22s ease;
}

.card-hover:hover,
.room-card:hover {
  transform: translateY(-2px);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-deep-green);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-button);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--color-green);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--color-deep-green);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--color-deep-green);
  cursor: pointer;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: var(--color-deep-green);
  color: var(--color-white);
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Media Placeholders (Visual Excellence without raw files) --- */
.media-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(24, 60, 46, 0.05), rgba(200, 164, 93, 0.04)), var(--glass-white);
  border: 1px dashed rgba(19, 32, 24, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-deep-green);
  text-align: center;
  padding: 24px;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: all 0.35s ease;
  overflow: hidden;
}

.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}

.media-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: var(--color-deep-green);
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.media-placeholder p.placeholder-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.media-placeholder p.todo-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold);
}

.media-placeholder:hover {
  background: linear-gradient(135deg, rgba(24, 60, 46, 0.08), rgba(200, 164, 93, 0.07)), var(--glass-light);
  border-color: var(--color-deep-green);
}

.media-placeholder:hover svg {
  transform: scale(1.1) rotate(2deg);
  opacity: 1;
}

/* --- Floating Navbar --- */
.navbar-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 1000;
  transition: top 0.4s ease;
}

.navbar {
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-card);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-deep-green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(24, 60, 46, 0.15);
}

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

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

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.3s ease;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-deep-green);
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-actions .btn-navbar {
  padding: 8px 18px;
  min-height: 38px;
  font-size: var(--text-xs);
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-deep-green);
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 768px) {
  .hero {
    height: 90svh;
  }
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--color-deep-green), var(--color-dark));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  background: transparent;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-placeholder .placeholder-content {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 26, 20, 0.52),
    rgba(16, 26, 20, 0.35),
    rgba(16, 26, 20, 0.70)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 820px;
  width: 100%;
  padding: 24px;
}

.hero-panel {
  padding: 42px 32px;
  border-radius: var(--radius-2xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-label {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  margin-bottom: 18px;
}

.hero-title {
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.hero-badges {
  margin-top: 48px;
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-gold-soft);
}

/* --- Quick Booking Strip --- */
.quick-strip-section {
  padding: 0;
  margin-top: -45px;
  position: relative;
  z-index: 10;
}

.quick-strip {
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  border-right: 1px solid var(--border-soft);
  transition: all 0.35s ease;
}

.strip-item:last-child {
  border-right: none;
}

.strip-icon {
  background-color: var(--color-cream);
  color: var(--color-deep-green);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.strip-info {
  display: flex;
  flex-direction: column;
}

.strip-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.strip-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-deep-green);
  transition: color 0.3s ease;
}

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

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  text-align: left;
}

.about-p {
  font-size: var(--text-md);
  margin-bottom: 20px;
}

.about-highlights {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-main);
}

.about-highlight-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-green);
}

.about-media {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-card);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Rooms Section --- */
#rooms {
  padding-top: 120px;
}

.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.room-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.room-card.room-card-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.room-card.room-card-reverse .room-carousel {
  order: 2;
  border-radius: 0 36px 36px 0;
}

/* Room Carousel Container */
.room-carousel {
  position: relative;
  width: 100%;
  height: 560px;
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px 0 0 36px;
  background: rgba(230, 228, 218, 0.85);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-slide .image-placeholder,
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  font-weight: 800;
  color: var(--text-muted);
  background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(230,228,218,0.9));
  gap: 12px;
}

.image-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: var(--color-deep-green);
  opacity: 0.7;
}

.image-placeholder p.placeholder-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 0;
}

.image-placeholder p.todo-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-gold);
  margin: 0;
}

/* Badges inside Carousel */
.room-carousel .room-badges {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: var(--text-xs);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--text-main);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge.primary {
  background: var(--color-deep-green);
  color: var(--color-white);
  border-color: transparent;
}

.badge.gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: transparent;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-main);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 26, 20, 0.08);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: 22px;
}

.carousel-btn.next {
  right: 22px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 24px;
  background: var(--color-gold, #C8A45D);
}

/* Room Info side */
.room-info {
  padding: clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}

.room-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.room-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.room-floor {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.room-spec {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 18px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
}

.room-amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
}

.room-amenity svg {
  width: 14px;
  height: 14px;
  fill: var(--color-sage);
}

.room-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-top: 24px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.price-item {
  display: flex;
  flex-direction: column;
}

.room-price-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.room-price-value {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-main);
  white-space: nowrap;
}

.room-price-value small {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.room-price-note {
  font-size: 11px;
  color: var(--color-gold);
  font-weight: 700;
  margin-top: 6px;
}

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

.room-actions .btn {
  width: 100%;
}


/* --- Pricing Section --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  border-radius: var(--radius-xl);
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(24, 60, 46, 0.06), rgba(255, 255, 255, 0.38));
  border-color: var(--color-sage);
}

.price-card-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 20px;
}

.price-card-title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-deep-green);
  margin-bottom: 16px;
}

.price-display-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-row-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}

.price-row-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-row-value span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-soft);
}

.price-card-body {
  flex-grow: 1;
  margin-bottom: 28px;
}

.price-card-bullet {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-details-list li {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-details-list svg {
  width: 14px;
  height: 14px;
  fill: var(--color-green);
  flex-shrink: 0;
}

.pricing-extra-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.extra-price-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.extra-price-info {
  display: flex;
  flex-direction: column;
}

.extra-price-title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-deep-green);
  margin-bottom: 4px;
}

.extra-price-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.extra-price-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold);
}

/* --- Amenities Section --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.amenity-card-icon {
  background-color: var(--color-cream);
  color: var(--color-deep-green);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.amenity-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.amenity-card-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-main);
}

.amenity-card-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- House Rules Section --- */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: stretch;
}

.rules-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rule-item {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rule-icon-box {
  background-color: rgba(24, 60, 46, 0.07);
  color: var(--color-deep-green);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.rule-icon-box svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.rule-text {
  display: flex;
  flex-direction: column;
}

.rule-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.rule-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.rules-special-card {
  border-radius: var(--radius-xl);
  padding: 34px;
  background: linear-gradient(135deg, rgba(200, 164, 93, 0.08) 0%, rgba(24, 60, 46, 0.08) 100%), var(--glass-strong);
  border: 1px solid var(--color-gold-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.rules-special-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.rules-special-header svg {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
}

.rules-special-title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-deep-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rules-special-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-deep-green);
  margin-bottom: 24px;
}

.rules-special-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay,
.gallery-title,
.gallery-caption,
.gallery-label,
.image-caption,
.image-label,
.photo-title,
.photo-overlay {
  display: none !important;
}


/* --- Location Section --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.location-info h2 {
  text-align: left;
}

.location-p {
  font-size: var(--text-md);
  margin-bottom: 28px;
}

.address-box {
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.address-icon-box {
  background-color: var(--color-cream);
  color: var(--color-deep-green);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.address-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.address-details {
  display: flex;
  flex-direction: column;
}

.address-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.address-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
}

.map-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-card);
}

.map-iframe-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  color: var(--text-muted);
  gap: 14px;
  border: 1px solid var(--border-soft);
}

.map-iframe-placeholder svg {
  width: 36px;
  height: 36px;
  fill: var(--color-green);
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text-main);
}

.faq-icon-box {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: rgba(24, 60, 46, 0.05);
  color: var(--color-deep-green);
}

.faq-icon-box svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-answer-inner {
  padding: 0 28px 24px 28px;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active {
  border-color: rgba(200, 164, 93, 0.4);
}

.faq-item.active .faq-icon-box {
  transform: rotate(180deg);
  background-color: var(--color-deep-green);
  color: var(--color-white);
}

/* --- CTA Section --- */
.cta-card-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.cta-card {
  border-radius: var(--radius-2xl);
  padding: 56px 48px;
  text-align: center;
  background: linear-gradient(145deg, var(--color-deep-green) 0%, var(--color-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  color: var(--color-white);
}

.cta-card h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 38px auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, var(--color-deep-green) 0%, var(--color-dark) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px 0;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold-soft);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer-links a {
  font-size: var(--text-sm);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold-soft);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social-link:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .strip-item:nth-child(2) {
    border-right: none;
  }
  
  .strip-item:nth-child(3) {
    border-bottom: none;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    max-width: 400px;
  }

  .room-card,
  .room-card.room-card-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .room-card.room-card-reverse .room-carousel {
    order: 0;
  }

  .room-carousel {
    height: 330px;
    min-height: 330px;
    border-radius: 30px 30px 0 0;
  }

  .carousel-slide img,
  .carousel-slide .image-placeholder,
  .image-placeholder {
    min-height: 330px;
    height: 330px;
  }

  .room-info {
    padding: 26px;
  }

  .room-actions {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body,
  .hero,
  .navbar {
    overflow-x: hidden;
  }

  /* Hero Sizing and Spacing */
  .hero {
    padding-top: 92px !important;
    padding-bottom: 32px;
    min-height: auto;
    height: auto;
  }

  .hero-inner,
  .hero-content,
  .hero-content-wrap,
  .hero-card,
  .hero-panel {
    padding-top: 20px;
    min-height: auto;
    padding-bottom: 24px;
    padding-inline: 18px;
    border-radius: 30px;
  }

  .hero .container {
    width: 100%;
    max-width: 100%;
  }

  /* Headings */
  h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero h1,
  .hero-title,
  .hero-heading {
    font-size: clamp(2.1rem, 10vw, 3.1rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  h3 {
    font-size: 1.45rem;
  }

  p {
    font-size: 0.95rem;
  }

  .hero p,
  .hero-subtitle,
  .hero-description,
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 32ch;
    margin: 0 auto 20px;
    text-align: center;
  }
  
  /* Navbar Mobile Layout */
  .navbar-wrapper,
  .navbar-wrap,
  header.navbar-wrap,
  .navbar {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .navbar-wrapper,
  .navbar-wrap {
    position: fixed !important;
    top: 12px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    pointer-events: none;
    transform: none !important;
  }

  .navbar {
    pointer-events: auto;
    position: relative !important;
    width: calc(100% - 24px) !important;
    max-width: 430px;
    margin: 0 auto !important;
    min-height: 58px;
    padding: 8px 10px !important;
    border-radius: 999px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    overflow: visible !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .navbar-logo,
  .navbar-brand,
  .brand {
    display: flex !important;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }

  .navbar-logo img,
  .logo-img,
  .brand-logo {
    display: block !important;
    width: 36px !important;
    height: 36px !important;
    object-fit: contain;
    flex-shrink: 0;
  }

  .navbar-brand-name,
  .brand-name {
    display: block !important;
    font-size: 0.95rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Mobile nav links — hidden by default, shown when .active added by JS */
  .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 18px 45px rgba(15, 42, 31, 0.16);
    border: 1px solid rgba(15, 42, 31, 0.08);
    z-index: 99999;
  }

  .nav-links.active,
  .nav-links.open,
  .navbar.menu-open .nav-links {
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
    color: var(--text-main, #102218);
    text-align: left;
    text-decoration: none;
  }

  .nav-links a:hover {
    background: rgba(15, 42, 31, 0.08);
  }

  .nav-cta,
  .navbar .btn,
  .book-now-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 38px;
    padding: 8px 13px;
    font-size: 0.78rem;
    border-radius: 999px;
    white-space: nowrap;
  }

  .navbar-actions {
    margin-right: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hamburger,
  .menu-toggle {
    display: grid !important;
    place-items: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
  }
  
  /* hamburger lines animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  /* Quick Strip Mobile - Prevent clipping and overlapping */
  .quick-booking-strip,
  .booking-strip,
  .hero-booking-strip,
  .quick-strip-section {
    position: static !important;
    margin-top: 28px;
    width: 100%;
    transform: none !important;
    padding: 14px 16px;
    border-radius: 24px 24px 0 0;
  }

  .quick-booking-strip .btn,
  .booking-strip .btn,
  .hero-booking-strip .btn,
  .quick-strip-section .btn {
    min-height: 42px;
    font-size: 0.9rem;
  }
  
  .quick-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  
  .strip-item {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    padding: 12px 8px;
  }
  
  .strip-item:last-child {
    border-bottom: none;
  }
  
  /* Hero buttons & Compact Actions */
  .hero-actions,
  .hero-buttons {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-buttons .btn,
  .hero-buttons a,
  .hero-buttons button,
  .hero .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.94rem;
    border-radius: 999px;
  }

  /* Mobile highlight badges scaling */
  .hero-badges,
  .hero-highlights,
  .highlight-badges,
  .hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 310px;
    margin: 0 auto;
  }

  .hero-badges span,
  .hero-highlights span,
  .highlight-badges span,
  .hero-badge,
  .hero-chip {
    font-size: 0.72rem;
    line-height: 1;
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
  }
  
  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-media {
    height: 280px;
    order: -1;
  }
  
  /* Rooms Grid */
  .rooms-grid {
    gap: 22px;
  }
  
  /* Pricing Grid */
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-extra-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Amenities */
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .amenity-card {
    padding: 16px 14px;
    border-radius: 20px;
    min-height: auto;
    height: auto;
  }

  .amenity-icon,
  .amenity-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .amenity-icon svg,
  .amenity-icon i,
  .amenity-card-icon svg,
  .amenity-card-icon i {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .amenity-card h3,
  .amenity-card-title {
    font-size: 0.95rem;
    line-height: 1.25;
    margin-bottom: 8px;
    font-weight: 800;
  }

  .amenity-card p,
  .amenity-card-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin: 0;
  }
  
  /* Rules */
  .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .rules-special-card {
    padding: 24px;
  }
  
  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  /* Location Grid */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .map-wrapper {
    height: 280px;
  }
  
  /* CTA */
  .cta-card {
    padding: 38px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons a,
  .cta-buttons button {
    width: 100%;
  }

  /* Performance overrides for mobile devices */
  .glass,
  .glass-card,
  .glass-strong,
  .glass-dark,
  .navbar,
  .navbar-wrapper,
  .room-card,
  .room-carousel {
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
  }

  .room-card:hover,
  .card:hover,
  .card-hover:hover,
  .btn:hover,
  .gallery-item:hover img {
    transform: none !important;
  }

  :root {
    --shadow-soft: none !important;
    --shadow-card: 0 8px 24px rgba(16, 26, 20, 0.06) !important;
    --shadow-strong: 0 12px 30px rgba(16, 26, 20, 0.10) !important;
  }
}

@media (max-width: 480px) {
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .room-carousel {
    min-height: 280px;
    height: 280px;
  }

  .carousel-slide img,
  .carousel-slide .image-placeholder,
  .image-placeholder {
    min-height: 280px;
    height: 280px;
  }
}

/* --- Accessibility / Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero-video-wrapper {
    display: none;
  }
  
  .hero-video-placeholder {
    animation: none !important;
  }
}

/* Object Position Helper Classes */
.object-center {
  object-position: center;
}

.object-top {
  object-position: top;
}

.object-bottom {
  object-position: bottom;
}

.object-left {
  object-position: left center;
}

.object-right {
  object-position: right center;
}

/* Performance CSS Utilities */
img {
  max-width: 100%;
  height: auto;
}

.room-carousel img,
.carousel-slide img {
  height: 100%;
}

section {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

/* Very small phones hero panel tuning */
@media (max-width: 390px) {
  .hero h1,
  .hero-title,
  .hero-heading {
    font-size: 1.95rem;
    line-height: 0.94;
  }

  .hero-chip:nth-child(n+5),
  .hero-badge:nth-child(n+5),
  .hero-badges span:nth-child(n+5),
  .hero-highlights span:nth-child(n+5) {
    display: none !important;
  }

  .amenities-grid {
    gap: 10px;
  }

  .amenity-card {
    padding: 14px 12px;
    border-radius: 18px;
  }

  .amenity-card h3,
  .amenity-card-title {
    font-size: 0.88rem;
  }

  .amenity-card p,
  .amenity-card-desc {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .amenity-icon,
  .amenity-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }
}

/* Very small screens brand name layout adjustments */
@media (max-width: 360px) {
  .navbar-brand-name,
  .brand-name {
    display: none !important;
  }

  .navbar-logo,
  .brand,
  .navbar-brand {
    flex: 0 0 auto !important;
  }
}

/* Ultra narrow devices layout alignment */
@media (max-width: 330px) {
  .amenities-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Room Preference Switcher */
.room-choice-box {
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 42, 31, 0.12);
}

.choice-price-area {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.75;
}

.dynamic-price {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.04em;
}

.price-unit {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.choice-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.choice-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.choice-btn {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(15, 42, 31, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-main);
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
}

.choice-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.choice-btn.active {
  background: var(--color-dark, #0F2A1F);
  color: white;
  border-color: var(--color-dark, #0F2A1F);
}

.choice-note {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .choice-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .dynamic-price {
    font-size: 2rem;
  }

  .choice-btn {
    min-height: 44px;
    font-size: 0.9rem;
  }
}

/* ── Mobile Nav Final Overrides (highest priority) ──────────────────────────── */
@media (max-width: 768px) {
  /* Ensure dropdown is never clipped by any ancestor */
  .navbar-wrapper,
  .navbar-wrap,
  header.navbar-wrap {
    overflow: visible !important;
  }

  .navbar {
    overflow: visible !important;
  }

  /* Hide brand tag on mobile */
  .navbar-brand-tag,
  .brand-tag {
    display: none !important;
  }

  /* Nav links — full-width dropdown below navbar */
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 18px 45px rgba(15, 42, 31, 0.16);
    border: 1px solid rgba(15, 42, 31, 0.08);
    z-index: 99999;
  }

  .nav-links.active,
  .nav-links.open,
  .navbar.menu-open .nav-links {
    display: flex !important;
  }

  /* Hamburger button */
  .menu-toggle {
    display: grid !important;
    place-items: center;
    cursor: pointer;
    z-index: 100000;
    pointer-events: auto !important;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ── Nearby Locations Section ───────────────────────────────────────────────── */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nearby-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 42, 31, 0.08);
  box-shadow: 0 12px 34px rgba(15, 42, 31, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.nearby-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--color-deep-green-glow, rgba(15, 42, 31, 0.06));
  color: var(--color-deep-green, #0F2A1F);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.nearby-icon svg {
  width: 22px;
  height: 22px;
}

.nearby-card:hover .nearby-icon {
  background: var(--color-gold);
  color: white;
}

.nearby-distance {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(207, 166, 79, 0.14);
  color: var(--color-gold);
  font-weight: 900;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.nearby-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
}

.nearby-category {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.nearby-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.nearby-seo-note {
  margin-top: 40px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(15, 42, 31, 0.03);
  border-left: 4px solid var(--color-gold);
  text-align: left;
}

.nearby-seo-note p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .nearby-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .nearby-card {
    padding: 16px 14px;
    border-radius: 20px;
  }

  .nearby-card h3 {
    font-size: 0.92rem;
  }

  .nearby-card p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .nearby-distance {
    font-size: 0.72rem;
    padding: 6px 9px;
  }
}

@media (max-width: 340px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Booking Choice Modal ─────────────────────────────────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 22, 16, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-modal-card {
  position: relative;
  width: min(100%, 430px);
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 252, 244, 0.96);
  border: 1px solid rgba(15, 42, 31, 0.12);
  box-shadow: 0 28px 80px rgba(15, 42, 31, 0.22);
  text-align: center;
  z-index: 2;
}

.booking-modal-card h3 {
  margin: 8px 0 10px;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
}

.booking-modal-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15, 42, 31, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.booking-modal-close:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.booking-modal-actions {
  display: grid;
  gap: 12px;
}

.booking-modal-actions a {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
}

body.booking-modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .booking-modal-card {
    padding: 26px 22px;
    border-radius: 28px;
  }

  .booking-modal-card h3 {
    font-size: 1.5rem;
  }
}


