/* ============================================================
   THE RETREAT HOTEL Ã¢â‚¬â€œ Main Stylesheet
   Author: Web Designer
   Version: 1.0
   ============================================================ */

:root {
  --primary: #007934;
  --primary-dark: #005a27;
  --primary-light: #007934;
  --secondary: #007934;
  --secondary-dark: #6f9c2e;
  --white: #ffffff;
  --bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #777777;
  --border: #e5e0d8;
  --overlay: rgba(0, 0, 0, 0.40);
  --overlay-dark: rgba(0, 0, 0, 0.60);

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-py: 90px;
  --section-py-sm: 60px;
  --container: 1240px;
  --container-pad: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESET & BASE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  touch-action: manipulation;
}


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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ UTILITY CLASSES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);

}

.small-title-section {
  max-width: 620px;
  margin: auto;
}

.section-title span {
  color: var(--primary);
  font-style: italic;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
 /* max-width: 620px; */
  margin: auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ BUTTONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}
.mem-offer-actions .btn-primary {
  color: var(--primary);
  background: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-dark);

  color: #ffffff;
}

.btn-secondary {
  background: var(--secondary);
  color: #ffffff;
}
.ph-split-text .btn-secondary {
  color: var(--secondary);
  border-radius: 5px;
  border: 2px solid var(--secondary);
  background: #ffffff;
  width: 55%;
}
.cta-band .btn-secondary {
  background: var(--primary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;}

.btn-outline {
  border: 1.5px solid var(--white);
  color: var(--white);
}

.cta-band .btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Arrow icon */
.btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0;
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 var(--container-pad);
  max-width: var(--container);
  margin: 0 auto;
}

#navbar.scrolled .nav-inner {
  height: 68px;
}

/* Logo */
.nav-logo img {
  height: 62px;
  width: auto;
  transition: height 0.4s var(--ease), filter 0.4s var(--ease);
  /* filter: brightness(0) invert(1); */
}

#navbar.scrolled .nav-logo img {
  height: 50px;
  filter: none;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  /* color: rgba(255,255,255,0.92); */
  padding: 8px 9px;
  border-radius: 2px;
  transition: color 0.3s, background 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--secondary);
  color: #ffffff;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

#navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

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

#navbar.scrolled .nav-links a:hover {
  /* color: #ffffff; */
}

.nav-book-btn {
  background: var(--secondary);
  color: #ffffff;
  padding: 10px 40px !important;
  border-radius: 2px;
  margin-left: 30px;
}

.nav-book-btn {
  color: #ffffff !important;
}
.nav-book-btn:hover {
  background: var(--primary) !important;

  color: #ffffff;}

.nav-book-btn::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: var(--transition);
}

#navbar.scrolled .nav-hamburger span {
  background: var(--text-dark);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu Ã¢â‚¬â€œ hidden by default at ALL widths; shown only via .open on mobile */
.nav-mobile {
  display: none !important;
  /* overridden below at max-width: 1024px */
  flex-direction: column;
  background: var(--white);
  padding: 20px var(--container-pad) 30px;
  border-top: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-mobile.open {
  display: none !important;
}

/* Desktop: always off Ã¢â‚¬â€œ open only applies on mobile */

.nav-mobile a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: var(--primary);
}

.nav-mobile .btn {
  margin-top: 16px;
  justify-content: center;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ DESKTOP DROPDOWN SUBMENU Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.has-dropdown {
  position: relative;
}

/* Chevron arrow icon */
.dropdown-arrow {
  font-size: 0.6rem;
  margin-left: 2px;
  transition: transform 0.3s var(--ease);
  vertical-align: middle;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.desk-banner {
  display: block;
}
.ph-dark.mob-banner {
  display: none;
}


/* Dropdown panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  min-width: 280px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 2px solid var(--secondary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 1100;
  padding: 8px 0;
  list-style: none;
}

/* Small arrow pointer on top */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--secondary);
}

/* Show on hover (desktop) */
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.25s, background 0.25s, padding-left 0.25s;
  border-radius: 0;
}

.dropdown-menu li a i {
  color: var(--secondary);
  font-size: 0.82rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-menu li a:hover {
  color: #ffffff;
  background: var(--primary-light);
  padding-left: 26px;
}

.dropdown-menu li a:hover i {
  color: var(--white);
}

/* No automatic divider before last dropdown item */
.dropdown-menu li:last-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* Override nav-links underline effect on dropdown toggle */
.has-dropdown>.dropdown-toggle::after {
  left: 12px;
  right: 24px;
}

.mobile-dropdown {
  border-bottom: 1px solid var(--border);
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.3s;
}

.mobile-dropdown-toggle:hover {
  color: var(--primary);
}

.mobile-dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.3s var(--ease);
  color: var(--text-light);
}

.mobile-dropdown-toggle[aria-expanded="true"] .mobile-dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-dropdown-toggle[aria-expanded="true"] {
  color: var(--primary);
}

/* Mobile submenu panel (accordion) */
.mobile-submenu {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s var(--ease);
}

.mobile-submenu.open {
  grid-template-rows: 1fr;
}

/* Inner wrapper needed for grid animation */
.mobile-submenu>* {
  overflow: hidden;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: none !important;
  transition: color 0.25s, padding-left 0.25s;
}

.mobile-submenu a i {
  color: var(--secondary);
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-submenu a:hover {
  color: var(--primary);
  padding-left: 22px;
}

.mobile-submenu a:hover i {
  color: var(--primary);
}

/* Last mobile submenu item Ã¢â‚¬â€œ check availability CTA */
.mobile-submenu a:last-child {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.hero-slide.active img {
  transform: scale(1.0);
  transition: transform 7s ease-out;
}

.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.50);
  background: transparent;
  transition: all 0.4s var(--ease);
  padding: 0;
  cursor: pointer;
}

.hero-dot:hover {
  border-color: var(--white);
}

.hero-dot.active {
  width: 32px;
  border-radius: 6px;
  background: var(--secondary);
  border-color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.70) 0%,
      rgba(0, 0, 0, 0.25) 50%,
      rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--container-pad) 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
  color: #ffffff;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-title em {
  font-style: italic;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

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

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ BOOKING BAR Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.booking-bar {
  background: var(--primary);
  color: #ffffff;
  padding: 0;
  position: relative;
  z-index: 10;
}

.booking-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: background 0.3s;
}

.booking-field:hover {
  background: rgba(255, 255, 255, 0.08);
}

.booking-field label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}

.booking-field input,
.booking-field select {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  width: 100%;
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.booking-field select option {
  color: var(--text-dark);
}

.booking-submit {
  background: var(--secondary);
  color: #ffffff;
  padding: 0 40px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.booking-submit:hover {
  background: var(--secondary-dark);

  color: #ffffff;}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ INTRO / ABOUT SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.intro {
  padding: var(--section-py) 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .section-label {
  display: block;
}

.intro-text .section-title {
  margin-bottom: 22px;
}

.intro-text .section-desc {
  margin-bottom: 32px;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.intro-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 1.1rem;
}

.intro-feature-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.intro-feature-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Intro image collage */
.intro-images {
  position: relative;
  height: 560px;
}

.intro-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 75%;
  object-fit: cover;
  border-radius: 2px;
}

.intro-img-sm {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 45%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: -8px -8px 0 var(--secondary);
}

.intro-badge {
  position: absolute;
  bottom: 60px;
  left: -20px;
  background: var(--primary);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 121, 52, 0.3);
  z-index: 3;
}

.intro-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.intro-badge .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ STATS STRIP Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.stats {
  background: var(--primary);
  color: #ffffff;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-num {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num sup {
  font-size: 1.5rem;
  vertical-align: super;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ROOMS SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.rooms {
  padding: var(--section-py) 0;
  background: #f9f7f5;
}

.rooms-header {
  text-align: center;
  margin-bottom: 56px;
}

.rooms-header .section-desc {
  margin: 16px auto 0;
  text-align: center;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.room-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.room-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.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.06);
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.room-body {
  padding: 28px;
}

.room-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.room-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-amenity {
  font-size: 0.72rem;
  color: #ffffff;
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.room-price {
  font-size: 0.78rem;
  color: var(--text-light);
}

.room-price strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  display: block;
  line-height: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HIGHLIGHTS / EXPERIENCE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.experience {
  padding: var(--section-py) 0;
  background: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.experience-media {
  position: relative;
}

.exp-img-top {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.exp-img-bottom {
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  position: absolute;
  bottom: -50px;
  right: -30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 6px solid var(--white);
}

.exp-card {
  position: absolute;
  top: 30px;
  left: -30px;
  background: var(--secondary);
  color: #ffffff;
  padding: 18px 22px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.experience-text {
  padding-bottom: 50px;
}

.experience-text .section-title {
  margin-bottom: 20px;
}

.experience-text .section-desc {
  margin-bottom: 36px;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.exp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}

.exp-list-item:hover {
  border-color: #ffffff;
  background: var(--primary-light);
}

.exp-list-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.exp-list-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.exp-list-text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ WEDDING SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.weddings {
  padding: var(--section-py) 0;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.weddings-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  display: none;
}

.weddings-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.weddings-text .section-label {
  color: var(--secondary);
}

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

.weddings-text .section-title span {
  color: var(--secondary);
}

.weddings-text .section-desc {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.wedding-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.wedding-feat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 20px;
  transition: background 0.3s;
}

.wedding-feat:hover {
  background: rgba(255, 255, 255, 0.12);
}

.wedding-feat .feat-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.wedding-feat strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.wedding-feat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.weddings-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.w-img {
  overflow: hidden;
  border-radius: 2px;
}

.w-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.w-img:hover img {
  transform: scale(1.06);
}

.w-img.tall {
  grid-row: span 2;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ DINING SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.dining {
  padding: var(--section-py) 0;
  background: #f9f7f5;
}

.dining-header {
  text-align: center;
  margin-bottom: 56px;
}

.dining-header .section-desc {
  margin: 16px auto 0;
  text-align: center;
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dining-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.dining-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.dining-img {
  height: 200px;
  overflow: hidden;
}

.dining-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.dining-card:hover .dining-img img {
  transform: scale(1.07);
}

.dining-body {
  padding: 22px;
}

.dining-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.dining-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.dining-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FACILITIES SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.facilities {
  padding: var(--section-py) 0;
  background: var(--white);
}

.fac-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 70px;
  align-items: start;
}

.fac-text .section-title {
  margin-bottom: 20px;
}

.fac-text .section-desc {
  margin-bottom: 36px;
}

.fac-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fac-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.fac-item:first-child {
  border-top: 1px solid var(--border);
}

.fac-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.fac-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}

.fac-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 16px;
}

.fac-img {
  overflow: hidden;
  border-radius: 2px;
}

.fac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.fac-img:hover img {
  transform: scale(1.06);
}

.fac-img.wide {
  grid-column: span 2;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ TESTIMONIALS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.testimonials {
  padding: var(--section-py) 0;
  background: #f9f7f5;

  color: #ffffff;}

.testi-header {
  text-align: center;
  margin-bottom: 56px;
}

.testi-header .section-desc {
  margin: 16px auto 0;
  text-align: center;
}

.testi-track-wrap {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s var(--ease);
}

.testi-card {
  background: var(--white);
  border-radius: 2px;
  padding: 36px;
  min-width: calc(33.333% - 19px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testi-stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testi-via {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testi-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 121, 52, 0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testi-dot.active {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.3);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ GALLERY STRIP Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.gallery-strip {
  padding: var(--section-py) 0;
  background: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.gal-item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gal-item:hover img {
  transform: scale(1.07);
}

.gal-item.span2 {
  grid-column: span 2;
}

.gal-item.tall {
  grid-row: span 2;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay-icon {
  color: var(--white);
  font-size: 2rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ LOCATION SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.location {
  padding: var(--section-py) 0;
  background: #f9f7f5;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.location-text .section-title {
  margin-bottom: 20px;
}

.location-text .section-desc {
  margin-bottom: 32px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.loc-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.loc-detail-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.loc-detail-text span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.location-map {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: 440px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ENQUIRY FORM Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.enquiry {
  padding: var(--section-py) 0;
  background: var(--white);
}

.enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.enquiry-text .section-title {
  margin-bottom: 20px;
}

.enquiry-text .section-desc {
  margin-bottom: 36px;
}

.enquiry-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}

.contact-card:hover {
  border-color: #ffffff;
  background: var(--primary-light);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.contact-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-card a,
.contact-card span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
}

.contact-card:hover a {
  color: var(--primary);
}

/* Form */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ OTHER PROPERTIES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.properties {
  padding: var(--section-py) 0;
  background: #f9f7f5;
}

.properties-header {
  text-align: center;
  margin-bottom: 56px;
}

.props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.prop-card {
  position: relative;
  height: 320px;
  border-radius: 2px;
  overflow: hidden;
}

.prop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.prop-card:hover img {
  transform: scale(1.06);
}

.prop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.prop-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.prop-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.prop-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.prop-card:hover .prop-link {
  opacity: 1;
  transform: translateY(0);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
footer {
  background: #0f1f14;
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-brand .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.3s, color 0.3s;
}

.footer-social a:hover {
  background: var(--secondary);
  color: #ffffff;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact .fc-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ BACK TO TOP Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s, background 0.3s;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 121, 52, 0.35);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--primary-dark);

  color: #ffffff;}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SCROLL ANIMATIONS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â‚¬â€œ TABLET Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {

  :root {
    --section-py: 70px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Mobile menu: override the desktop !important lock Ã¢â‚¬â€ show when .open is active */
  .nav-mobile {
    display: none !important;
  }

  .nav-mobile.open {
    display: flex !important;
  }

  /* Ensure desktop dropdown never shows on tablet/mobile */
  .has-dropdown {
    position: static;
  }

  .dropdown-menu {
    display: none !important;
  }

  .intro-grid,
  .experience-grid,
  .weddings-inner,
  .location-grid,
  .enquiry-inner,
  .fac-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-images {
    height: 400px;
  }

  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dining-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-left: 30px;
  }

  .weddings-gallery {
    grid-template-rows: auto;
  }

  .testi-card {
    min-width: calc(50% - 14px);
  }

  .exp-img-bottom {
    display: none;
  }

  .exp-card {
    display: none;
  }

  .fac-images {
    grid-template-rows: 250px 250px 250px;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .gal-item.span2 {
    grid-column: span 1;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â‚¬â€œ MOBILE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 640px) {

  :root {
    --section-py: 56px;
    --container-pad: 18px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-scroll {
    display: none;
  }

  .booking-bar-inner {
    flex-direction: column;
  }

  .booking-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .booking-submit {
    padding: 18px;
    justify-content: center;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .intro-images {
    height: 280px;
  }

  .intro-badge {
    display: none;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .dining-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .wedding-features {
    grid-template-columns: 1fr;
  }

  .weddings-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .w-img {
    height: 200px;
  }

  .w-img.tall {
    height: 200px;
  }

  .fac-images {
    grid-template-columns: 1fr;
  }

  .fac-img.wide {
    grid-column: span 1;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gal-item {
    height: 160px;
  }

  .gal-item.tall {
    grid-row: span 1;
  }

  .props-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .testi-card {
    min-width: calc(100% - 0px);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-media {
    display: none;
  }

  .gal .wed-gal-grid {
  display:grid; 
  grid-template-columns: repeat(1, 1fr); 
  gap: 12px;
}
.wedd .wedding-gallery {
  display:grid;  
  grid-template-columns: repeat(1, 1fr); 
}
.swim .swim-gal {
  display: grid; 
  grid-template-columns: repeat(1,1fr); 
}
.ph-split-text .btn-secondary {
  width: 100%;
}
.swim-pool {
  display: none;
}

.ph-dark.desk-banner {
  display: none;
}
.ph-dark.mob-banner {
  display: block;
}


}



/* ============================================================
   INNER PAGES - Shared Styles
   ============================================================ */

/* PAGE HERO BANNER */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.20) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 10px 0 16px;
  max-width: 700px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--secondary);
}

.page-hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.80);
  max-width: 500px;
  line-height: 1.7;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ BREADCRUMB Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.breadcrumb {
  /* display: flex; */
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb i {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.40);
}

.breadcrumb span {
  color: var(--secondary);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ROOMS INTRO SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.rooms-intro-section {
  padding: 56px 0;
  background: var(--primary-light);
  border-bottom: 1px solid var(--border);

  color: #ffffff;}

.rooms-intro-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.rooms-intro-text {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.8;
  max-width: 680px;
  flex: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ROOMS LISTING (rooms.html) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.rooms-listing {
  padding: var(--section-py) 0;
  background: var(--white);
}

.room-listing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 80px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.07);
  transition: box-shadow var(--transition);
}

.room-listing-card:hover {
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.12);
}

.room-listing-card--reverse {
  direction: rtl;
}

.room-listing-card--reverse>* {
  direction: ltr;
}

.rlc-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.rlc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.room-listing-card:hover .rlc-image img {
  transform: scale(1.04);
}

.rlc-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.rlc-body {
  background: var(--white);
  padding: 52px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rlc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 8px 0 18px;
  line-height: 1.15;
}

.rlc-desc {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 440px;
}

.rlc-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 36px;
  list-style: none;
}

.rlc-amenities li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
}

.rlc-amenities li i {
  color: var(--primary);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.rlc-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CTA BAND Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.cta-band {
  background: #f9f7f5;
  color: #000000;
  padding: 72px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text .section-label {
 /* color: rgba(255, 255, 255, 0.70);   */
}

.cta-band-text .section-title {
  /* color: var(--white); */
  margin: 8px 0 12px;
}

.cta-band-text .section-title span {
  color: var(--secondary);
}

.cta-band-text .section-desc {
 /* color: rgba(255, 255, 255, 0.75); */
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ ROOM DETAIL (individual room pages) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.room-detail {
  padding: var(--section-py) 0;
  background: var(--white);
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.room-detail-gallery {
  position: sticky;
  top: 100px;
}

.rdg-main {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.rdg-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.rdg-main:hover img {
  transform: scale(1.03);
}

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

.rdg-thumbs img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.4s var(--ease);
}

.rdg-thumbs img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.room-detail-info {
  padding-top: 10px;
}

.room-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 10px 0 20px;
  line-height: 1.15;
}

.room-detail-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
}

.room-detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.rdh-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(0, 121, 52, 0.15);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
}

.rdh-item i {
  font-size: 0.85rem;
}

.room-detail-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ AMENITIES SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.room-amenities-section {
  padding: var(--section-py) 0;
  background: #f9f7f4;
}

.room-amenities-header {
  text-align: center;
  margin-bottom: 52px;
}

.room-amenities-header .section-desc {
  margin: 14px auto 0;
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
}

.ram-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.ram-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 121, 52, 0.08);
  transform: translateY(-2px);
  color: var(--text-dark);
}

.ram-item i {
  color: var(--secondary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXPLORE OTHER ROOMS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.other-rooms {
  padding: var(--section-py) 0;
  background: var(--white);
}

.other-rooms-header {
  text-align: center;
  margin-bottom: 48px;
}

.other-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.or-card {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  color: inherit;
}

.or-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.or-img {
  overflow: hidden;
  height: 220px;
}

.or-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.or-card:hover .or-img img {
  transform: scale(1.06);
}

.or-body {
  padding: 22px 24px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.or-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
}

.or-body span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.or-card:hover .or-body span {
  gap: 10px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE: INNER PAGES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {
  .room-listing-card {
    grid-template-columns: 1fr;
  }

  .room-listing-card--reverse {
    direction: ltr;
  }

  .rlc-image {
    min-height: 320px;
  }

  .rlc-body {
    padding: 36px 36px 32px;
  }

  .room-detail-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .room-detail-gallery {
    position: static;
  }

  .room-amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

  .rooms-intro-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 55vh;
    min-height: 380px;
  }

  .page-hero-content {
    padding-bottom: 40px;
  }

  .rlc-body {
    padding: 28px 24px;
  }

  .rlc-amenities {
    grid-template-columns: 1fr 1fr;
  }

  .room-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-rooms-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rdg-thumbs {
    grid-template-columns: 1fr 1fr;
  }

  .rdg-main img {
    height: 280px;
  }

  .rdg-thumbs img {
    height: 130px;
  }
}

@media (max-width: 480px) {
  .room-amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .other-rooms-grid {
    grid-template-columns: 1fr;
  }
  .or-body {
    padding: 15px 15px;
    display: inline-block;
  }

  .rlc-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-detail-cta {
    flex-direction: column;
  }

  .room-detail-highlights {
    gap: 8px;
  }

  .rdh-item {
    font-size: 0.75rem;
    padding: 7px 14px;
  }
}

/* ============================================================
   6 UNIQUE PAGE HERO STYLES
   1. ph-split       Ã¢â€ â€™ rooms.html        (Split Panel)
   2. ph-centered    Ã¢â€ â€™ deluxe-room.html  (Centered Ornamental)
   3. ph-right       Ã¢â€ â€™ executive-room.html (Right-Aligned Accent)
   4. ph-dark        Ã¢â€ â€™ superior-suite.html (Dark Luxury Minimal)
   5. ph-glass       Ã¢â€ â€™ deluxe-suite.html (Frosted Glass Card)
   6. ph-royal       Ã¢â€ â€™ presidential-suite.html (Royal Crown)
   ============================================================ */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Breadcrumb variants Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.breadcrumb--dark {
  color: var(--text-mid);
}

.breadcrumb--dark a {
  color: var(--text-mid);
}

.breadcrumb--dark a:hover {
  color: var(--primary);
}

.breadcrumb--dark i {
  color: var(--border);
}

.breadcrumb--dark span {
  color: var(--primary);
}

.breadcrumb--center {
  justify-content: center;
}

.breadcrumb--gold a {
  color: rgba(201, 168, 76, 0.80);
}

.breadcrumb--gold a:hover {
  color: var(--secondary);
}

.breadcrumb--gold span {
  color: var(--secondary);
}

.breadcrumb--gold i {
  color: rgba(201, 168, 76, 0.40);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   1. SPLIT PANEL (rooms.html)
   Dark text panel on left, full image on right
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.ph-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.ph-split-text {
  background: #f9f7f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px 60px 40px;
  position: relative;
}

/* subtle green left accent bar */
.ph-split-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 2px;
  display: none;
}

.ph-split-text .section-label {
  color: var(--secondary);
}

.ph-split-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.ph-split-title em {
  font-style: italic;
  color: var(--secondary);
}

.ph-split-desc {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 36px;
}

.ph-split-image {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: background-position 0.6s ease;
}

.ph-split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 31, 20, 0.4) 0%, transparent 100%);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   2. CENTERED ORNAMENTAL (deluxe-room.html)
   Full bleed image, content centered with icon ornament
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.ph-centered {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ph-centered-overlay {
  position: absolute;
  inset: 0;
 /* background: rgba(0, 0, 0, 0.60); */
}

.ph-centered-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 700px;
  margin: 0 auto;
}

/* Icon ornament row */
.ph-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.ph-ornament span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--secondary);
  color: #ffffff;
  opacity: 0.7;
}

.ph-ornament i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.ph-centered-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 10px 0 18px;
}

.ph-centered-title em {
  font-style: italic;
  color: var(--secondary);
}

.ph-centered-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
}

.ph-centered-divider {
  width: 80px;
  height: 1.5px;
  background: var(--secondary);
  color: #ffffff;
  margin: 0 auto;
  opacity: 0.7;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   3. RIGHT-ALIGNED WITH ACCENT (executive-room.html)
   Full image, text panel anchored to the right
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.ph-right {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ph-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.30) 50%,
      rgba(0, 0, 0, 0.05) 100%);
}

.ph-right-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.ph-right-panel {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 460px;
}

/* vertical gold accent bar */
.ph-right-accent {
  width: 3px;
  background: var(--secondary);
  color: #ffffff;
  border-radius: 2px;
  flex-shrink: 0;
  margin-right: 28px;
}

.ph-right-inner {
  padding: 40px 0;
}

.ph-right-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 10px 0 18px;
}

.ph-right-title em {
  font-style: italic;
  color: var(--secondary);
}

.ph-right-sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   4. DARK LUXURY MINIMAL (superior-suite.html)
   Very dark overlay, text block with gold rule above title
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.ph-dark {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ph-dark-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.25) 100%); */
}

.ph-dark-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  text-align: center;
}

.ph-dark-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 14px;
}

/* gold rule before title */
.ph-dark-rule {
  width: 50px;
  height: 2px;
  background: var(--secondary);
  color: #ffffff;
  margin: auto;

}

.ph-dark-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.ph-dark-title em {
  font-style: italic;
  color: var(--secondary);
}

.ph-dark-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 450px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   5. FROSTED GLASS CARD (deluxe-suite.html)
   Tall image, a frosted glass content card centered on top
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.ph-glass {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ph-glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.ph-glass-wrap {
  position: relative;
  z-index: 2;
}

.ph-glass-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 6px;
  padding: 50px 56px;
  max-width: 540px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.ph-glass-card .section-label {
  color: var(--secondary);
}

.ph-glass-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin: 10px 0 16px;
}

.ph-glass-title em {
  font-style: italic;
  color: var(--secondary);
}

.ph-glass-sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 30px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   6. ROYAL CROWN CENTERED (presidential-suite.html)
   Full-screen, center-aligned, gold crown icon, ornamental divider
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.ph-royal {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ph-royal-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.65); */
}

.ph-royal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
}

.ph-royal-crown {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ph-royal-crown i {
  color: var(--secondary);
  font-size: 1.3rem;
}

.ph-royal-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #000000;
  line-height: 1.08;
  margin: 10px 0 20px;
}

.ph-royal-title em {
  font-style: italic;
  color: var(--secondary);
}

/* ornamental three-part divider */
.ph-royal-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.ph-royal-ornament span {
  display: block;
  height: 1px;
  width: 80px;
  background: var(--secondary);
  color: #ffffff;
  opacity: 0.6;
}

.ph-royal-diamond {
  width: 7px !important;
  height: 7px !important;
  background: var(--secondary) !important;
  color: #ffffff;
  transform: rotate(45deg);
  border-radius: 1px;
  flex-shrink: 0;
  opacity: 1 !important;
}

.ph-royal-sub {
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE: All hero variants Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {
  .ph-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ph-split-text {
    padding: 60px 32px;
    order: 2;
  }

  .ph-split-text::before {
    display: none;
  }

  .ph-split-image {
    order: 1;
    min-height: 320px;
  }

  .ph-right-content {
    justify-content: flex-start;
  }

  .ph-right-panel {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ph-split-text {
    padding: 48px 24px;
  }

  .ph-centered {
    min-height: 480px;
  }

  .ph-dark {
    min-height: 440px;
  }

  .ph-glass {
    min-height: 500px;
  }

  .ph-royal {
    min-height: 520px;
  }

  .ph-glass-card {
    padding: 36px 28px;
  }

  .ph-right {
    min-height: 480px;
  }

  .ph-right-content {
    justify-content: flex-start;
  }

  .ph-right-panel {
    max-width: 100%;
  }

  .ph-right-accent {
    display: none;
  }

  .ph-right-inner {
    padding: 40px 0;
  }
}

/* ============================================================
   MEMBERSHIP PAGES
   membership.html + membership/club-membership-offer.html
   ============================================================ */

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MEMBERSHIP INTRO (two-column: text + image) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mem-intro {
  padding: var(--section-py) 0;
  background: var(--white);
}

.mem-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mem-intro-text .section-title {
  margin: 10px 0 20px;
}

.mem-intro-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.mem-intro-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* floating badge on image */
.mem-intro-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 4px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: none;
}

.mem-intro-badge i {
  font-size: 1.6rem;
  color: var(--white);
}

.mem-intro-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MEMBERSHIP BENEFITS GRID Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mem-benefits {
  padding: var(--section-py) 0;
  background: #f9f7f4;
}

.mem-benefits-header {
  text-align: center;
  margin-bottom: 56px;
}

.mem-benefits-header .section-desc {
  margin: 14px auto 0;
}

.mem-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mem-benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.mem-benefit-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.mbc-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;

  color: #ffffff;}

.mbc-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.mem-benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mem-benefit-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MEMBERSHIP OFFER CARD Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mem-offer-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.mem-offer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: var(--primary);
  color: #ffffff;
  border-radius: 6px;
  padding: 60px 64px;
  overflow: hidden;
  position: relative;
}

/* decorative large circle in background */
.mem-offer-card::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  pointer-events: none;
}

.mem-offer-card::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.10);
  pointer-events: none;
}

.mem-offer-text .section-label {
  color: rgba(255, 255, 255, 0.65);
}

.mem-offer-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin: 10px 0 18px;
  line-height: 1.15;
}

.mem-offer-title em {
  font-style: italic;
  color: var(--secondary);
}

.mem-offer-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.mem-offer-highlights {
  list-style: none;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.mem-offer-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 500;
}

.mem-offer-highlights li i {
  color: var(--white);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.mem-offer-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right side decorative badge */
.mem-offer-visual {
  position: relative;
  z-index: 2;
}

.mem-offer-badge-lg {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--white);
  background: rgb(255 255 255 / 85%);
  box-shadow: 0 0 0 12px rgba(201, 168, 76, 0.06);
}

.mem-offer-badge-lg i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.mem-offer-badge-lg span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.mem-offer-badge-lg strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: 0.05em;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ HOW TO APPLY STEPS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mem-apply {
  padding: var(--section-py) 0;
  background: #f9f7f4;
}

.mem-apply-header {
  text-align: center;
  margin-bottom: 56px;
}

.mem-apply-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
}

.mas-step {
  text-align: center;
  max-width: 240px;
  padding: 0 20px;
}

.mas-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}

.mas-step h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.mas-step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.mas-arrow {
  color: var(--secondary);
  font-size: 1.2rem;
  opacity: 0.5;
  flex-shrink: 0;
  padding: 0 10px;
}

.mem-apply-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MEMBERSHIP PRIVILEGES GRID (club offer page) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mem-privileges {
  padding: var(--section-py) 0;
  background: #f9f7f4;
}

.mem-privileges-header {
  text-align: center;
  margin-bottom: 52px;
}

.mem-privileges-header .section-desc {
  margin: 14px auto 0;
}

.mem-privileges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mpg-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.mpg-category:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.mpg-cat-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;

  color: #ffffff;}

.mpg-cat-icon i {
  font-size: 1.2rem;
  color: var(--white);
}

.mpg-category h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.mpg-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mpg-category ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.mpg-category ul li i {
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ MEMBERSHIP ENQUIRY FORM Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.mem-form-section {
  padding: var(--section-py) 0;
  background: var(--white);
}

.mem-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.mem-form-info .section-title {
  margin: 10px 0 18px;
}

.mem-form-contacts {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mfc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.mfc-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  color: #ffffff;}

.mfc-icon i {
  color: var(--white);
  font-size: 0.95rem;
}

.mfc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.mfc-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s;
}

a.mfc-value:hover {
  color: var(--primary);
}

/* Enquiry form card */
.mem-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.mem-form-box h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.mem-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mf-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.mf-group input,
.mf-group select,
.mf-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.mf-group input:focus,
.mf-group select:focus,
.mf-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 121, 52, 0.08);
}

.mf-group textarea {
  resize: vertical;
  min-height: 110px;
}

.mf-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.mf-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-align: center;
  margin-top: -4px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE: MEMBERSHIP PAGES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1200px) {
  .mem-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mem-privileges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .mem-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mem-intro-image img {
    height: 320px;
  }

  .mem-offer-card {
    grid-template-columns: 1fr;
    padding: 44px 36px;
  }

  .mem-offer-visual {
    display: none;
  }

  .mem-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mem-apply-steps {
    flex-direction: column;
    gap: 24px;
  }

  .mas-arrow {
    transform: rotate(90deg);
  }
}

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

  .mem-privileges-grid {
    grid-template-columns: 1fr;
  }

  .mem-form-box {
    padding: 28px 24px;
  }

  .mf-row {
    grid-template-columns: 1fr;
  }

  .mem-offer-highlights {
    grid-template-columns: 1fr;
  }

  .mem-offer-card {
    padding: 36px 24px;
  }
}

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

  .mem-apply-cta {
    flex-direction: column;
  }

  .mem-offer-actions {
    flex-direction: column;
  }
}

/* ============================================================
   OFFERS & PACKAGES PAGES
   offers-packages.html + detail pages
   ============================================================ */

/* -- Packages Listing (offers-packages.html) --------------- */
.pkg-listing {
  padding: var(--section-py) 0;
  background: var(--white);
}

.pkg-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 72px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.pkg-card:last-child {
  margin-bottom: 0;
}

.pkg-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.pkg-card--reverse .pkg-card-image {
  order: 2;
}

.pkg-card--reverse .pkg-card-body {
  order: 1;
}

.pkg-card-image {
  position: relative;
  overflow: hidden;
}

.pkg-card-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pkg-card:hover .pkg-card-image img {
  transform: scale(1.04);
}

.pkg-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  display: none;
}

.pkg-card-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.pkg-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 10px 0 16px;
  line-height: 1.2;
}

.pkg-card-title em {
  font-style: italic;
  color: var(--primary);
}

.pkg-card-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 24px;
}

.pkg-inclusions {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 32px;
}

.pkg-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.pkg-inclusions li i {
  color: var(--primary);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-card-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* -- Package Detail (individual package pages) ------------- */
.pkg-detail {
  padding: var(--section-py) 0;
  background: var(--white);
}

.pkg-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pkg-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdg-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

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

.pdg-thumbs img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.pkg-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 10px 0 18px;
  line-height: 1.2;
}

.pkg-detail-title em {
  font-style: italic;
  color: var(--primary);
}

.pkg-detail-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Inclusions box */
.pkg-inclusions-box {
  background: #f9f7f4;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 32px;
}

.pkg-inclusions-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-inclusions-box h3 i {
  color: var(--primary);
  font-size: 1rem;
}

.pkg-inclusions-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-inclusions-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.pkg-inclusions-box ul li i {
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-detail-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .pkg-card {
    grid-template-columns: 1fr;
  }

  .pkg-card--reverse .pkg-card-image {
    order: 0;
  }

  .pkg-card--reverse .pkg-card-body {
    order: 1;
  }

  .pkg-card-image img {
    min-height: 260px;
  }

  .pkg-card-body {
    padding: 36px 36px;
  }

  .pkg-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pdg-main img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .pkg-card-body {
    padding: 45px 20px;
  }

  .pkg-inclusions {
    grid-template-columns: 1fr;
  }

  .pkg-card-footer {
    flex-direction: column;
  }

  .pkg-detail-cta {
    flex-direction: column;
  }

  .pdg-thumbs {
    grid-template-columns: 1fr;
  }

  .pdg-thumbs img {
    height: 220px;
  }
}

/* ============================================================
   BAR & RESTAURANT PAGES
   bar-restaurant.html + detail pages
   ============================================================ */

/* -- Dining intro blurb (listing page) --------------------- */
.dining-intro {
  padding: 52px 0;
  /* background: #f9f7f4; */
  border-bottom: 1px solid var(--border);
}

.dining-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.dining-intro-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* -- Dining listing section (reuses .pkg-card styles) ------ */
.dining-listing {
  padding: var(--section-py) 0;
  background: var(--white);
}

/* -- Dining detail info sub-nav tabs ----------------------- */
.venue-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}

.venue-tab {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 12px 22px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.venue-tab:hover,
.venue-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .dining-listing .pkg-card {
    grid-template-columns: 1fr;
  }

  .dining-listing .pkg-card--reverse .pkg-card-image {
    order: 0;
  }

  .dining-listing .pkg-card--reverse .pkg-card-body {
    order: 1;
  }
}

@media (max-width: 768px) {
  .dining-intro {
    padding: 36px 0;
  }

  .dining-intro-lead {
    font-size: 0.95rem;
  }

  .venue-tabs {
    flex-wrap: wrap;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ GALLERY SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.gallery-section {
  padding: var(--section-py) 0;
  background-color: var(--bg);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: opacity 0.4s var(--ease);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: none;
}

.gallery-item.hide {
  display: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ CONTACT SECTION Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.contact-section {
  padding: var(--section-py) 0;
  background-color: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--secondary);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact-detail-content a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
 /* background: var(--primary-light); */
  padding: 40px;
  border-radius: 8px;

  color: #ffffff;}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 121, 52, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.form-check label {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.map-container {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Corporate Offices Section */
.corporate-offices {
  padding: var(--section-py-sm) 0 var(--section-py);
  background-color: var(--bg);
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.office-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}

.office-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--secondary);
}

.office-card h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.office-card p,
.office-card a {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 8px;
  display: block;
}

.office-card a:hover {
  color: var(--primary);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ EXTRACTED INLINE STYLES Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.rooms-view-all {
  text-align: center;
  margin-top: 44px;
}

.enquiry-btn-full {
  width: 100%;
  justify-content: center;
}

.footer-bottom-link {
  color: inherit;
  text-decoration: underline;
}
/* New Intro Section Styles */
.intro-section {
  padding: 80px 20px 40px;
  text-align: center;
  background-color: var(--white);
}

.intro-section .breadcrumb {
  justify-content: center;
  color: var(--dark);
  margin-bottom: 20px;
}

.intro-section .breadcrumb a,
.intro-section .breadcrumb span,
.intro-section .breadcrumb i {
  color: var(--dark);
  opacity: 0.8;
}

.intro-section .breadcrumb a:hover {
  color: var(--primary);
  opacity: 1;
}

.intro-section .ph-centered-title,
.intro-section .ph-dark-title,
.intro-section .ph-split-title {
  color: var(--dark);
  margin-top: 15px;
  margin-bottom: 20px;
}

.intro-section .ph-centered-title em,
.intro-section .ph-dark-title em,
.intro-section .ph-split-title em {
  color: var(--primary);
}

.intro-section .ph-centered-sub,
.intro-section .ph-dark-sub,
.intro-section .ph-split-desc {
  color: var(--dark);
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

.intro-section .ph-ornament i {
  color: var(--primary);
}
.intro-section .ph-ornament span {
  background-color: var(--border);
}

.intro-section .ph-centered-divider,
.intro-section .ph-dark-rule {
  background-color: #ffffff;
  margin: 30px auto 0;
}

.intro-section .section-label,
.intro-section .ph-dark-label {
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

/* "?"?"? PROMO POPUP "?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"?"? */
.promo-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 500px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.promo-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.promo-popup-content {
  padding: 30px 24px;
  text-align: center;
  position: relative;
}

.promo-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.promo-close:hover {
  color: var(--primary);
}

.promo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.promo-desc {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.5;
}

.promo-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  font-size: 0.9rem;
}

@media (max-width: 500px) {
  .promo-popup {
    bottom: 15px;
    right: 15px;
    left: 15px;
    width: auto;
  }
}

/* --- BLOG LISTING ------------------------- */
.blog-section {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.blog-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.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-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-content h3 {
  font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: normal;
}
.blog-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.blog-btn i {
  font-size: 0.9em;
  transition: transform 0.3s var(--ease);
}
.blog-btn:hover {
  color: var(--primary-dark);
}
.blog-btn:hover i {
  transform: translateX(4px);
}

/* --- BLOG DETAIL -------------------------- */
.blog-article {
  max-width: 840px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.blog-article p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.blog-article h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-article img {
  width: 100%;
  border-radius: 4px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.blog-article-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}
@media (min-width: 768px) {
  .blog-article-split {
    grid-template-columns: 1fr 1fr;
  }
}
.blog-article-split img {
  margin: 0;
}
.blog-article a {
  color: var(--primary);
  text-decoration: underline;
}
.blog-article a:hover {
  color: var(--primary-dark);
}

/* --- BLOG DETAIL TWO COLUMN -------------------------- */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
@media (min-width: 992px) {
  .blog-layout {
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
  }
}

/* Left Main Content */
.blog-main h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: center;
}
.blog-meta {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-main .highlight-para {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  background: rgba(0,0,0,0.02);
  padding: 20px;
}
.blog-main p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.blog-main h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-main img {
  width: 100%;
  border-radius: 4px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.blog-tags {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.blog-tags span {
  font-size: 0.8rem;
  background: #f5f5f5;
  padding: 5px 12px;
  border-radius: 20px;
  color: var(--text-mid);
}

/* Sidebar */
.blog-sidebar .widget {
  margin-bottom: 40px;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 4px;
  background: var(--white);
}
.widget-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  background: #222;
  padding: 10px 15px;
  margin: -24px -24px 20px -24px;
  border-radius: 4px 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.widget.reserve-widget {
  text-align: center;
}
.widget.reserve-widget img {
  width: 120px;
  margin-bottom: 15px;
}
.widget.reserve-widget p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* Recent Posts */
.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}
.recent-post-item:last-child {
  margin-bottom: 0;
}
.recent-post-img {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}
.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recent-post-title {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s;
}
.recent-post-title:hover {
  color: var(--primary);
}

/* Categories List */
.cat-list {
  list-style: none;
  padding: 0;
}
.cat-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.cat-list li i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 0.8em;
}

/* Related Posts */
.related-posts-section {
  background: #f9f9f9;
  padding: 60px 0;
  border-top: 1px solid #eee;
}
.related-posts-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.related-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.related-card-body {
  padding: 20px;
}
.related-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}
.related-card-title:hover {
  color: var(--primary);
}
.related-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* --- Mobile Book Now Button --- */
.mobile-book-now-btn {
  display: none;
  background: var(--secondary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-left: auto;
  margin-right: 20px;
  white-space: nowrap;
  transition: var(--transition);
}

.mobile-book-now-btn:hover {
  background: var(--primary);
  color: #ffffff;
}

@media (max-width: 1024px) {
  .nav-inner {
    justify-content: flex-start;
  }
  .mobile-book-now-btn {
    display: inline-block;
  }
}

/* Hide booking bar across all pages as requested */
.booking-bar {
  display: none !important;
}

.dining-view-all { text-align: center; margin-top: 44px; }

/* --- Dropdown stay-open improvements --- */
@media (min-width: 1025px) {
  /* 1. Bridge the gap between nav item and dropdown menu */
  .has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    z-index: 10;
  }

  /* 2. Add a slight delay before disappearing so it stays open a bit longer */
  .dropdown-menu {
    transition-delay: 0.25s;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    transition-delay: 0s;
  }
}

/* --- Footer Address Link --- */
.footer-address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-address-link:hover {
  color: var(--primary);
}

/* --- Fact Sheet Styles --- */
.fact-sheet-section {
  padding-bottom: 80px;
  background-color: var(--bg-light);
}

.fact-sheet-section .container {
  max-width: 1000px;
}

.text-right {
  text-align: right;
}

.fact-sheet-block {
  background: var(--white);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fact-sheet-block h2 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.fact-sheet-block p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.fact-sheet-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fact-sheet-block ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.6;
}

.fact-sheet-block ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
  font-size: 14px;
}

.fact-sheet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .fact-sheet-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.fact-sheet-download {
  margin: 30px 0;
  text-align: center;
}

/* --- Custom Map UI --- */
.custom-location-section {
  padding: 60px 0;
  background-color: #f7f9f7;
}

.custom-map-widget {
  position: relative;
  width: 100%;
  height: 600px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.map-iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Left Sidebar */
.map-left-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 2;
  overflow-y: auto;
  border-right: 1px solid #ddd;
}

.map-left-sidebar::-webkit-scrollbar {
  width: 8px;
}
.map-left-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
.map-left-sidebar::-webkit-scrollbar-thumb {
  background: #aaa; 
  border-radius: 4px;
}

.map-locations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.map-locations-list li {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.map-locations-list li:hover {
  background: #f9f9f9;
}

.map-locations-list li i {
  font-size: 24px;
  color: #333;
}

.map-locations-list li span {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Right Sidebar */
.map-right-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #eef6ed;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.map-details-tab {
  position: absolute;
  left: -28px;
  top: 0;
  width: 28px;
  height: 100px;
  background: #eef6ed;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.map-details-tab i {
  margin-bottom: 8px;
  transform: rotate(90deg);
}

.map-right-sidebar img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.map-right-content {
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.map-right-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.map-directions-btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  background-color: #008b45 !important;
  border-color: #008b45 !important;
  color: white !important;
  margin-bottom: 20px;
  padding: 12px;
  font-weight: 600;
  border-radius: 0;
}

.map-directions-btn:hover {
  background-color: #006e36 !important;
  border-color: #006e36 !important;
}

.map-right-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
  margin-bottom: 0;
}

/* Bottom Bar */
.map-bottom-bar {
  display: flex;
  background: white;
  padding: 20px 30px;
  margin-top: 0;
  border: 1px solid #ddd;
  border-top: none;
  align-items: center;
  gap: 20px;
}

.map-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.map-form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  appearance: none;
  font-size: 14px;
  color: #555;
  background: white;
}

.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

.map-form-btn-wrapper {
  flex-shrink: 0;
  margin-top: 25px;
}

.map-form-btn-wrapper .map-directions-btn {
  margin-bottom: 0;
  padding: 11px 40px;
}

.wed-gal-grid {
  display:grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 12px;
}

@media (max-width: 992px) {
  .map-left-sidebar, .map-right-sidebar {
    display: none;
  }
  .map-bottom-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .map-form-btn-wrapper {
    margin-top: 10px;
  }
  .map-form-btn-wrapper .map-directions-btn {
    width: 100%;
  }
}



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

.swim-gal {
  display: grid; 
  grid-template-columns: repeat(3,1fr); 
  gap: 12px;
}

/* -- Cookie Popup ---------------------------------------- */
#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1d1d1d;
  color: #f1f1f1;
  padding: 24px 32px;
  border-radius: 6px;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-family: inherit;
  max-width: 580px;
}

#cookie-popup .cookie-icon {
  flex-shrink: 0;
  color: #444;
  font-size: 32px;
  margin-top: 2px;
}

#cookie-popup .cookie-text-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#cookie-popup .cookie-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;
}

#cookie-popup .cookie-learn-more {
  color: #666;
  text-decoration: underline;
  transition: color 0.3s ease;
}

#cookie-popup .cookie-learn-more:hover {
  color: #aaa;
}

#cookie-popup .cookie-buttons {
  display: flex;
  gap: 12px;
}

#cookie-popup .cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  outline: none;
}

#cookie-popup .cookie-accept {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

#cookie-popup .cookie-accept:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

#cookie-popup .cookie-decline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

#cookie-popup .cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  #cookie-popup {
    flex-direction: column;
    align-items: center;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 20px;
  }
  #cookie-popup .cookie-icon {
    margin-top: 0;
  }
  #cookie-popup .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
/* Added for Blog content images */
.blog-content-img { margin: 20px 0; max-width: 100%; height: auto; }
.blog-featured-img { max-width: 100%; height: auto; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.center-rule { margin-left: auto; margin-right: auto; }


.thank-tnk a {
   padding: 10px 30px;
   color: #ffffff;
   background: #007934;
   text-transform: uppercase;
}
