:root {
  --gold:         #C9A84C;
  --gold-light:   #E2C47A;
  --navy:         #1B2E45;
  --navy-dark:    #0F1F30;
  --green:        #2D6A35;
  --green-hover:  #235529;
  --white:        #FFFFFF;
  --cream:        #F8F5F0;
  --text-dark:    #1A1A1A;
  --text-mid:     #555555;
  --text-light:   #999999;
  --border:       #E2DDD6;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Montserrat', system-ui, sans-serif;
}

/* ═══════════════════════════════════════════════════════
   PHASE 1 FIXES — Accessibility, Performance & Bugs
   ═══════════════════════════════════════════════════════ */

/* FIX 1: Focus-visible styles for keyboard navigation (WCAG 2.1 AA) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Remove default outline only when focus-visible is supported */
:focus:not(:focus-visible) {
  outline: none;
}

/* FIX 2: Top bar needs position:relative for z-index to work */
#top-bar {
  position: relative;
}

/* FIX 3: Improve --text-light contrast (was #999 = fails WCAG AA on white)
   Used only for secondary/supporting text — bumped to #767676 = exactly 4.54:1 */
:root {
  --text-light: #767676;
}

/* FIX 4: iOS Safari sticky fix — use clip instead of overflow-x on html */
html {
  overflow-x: clip; /* safer than hidden on iOS Safari */
}
body {
  overflow-x: hidden; /* keep on body only */
}

/* FIX 5: Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* FIX 6: External links security — visual indicator optional */
a[target="_blank"]::after {
  content: ''; /* no visual change, security handled in HTML via rel attribute */
}


/* ── GLOBAL RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  font-family: var(--sans);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════ */
#top-bar {
  background-color: var(--navy-dark);
  padding: 8px 0; width: 100%; z-index: 1100;
}
.tb-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.tb-left, .tb-right {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 400; color: #fff;
}
.tb-left i, .tb-right i { color: var(--gold); font-size: 12px; }
.tb-link {
  display: flex; align-items: center; gap: 7px;
  color: #fff; font-size: 13px; font-weight: 400;
  text-decoration: none; transition: color 0.22s;
}
.tb-link:hover { color: var(--gold-light); }
.tb-divider { color: rgba(255,255,255,0.20); margin: 0 4px; }

/* ═══════════════════════════════════════════════════════
   MAIN NAV
═══════════════════════════════════════════════════════ */
#main-nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.nav-container {
  max-width: 1380px; margin: 0 auto; padding: 0 40px;
  height: 115px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.hl-logo { flex-shrink: 0; text-decoration: none; display: flex; align-items: center; }
.hl-logo img { display: block; width: 150px; height: auto; }

/* Desktop nav — JS-rendered links */
.hl-desktop-nav {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center;
}
.hl-nav-link {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dark); text-decoration: none;
  padding: 8px 14px; position: relative; transition: color 0.22s; white-space: nowrap;
}
.hl-nav-link::after {
  content: ""; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1.5px; background: var(--green);
  transform: scaleX(0); transform-origin: center; transition: transform 0.24s ease;
}
.hl-nav-link:hover { color: var(--green); }
.hl-nav-link:hover::after { transform: scaleX(1); }

.hl-nav-link.active {
  color: var(--green);
}
.hl-nav-link.active::after {
  transform: scaleX(1);
}



/* Nav right */
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.btn-book-now {
  display: inline-block; background: var(--green); color: var(--white);
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 24px; text-decoration: none; white-space: nowrap;
  transition: background 0.22s, transform 0.18s;
}
.btn-book-now:hover { background: var(--green-hover); color: var(--white); transform: translateY(-1px); }

/* Hamburger — hidden desktop */
.hl-toggler {
  display: none; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}
.tog-line {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 1px;
  transition: transform 0.3s, opacity 0.25s; transform-origin: center;
}
.hl-toggler.is-active .tog-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hl-toggler.is-active .tog-line:nth-child(2) { opacity: 0; }
.hl-toggler.is-active .tog-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   FULLSCREEN OVERLAY MENU
═══════════════════════════════════════════════════════ */
.hl-overlay-menu {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column;
  visibility: hidden; pointer-events: none;
   overflow: hidden;
}
.hlm-bg-main {
  position: absolute; inset: 0; background: var(--navy);
  clip-path: circle(0% at calc(100% - 52px) 38px);
  transition: clip-path 0.55s cubic-bezier(0.76,0,0.24,1);
}
.hlm-bg-texture {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(255,255,255,0.015) 60px,rgba(255,255,255,0.015) 61px);
  opacity: 0; transition: opacity 0.4s ease 0.2s;
}
.hl-overlay-menu::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom,transparent,var(--gold),transparent);
  opacity: 0; transition: opacity 0.4s ease 0.3s; z-index: 1;
}
.hl-overlay-menu.is-open {
  visibility: visible; pointer-events: all;
}
.hl-overlay-menu.is-open .hlm-bg-main {
  clip-path: circle(150% at calc(100% - 52px) 38px);
}
.hl-overlay-menu.is-open .hlm-bg-texture { opacity: 1; }
.hl-overlay-menu.is-open::before { opacity: 1; }

/* All inner elements above bg */
.hlm-topbar, .hlm-nav, .hlm-cta, .hlm-footer { position: relative; z-index: 2; }

/* Topbar */
.hlm-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s;
}
.hl-overlay-menu.is-open .hlm-topbar { opacity: 1; transform: translateY(0); }
.hlm-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.hlm-logo-mark {
  width: 44px; height: 44px; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.hlm-logo-mark span { font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--gold); }
.hlm-logo-text { display: flex; flex-direction: column; gap: 2px; }
.hlm-name { font-family: var(--serif); font-size: 16px; font-weight: 500; color: #fff; line-height: 1; }
.hlm-sub { font-family: var(--sans); font-size: 8px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); }
.hlm-close {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.20);
  background: none; color: rgba(255,255,255,0.80); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.hlm-close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

/* Overlay nav links — JS-rendered */
.hlm-nav {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 8px 32px; overflow-y: auto;
  min-height: 0;  max-height: none; 
}
.hlm-link {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; color: rgba(255,255,255,0.85);
  opacity: 0; transform: translateX(30px);
  transition: color 0.22s;
}
.hlm-link:last-child { border-bottom: none; }
.hlm-link:hover { color: var(--gold); }
.hlm-link:hover .hlm-link-arrow { transform: translateX(6px); opacity: 1; }
.hlm-link-num {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; color: rgba(201,168,76,0.60); flex-shrink: 0; width: 24px;
}
.hlm-link-text {
  font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1; flex: 1;
}
.hlm-link-arrow {
  font-size: 14px; color: var(--gold); opacity: 0;
  transform: translateX(0); transition: transform 0.22s, opacity 0.22s; flex-shrink: 0;
}

/* Staggered entrance */
.hl-overlay-menu.is-open .hlm-link { opacity: 1; transform: translateX(0); }
.hl-overlay-menu.is-open .hlm-link:nth-child(1) { transition: opacity .35s ease .30s, transform .35s ease .30s, color .22s; }
.hl-overlay-menu.is-open .hlm-link:nth-child(2) { transition: opacity .35s ease .36s, transform .35s ease .36s, color .22s; }
.hl-overlay-menu.is-open .hlm-link:nth-child(3) { transition: opacity .35s ease .42s, transform .35s ease .42s, color .22s; }
.hl-overlay-menu.is-open .hlm-link:nth-child(4) { transition: opacity .35s ease .48s, transform .35s ease .48s, color .22s; }
.hl-overlay-menu.is-open .hlm-link:nth-child(5) { transition: opacity .35s ease .54s, transform .35s ease .54s, color .22s; }
.hl-overlay-menu.is-open .hlm-link:nth-child(6) { transition: opacity .35s ease .60s, transform .35s ease .60s, color .22s; }
.hl-overlay-menu.is-open .hlm-link:nth-child(7) { transition: opacity .35s ease .66s, transform .35s ease .66s, color .22s; }
.hl-overlay-menu.is-open .hlm-link:nth-child(8) { transition: opacity .35s ease .72s, transform .35s ease .72s, color .22s; }

/* CTA */
.hlm-cta {
  padding: 4px 32px 20px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s ease 0.50s, transform 0.3s ease 0.50s;
  flex-shrink: 0;
}
.hl-overlay-menu.is-open .hlm-cta { opacity: 1; transform: translateY(0); }
.hlm-book-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 32px; text-decoration: none;
  transition: background 0.22s, transform 0.18s;
}
.hlm-book-btn:hover { background: var(--green-hover); color: #fff; transform: translateY(-2px); }
.hlm-book-btn i { font-size: 13px; }

/* Footer */
.hlm-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px 28px; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s ease 0.55s, transform 0.3s ease 0.55s;
}
.hl-overlay-menu.is-open .hlm-footer { opacity: 1; transform: translateY(0); }
.hlm-footer-contact { display: flex; flex-direction: column; gap: 6px; }
.hlm-footer-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 12px;
  color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s;
}
.hlm-footer-link i { color: var(--gold); font-size: 11px; }
.hlm-footer-link:hover { color: rgba(255,255,255,0.80); }
.hlm-social { display: flex; gap: 10px; }
.hlm-soc {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 13px; text-decoration: none;
  transition: border-color 0.22s, color 0.22s;
}
.hlm-soc:hover { border-color: var(--gold); color: var(--gold); }

body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .nav-container { padding: 0 28px; }
  .tb-inner { padding: 0 28px; }
  .hl-nav-link { padding: 8px 10px; font-size: 12px; }
}
@media (max-width: 991px) {
  #top-bar { display: none; }
  .hl-desktop-nav { display: none; }
  .nav-right .btn-book-now { display: none; }
  .hl-toggler { display: flex; }
  .nav-container { height: 120px; padding: 0 24px; }
}
@media (max-width: 767px) {
  #top-bar { display: none; }
  .nav-container { height: 90px; padding: 0 20px; }
  .hl-logo img { width: 130px; }
  .hlm-link-text { font-size: 24px; }
  .hlm-topbar, .hlm-cta { padding-left: 24px; padding-right: 24px; }
  .hlm-nav { padding: 4px 24px; }
  .hlm-footer { padding: 14px 24px 24px; }
}
@media (max-width: 480px) {
  .nav-container { padding: 0 16px; }
  .hl-logo img { width: 110px; }
  .hlm-link-text { font-size: 22px; }
  .hlm-link { padding: 11px 0; }
}
@media  (min-width: 992px) and (max-width: 1260px) {
  .hl-nav-link { font-size: 12px; }
}


/* ============================================================
   SECTION 02 · ABOUT
   ============================================================ */

#about {
  background-color: #F4F1EB;
  padding: 90px 0;
}

.about-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

/* LEFT COLUMN */
.about-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.about-heading {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 20px;
}
.about-heading em   { font-style: italic; font-weight: 400; color: var(--navy); }
.about-heading strong { font-weight: 700; color: var(--navy); }

.about-rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.about-body {
  margin-bottom: 16px;
  max-width: 520px;
}
.about-body:last-of-type { margin-bottom: 32px; }

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  margin-bottom: 48px;
  transition: background 0.22s, transform 0.18s;
  text-decoration: none;
}
.about-btn:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-2px); }
.about-btn i { font-size: 12px; transition: transform 0.22s; }
.about-btn:hover i { transform: translateX(4px); }

/* Stats 2x2 grid */
/* ── Stats: single horizontal strip ── */
.about-stats {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding-top: 32px;
  gap: 0;
}

.about-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 24px 0 0;
  position: relative;
  border: none;
}

/* Gold dot separator between stats */
.about-stat + .about-stat {
  padding-left: 24px;
}

.about-stat + .about-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.10));
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.stat-num .stat-sym {
  font-family: var(--serif);
  font-size: 0.50em;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-top: 3px;
  font-style: italic;
}

.stat-lbl {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 767px) {
  .about-stats {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 24px 0;
  }
  .about-stat {
    flex: 0 0 50%;
    padding: 0 0 0 0;
  }
  .about-stat + .about-stat {
    padding-left: 20px;
  }
  .about-stat:nth-child(3) {
    padding-top: 24px;
    border-top: 1px solid rgba(217, 212, 204, 0.50);
    padding-left: 0;
  }
  .about-stat:nth-child(4) {
    padding-top: 24px;
    border-top: 1px solid rgba(217, 212, 204, 0.50);
  }
  /* Remove left dividers on mobile */
  .about-stat:nth-child(3)::before {
    display: none;
  }
  .stat-num {
    font-size: 32px;
  }
}

/* RIGHT COLUMN */
.about-right {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
}
.about-badge {
  position: absolute;
  top: 48px;
  right: -14px;
  z-index: 3;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}
.about-img-main { width: 100%; overflow: hidden; }
.about-img-main img {
  width: 100%; height: 380px; object-fit: cover;
  display: block; transition: transform 0.7s ease;
  border-radius: 16px;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-sm { overflow: hidden; border-radius: 16px; }
.about-img-sm img {
  width: 100%; height: 180px; object-fit: cover;
  display: block; transition: transform 0.7s ease;
}
.about-img-sm:hover img { transform: scale(1.06); }

/* RESPONSIVE */
@media (max-width: 991px) {
  #about { padding: 70px 0; }
  .about-inner { flex-direction: column; gap: 48px; padding: 0 28px; }
  .about-heading { font-size: 40px; }
  .about-img-main img { height: 320px; }
  .about-img-sm img { height: 160px; }
  .about-badge { right: 0; }
}
@media (max-width: 767px) {
  #about { padding: 56px 0; }
  .about-inner { padding: 0 20px; gap: 36px; }
  .about-heading { font-size: 34px; line-height: 1.15; }
  .about-body { font-size: 14px; }
  .about-img-main img { height: 260px; }
  .about-img-sm img { height: 130px; }
  .about-stats { max-width: 100%; }
  .stat-num { font-size: 30px; }
  .stat-lbl { font-size: 11px; }
  .about-badge { display: none; }
}
@media (max-width: 390px) {
  .about-heading { font-size: 28px; }
  .about-img-sm img { height: 110px; }
}

/* ============================================================
   SECTION 03 · HIGHLIGHTS — 3 Panel Feature Cards
   ============================================================ */

#highlights {
  background-color: #F4F1EB;
  padding: 0 0 0;
}

/* Panels container — full width, side by side */
.hl-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
}

/* Individual panel */
.hl-panel {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}

/* Background image */
.hl-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.75s ease;
  filter: brightness(0.72);
}
.hl-panel:hover .hl-panel-bg,
.hl-panel--active .hl-panel-bg {
  transform: scale(1.05);
  filter: brightness(0.62);
}

/* Dark gradient — stronger at bottom where text lives */
.hl-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 30, 0.88) 0%,
    rgba(10, 18, 30, 0.40) 50%,
    rgba(10, 18, 30, 0.10) 100%
  );
  transition: background 0.4s ease;
}
.hl-panel:hover .hl-panel-overlay,
.hl-panel--active .hl-panel-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 18, 30, 0.94) 0%,
    rgba(10, 18, 30, 0.55) 55%,
    rgba(10, 18, 30, 0.15) 100%
  );
}

/* Text content — sits at the bottom */
.hl-panel-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Category tag */
.hl-panel-tag {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: block;
}

/* Panel heading */
.hl-panel-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Description text */
.hl-panel-desc {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 20px;
    max-width: 320px;
}

/* Learn More link — hidden by default, shown on hover */
.hl-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.50);
  padding-bottom: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, gap 0.22s ease;
}
.hl-panel:hover .hl-panel-link,
.hl-panel--active .hl-panel-link {
  opacity: 1;
  transform: translateY(0);
}
.hl-panel-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.60);
  gap: 13px;
}
.hl-panel-link i {
  font-size: 11px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

/* Tablet (768px – 991px) */
@media (max-width: 991px) {
  .hl-panels {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .hl-panel {
    height: 380px;
  }
  .hl-panel-title { font-size: 30px; }
  .hl-panel-desc  { font-size: 13px; max-width: 100%; }
  /* Always show link on touch devices */
  .hl-panel-link  { opacity: 1; transform: translateY(0); }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  #highlights { padding-bottom: 56px; }
  .hl-panel   { height: 340px; }
  .hl-panel-body { padding: 24px 20px 28px; }
  .hl-panel-title { font-size: 26px; }
  .hl-panel-desc  { font-size: 13px; margin-bottom: 14px; }
  .hl-panel-tag   { font-size: 9px; }
}

/* Small Mobile (max 390px) */
@media (max-width: 390px) {
  .hl-panel       { height: 300px; }
  .hl-panel-title { font-size: 22px; }
}

/* ============================================================
   SECTION 04 · ROOMS & SUITES
   ============================================================ */

#rooms {
  background-color: #F4F1EB;
  padding: 90px 0;
}
.rooms-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
/* Rooms page — center align intro */
#rooms .rooms-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

#rooms .rooms-header-left {
  text-align: center;
  align-items: center;
}

#rooms .rooms-divider,
#rooms .heading-divider {
  margin-left: auto;
  margin-right: auto;
}

#rooms .rooms-subtext {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

#rooms .rooms-header-right {
  margin-top: 12px;
}

/* Cards */
.rooms-list { display: flex; flex-direction: column; gap: 3px; }

.room-card {
  display: grid;
  grid-template-columns: 300px 1fr 180px;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid rgba(226, 221, 214, 0.8);
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.room-card:hover {
  box-shadow: 0 8px 36px rgba(27, 46, 69, 0.11);
  transform: translateY(-2px);
  border-color: var(--gold);
}


/* Image */
.room-card-img { position: relative; overflow: hidden; }
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.65s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }

/* Badges */
.room-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; z-index: 2;
}
.badge-navy    { background: var(--navy);  color: #ffffff; }
.badge-gold    { background: var(--gold);  color: #ffffff; }
.badge-green   { background: var(--green); color: #ffffff; }
.badge-outline { background: #ffffff; color: var(--navy); border: 1px solid #D9D4CC; }

/* Body */
.room-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.room-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px; line-height: 1.2;
}
.room-desc {
  max-width: 520px;
  margin-bottom: 15px;
}
.room-amenities { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px 20px; 
  margin-bottom: 20px;
}
.room-am {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 14px;
  font-weight: 500; color: var(--navy-dark);
}
.room-am i { color: var(--green); font-size: 11px; }

/* Price — border-left full height via align-items: stretch on parent */
.room-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 24px 20px;
  text-align: center;
  border-left: 1px solid #E8E4DC;
  align-self: stretch;
}

.price-amount {
  font-family: var(--serif);
  font-size: 32px; font-weight: 600;
  color: var(--navy); line-height: 1;
}
.price-note {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  color: var(--navy); letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* Outlined → solid on hover */
.btn-book-room {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s, color 0.22s, transform 0.18s, gap 0.22s;
}
.btn-book-room:hover {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-1px);
  gap: 12px;
}

.btn-view-room {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  background: var(--cream);
  border: 1.5px solid var(--border);
  padding: 9px 18px;
  width: fit-content;
  transition: background 0.22s, border-color 0.22s, gap 0.22s;
}
.btn-view-room:hover {
  background: var(--border);
  border-color: var(--navy);
  gap: 12px;
}
.btn-view-room i { font-size: 10px; }




/* Responsive */
@media (max-width: 991px) {
  #rooms { padding: 70px 0; }
  .rooms-inner { padding: 0 28px; }
  .rooms-heading { font-size: 42px; }
  .room-card { grid-template-columns: 220px 1fr 160px; }
  .room-name { font-size: 19px; }
  .room-desc { font-size: 13px; }
  .price-amount { font-size: 28px; }
  .rooms-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 767px) {
  #rooms { padding: 56px 0; }
  .rooms-inner { padding: 0 20px; }
  .rooms-heading { font-size: 34px; }
  .rooms-subtext { font-size: 14px; }
  .room-card { grid-template-columns: 1fr; }
  .room-card-img { height: 220px; }
  .room-card-body { padding: 20px; border-bottom: 1px solid #E8E4DC; }
  .room-card-price {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-left: none;
    border-top: 1px solid #E8E4DC;
    gap: 0;
  }
  .price-note { margin-bottom: 0; margin-left: 4px; }
  .room-am { font-size: 11px; }
}
@media (max-width: 390px) {
  .rooms-heading { font-size: 28px; }
  .room-name { font-size: 17px; }
  .price-amount { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════
   GOLF CLUB — HERO FEATURE SECTION
═══════════════════════════════════════════════════════ */

#golf {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 540px;
  margin: 0;
}

/* Image column */
.golf-visual { position: relative; overflow: hidden; min-height: 400px; }
.golf-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.8s ease;
}
#golf:hover .golf-visual img { transform: scale(1.04); }

/* Right-edge cream fade */
.golf-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--cream) 100%);
  pointer-events: none;
}

/* Content column */
.golf-content {
  background: var(--cream);
  padding: 80px 64px 80px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

/* Thin gold gradient left border line */
.golf-content::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* Golf icon box */
.golf-icon {
  width: 64px; height: 64px;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.golf-icon i { font-size: 1.4rem; color: var(--gold); }

/* 18 Holes badge */
.golf-badge {
  position: absolute; top: 40px; right: 40px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.golf-badge-num {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.golf-badge-lbl {
  font-size: 0.55rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.50); margin-top: 2px;
}

/* Eyebrow — own class, consistent with rooms */
.golf-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}

/* Heading — own class, consistent with rooms */
.golf-heading {
  font-family: var(--serif); font-size: 52px;
  font-weight: 400; line-height: 1.10;
  color: var(--navy); margin-bottom: 14px;
}
.golf-heading em { font-style: italic; font-weight: 400; color: var(--navy); }

/* Gold rule — own class, consistent with rooms */
.golf-rule {
  display: block; width: 40px; height: 2px;
  background-color: var(--gold);
  margin-bottom: 16px; flex-shrink: 0;
}

/* Description */
.golf-desc {
  margin-bottom: 28px; 
  max-width: 420px;
}

/* Features grid */
.golf-features {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; margin-bottom: 36px;
}
.gf-item { display: flex; align-items: flex-start; gap: 12px; }
.gf-item > i { color: var(--green); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.gf-t { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 2px; }
.gf-s { font-family: var(--sans); font-size: 0.75rem; font-weight: 400; color: #888888; line-height: 1.4; }

/* Buttons */
.golf-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.golf-btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #ffffff;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 24px; text-decoration: none; white-space: nowrap;
  transition: background 0.22s, transform 0.18s;
}
.golf-btn-green i { font-size: 13px; line-height: 1; flex-shrink: 0; }
.golf-btn-green:hover { background: var(--green-hover); color: #ffffff; transform: translateY(-2px); }

.golf-btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #ffffff;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 24px; text-decoration: none; white-space: nowrap;
  transition: background 0.22s, transform 0.18s;
}
.golf-btn-navy:hover { background: var(--navy-dark, #0d1e30); color: #ffffff; transform: translateY(-2px); }

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* Large tablet */
@media (max-width: 1199px) {
  #golf { grid-template-columns: 1fr 460px; min-height: 580px; }
  .golf-heading { font-size: 44px; }
  .golf-content { padding: 60px 40px; }
}

/* Tablet — stack vertically, image on top */
@media (max-width: 991px) {
  #golf { grid-template-columns: 1fr; min-height: auto; }
  .golf-visual { height: 420px; min-height: 420px; }
  /* Fade becomes bottom fade on stacked */
  .golf-visual::after {
    background: linear-gradient(to bottom, transparent 70%, var(--cream) 100%);
  }
  .golf-content { padding: 52px 40px; }
  /* Left border becomes top line */
  .golf-content::before {
    top: 0; bottom: auto; left: 10%; right: 10%;
    width: auto; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .golf-badge { top: 20px; right: 20px; width: 70px; height: 70px; }
  .golf-heading { font-size: 42px; }
  .golf-desc { max-width: 100%; }
}

/* Mobile */
@media (max-width: 767px) {
  .golf-visual { height: 300px; min-height: 300px; }
  .golf-content { padding: 40px 24px 48px; }
  .golf-heading { font-size: 34px; }
  .golf-desc { font-size: 13px; }
  .golf-badge { width: 62px; height: 62px; top: 16px; right: 16px; }
  .golf-badge-num { font-size: 1.3rem; }
  .golf-btn-green, .golf-btn-navy { font-size: 11px; padding: 12px 18px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .golf-visual { height: 260px; min-height: 260px; }
  .golf-heading { font-size: 28px; }
  .golf-features { grid-template-columns: 1fr; gap: 14px; }
  .golf-btns { flex-direction: column; }
  .golf-btn-green, .golf-btn-navy { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   SECTION 06 · DINING & ENTERTAINMENT
═══════════════════════════════════════════════════════ */

#dining { background-color: #F4F1EB; padding: 90px 0; }
.dining-inner { max-width: 1380px; margin: 0 auto; padding: 0 40px; }

/* Header */
.dining-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.dining-header-left { max-width: 560px; }
.dining-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.dining-heading {
  font-family: var(--serif); font-size: 52px;
  font-weight: 400; line-height: 1.08;
  color: var(--navy); margin-bottom: 16px;
}
.dining-heading em { font-style: italic; font-weight: 400; }
.dining-divider {
  display: block; width: 52px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 20px;
}
.dining-subtext {
  max-width: 520px;
}
.dining-view-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px; white-space: nowrap; text-decoration: none;
  transition: color 0.22s, border-color 0.22s, gap 0.22s;
}
.dining-view-all:hover { color: var(--gold); border-color: var(--gold); gap: 13px; }

/* Grid — 3 equal cols */
.dining-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; align-items: stretch;
}
.dining-col { display: flex; flex-direction: column; gap: 24px; }
.dining-col--tall { gap: 0; }

/* Cards */
.dcard {
  position: relative; display: block;
  overflow: hidden; text-decoration: none;
  cursor: pointer; background: #1a1a1a;
}
.dcard--tall { height: 100%; min-height: 560px; border-radius: 16px; }
.dcard--half { flex: 1; min-height: 300px; border-radius: 16px; }

/* Image */
.dcard img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; opacity: 0.85;
  transition: transform 0.65s ease, opacity 0.4s ease;
}
.dcard:hover img { transform: scale(1.06); opacity: 0.72; }

/* Dark overlay */
.dcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,35,0.08) 0%,
    rgba(10,20,35,0.35) 40%,
    rgba(10,20,35,0.82) 100%
  );
  transition: background 0.4s ease; z-index: 1;
}
.dcard:hover .dcard-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10,20,35,0.15) 0%,
    rgba(10,20,35,0.45) 40%,
    rgba(10,20,35,0.90) 100%
  );
}

/* Badges */
.dcard-badge {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; z-index: 3;
}
.badge-gold    { background: var(--gold);  color: #ffffff; }
.badge-green   { background: var(--green); color: #ffffff; }
.badge-navy    { background: var(--navy);  color: #ffffff; }
.badge-outline { background: rgba(255,255,255,0.15); color: #ffffff; border: 1px solid rgba(255,255,255,0.50); backdrop-filter: blur(4px); }

/* Card body */
.dcard-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 24px 28px; z-index: 2;
}
.dcard-name {
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; color: #ffffff;
  line-height: 1.2; margin-bottom: 8px;
}
.dcard--tall .dcard-name { font-size: 28px; }
.dcard-desc {
  font-family: var(--sans); font-size: 13px;
  font-weight: 400; color: rgba(255,255,255,0.80);
  line-height: 1.65; margin-bottom: 12px; max-width: 340px;
}
.dcard-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 12px;
  font-weight: 600; color: var(--gold); letter-spacing: 0.04em;
}
.dcard-tag i { font-size: 11px; }

/* Responsive */
@media (max-width: 1199px) {
  .dining-heading { font-size: 44px; }
  .dcard--tall { min-height: 480px; }
  .dcard--half { min-height: 234px; }
}
@media (max-width: 991px) {
  #dining { padding: 70px 0; }
  .dining-inner { padding: 0 28px; }
  .dining-heading { font-size: 40px; }
  .dining-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .dining-grid { grid-template-columns: 1fr; gap: 10px; }
  .dining-col--tall { grid-column: 1 / -1; }
  .dcard--tall { min-height: 360px; }
  .dcard--half { min-height: 220px; }
}
@media (max-width: 767px) {
  #dining { padding: 56px 0; }
  .dining-inner { padding: 0 20px; }
  .dining-heading { font-size: 34px; }
  .dining-grid { grid-template-columns: 1fr; gap: 10px; }
  .dining-col--tall { grid-column: auto; }
  .dcard--tall { min-height: 320px; }
  .dcard--half { min-height: 220px; }
  .dcard--tall .dcard-name { font-size: 22px; }
  .dcard-name { font-size: 19px; }
  .dcard-desc { font-size: 12px; max-width: 100%; }
  .dcard-body { padding: 18px 18px 22px; }
}
@media (max-width: 480px) {
  .dining-heading { font-size: 28px; }
  .dcard--tall { min-height: 280px; }
  .dcard--half { min-height: 200px; }
}

/* ═══════════════════════════════════════════════════════
   SECTION 07 · CTA BANNER
═══════════════════════════════════════════════════════ */

#cta-banner {
  position: relative;
  background-color: var(--green);
  padding: 90px 40px;
  overflow: hidden;
  text-align: center;
}

/* Giant watermark bottom center */
.cta-watermark {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

/* Content wrapper */
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow */
.cta-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: 20px;
}

/* Heading */
.cta-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* Subtext */
.cta-subtext {
  color: #ffffff;
  max-width: 440px;
  margin-bottom: 40px;
  text-align: center;
}

/* Buttons */
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* White solid */
.cta-btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: #ffffff; color: var(--green);
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 28px; text-decoration: none; white-space: nowrap;
  transition: background 0.22s, transform 0.18s;
}
.cta-btn-white i { font-size: 13px; flex-shrink: 0; }
.cta-btn-white:hover { background: rgba(255,255,255,0.90); color: var(--green); transform: translateY(-2px); }

/* Outlined white */
.cta-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.70);
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 28px; text-decoration: none; white-space: nowrap;
  transition: background 0.22s, border-color 0.22s, transform 0.18s;
}
.cta-btn-outline i { font-size: 13px; flex-shrink: 0; }
.cta-btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #ffffff; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 991px) {
  #cta-banner { padding: 80px 32px; }
  .cta-heading { font-size: 44px; }
}
@media (max-width: 767px) {
  #cta-banner { padding: 64px 24px; }
  .cta-heading { font-size: 32px; }
  .cta-subtext { font-size: 14px; max-width: 100%; }
  .cta-btns { flex-direction: column; width: 100%; max-width: 320px; }
  .cta-btn-white, .cta-btn-outline { justify-content: center; width: 100%; }
}
@media (max-width: 480px) {
  #cta-banner { padding: 56px 20px; }
  .cta-heading { font-size: 22px; }
  .cta-watermark { font-size: 48px; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — v4 (Final)
═══════════════════════════════════════════════════════ */

#footer { background-color: var(--navy); position: relative; overflow: hidden; }



.footer-top-rule {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Info Band */
.footer-info-band {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.footer-info-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 0;
}
.finfo-item {
  display: flex; 
  align-items: center; 
  gap: 14px;
  flex: 1; 
}
@media (min-width: 992px) {
  .finfo-item:last-child {
    justify-content: flex-end;
  }
}
.finfo-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.30);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.finfo-icon i { color: var(--gold); font-size: 14px; }
.finfo-text { display: flex; flex-direction: column; gap: 3px; }
.finfo-label {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream);;
}
.finfo-value {
  font-size: 15px;
  font-weight: 400; color: #fff; line-height: 1;
}
.finfo-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.10); flex-shrink: 0; margin: 0 8px; }

/* Main Body */
.footer-body { padding: 72px 0 64px; }
.footer-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 0; align-items: start;
}
.footer-col { padding: 0 40px; border-right: 1px solid rgba(255,255,255,0.08); }
.footer-col:first-child { padding-left: 0; }
.footer-col:last-child  { border-right: none; }

.footer-col-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-icon { color: var(--gold); font-size: 14px; flex-shrink: 0; }
.footer-col-label {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff; display: block;
}
.footer-col-value {
  font-family: var(--sans); font-size: 14px;
  color: #fff; line-height: 1.70; display: block; text-decoration: none;
}

/* COL 1 */
.footer-col--brand { display: flex; flex-direction: column; gap: 28px; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo-mark {
  width: 52px; height: 52px; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flm-hl { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.footer-logo-text { display: flex; flex-direction: column; gap: 3px; }
.flt-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: #ffffff; letter-spacing: 0.02em; line-height: 1; }
.flt-sub { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.footer-book-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #ffffff;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 26px; text-decoration: none; white-space: nowrap; align-self: flex-start;
  transition: background 0.22s, transform 0.18s;
}
.footer-book-btn i { font-size: 12px; }
.footer-book-btn:hover { background: var(--green-hover); color: #ffffff; transform: translateY(-2px); }
.footer-social { display: flex; gap: 10px; }
.fsoc-btn {
  width: 50px; height: 50px; 
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,1); text-decoration: none; font-size: 20px;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  border-radius: 10px;
}
.fsoc-btn--ta {
  background-color: #00ec5c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 12px;
  padding: 8px;
  flex-shrink: 0;
}

.fsoc-btn--ta svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fsoc-btn--fb {
  background: #0866ff;
}
.fsoc-btn--ig {
   background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  box-shadow: 0px 3px 10px rgba(0,0,0,.25);
}

.fsoc-btn:hover { border-color: var(--gold); color: var(--gold); background: #fff; }

/* COL 2 */
.footer-col--address { display: flex; flex-direction: column; }
.footer-col--address .footer-col-value { margin-bottom: 20px; }
.footer-map-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px; align-self: flex-start;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.footer-map-btn i { font-size: 11px; }
.footer-map-btn:hover { color: #ffffff; border-color: rgba(255,255,255,0.40); gap: 10px; }

/* COL 3 */
.footer-col--contact { display: flex; flex-direction: column; }
.footer-contact-block { display: flex; flex-direction: column; }
.footer-contact-block--mt { margin-top: 28px; }
.footer-phone { font-weight: 500; color: #fff; transition: color 0.2s; }
.footer-phone:hover { color: var(--gold); }

/* COL 4 */
.footer-col--apps { display: flex; flex-direction: column; gap: 12px; }
.footer-app-grid { display: flex; flex-direction: column; gap: 10px; }
.footer-app-btn {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.fab-icon i { font-size: 22px; color: #ffffff; line-height: 1; display: block; width: 22px; }
.fab-text { display: flex; flex-direction: column; gap: 2px; }
.fab-small { font-family: var(--sans); font-size: 9px; color: rgba(255,255,255,0.50); }
.fab-big { font-family: var(--sans); font-size: 14px; font-weight: 600; color: #ffffff; line-height: 1; white-space: nowrap; }

/* Tagline */
.footer-tagline-strip { border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-tagline-inner { max-width: 1380px; margin: 0 auto; padding: 0 48px; text-align: center; }
.footer-tagline-text { font-family: var(--serif); font-size: 15px; color: #fff; letter-spacing: 0.03em; }
.footer-tagline-text em { font-style: italic; color: var(--gold-light); }

/* Copyright */
.footer-bottom { padding: 18px 0; }
.footer-bottom-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-family: var(--sans); font-size: 12px; color: #fff; letter-spacing: 0.04em; }
.footer-credit { font-family: var(--sans); font-size: 12px; color: #fff; }
.footer-credit-link { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
.footer-credit-link:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 1199px) {
  .footer-inner { padding: 0 32px; }
  .footer-col { padding: 0 28px; }
  .footer-col:first-child { padding-left: 0; }
  .footer-info-inner { padding: 0 32px; }
  .fab-big { font-size: 13px; }
}
@media (max-width: 991px) {
  .footer-body { padding: 56px 0 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 28px; }
  .footer-col { padding: 28px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-col:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); padding-left: 0; }
  .footer-col:nth-child(even) { padding-right: 0; padding-bottom: 74px; }
  .footer-col:nth-child(3), .footer-col:nth-child(4) { border-bottom: none; }
  .footer-info-band { padding: 20px 0; }
  .footer-info-inner { padding: 0 28px; flex-wrap: wrap; justify-content: center; gap: 4px; }
  .finfo-item { flex: none; width: 45%; min-width: 160px; padding: 10px 16px; justify-content: flex-start; }
  .finfo-sep { display: none; }
  .footer-app-grid { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .footer-app-btn  { flex: 1; min-width: 150px; }
}
@media (max-width: 767px) {
  .footer-body { padding: 44px 0 36px; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 24px; }
  .footer-col { padding: 24px 0 !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-col:last-child { border-bottom: none; }
  .footer-book-btn { width: 100%; justify-content: center; }
  .footer-info-band { padding: 16px 0; }
  .footer-info-inner { padding: 0 20px; flex-wrap: wrap; justify-content: flex-start; gap: 0; }
  .finfo-item { width: 50%; padding: 10px 12px; justify-content: flex-start; gap: 10px; }
  .finfo-sep { display: none; }
  .finfo-icon { width: 34px; height: 34px; }
  .finfo-value { font-size: 13px; }
  .footer-app-grid { flex-direction: row; gap: 10px; }
  .footer-app-btn  { flex: 1; min-width: 0; padding: 11px 12px; gap: 10px; }
  .fab-big { font-size: 12px; white-space: normal; }
  .footer-tagline-text { font-size: 13px; }
  .footer-tagline-inner { padding: 0 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; padding: 0 24px; gap: 6px; }
}
@media (max-width: 480px) {
  .footer-inner { padding: 0 20px; }
  .footer-info-inner { padding: 0 16px; }
  .footer-bottom-inner { padding: 0 20px; }
  .flt-name { font-size: 16px; }
  .footer-app-btn { padding: 10px; gap: 8px; }
  .fab-icon i { font-size: 18px; width: 18px; }
  .finfo-item { width: 100%; }
}

.review-widget_net {
    margin-bottom: 20px !important;
    border: none !important;
}

.review-widget_net a {
    border: none !important;
}
.review-widget_net.branding {
    display: none !important;
}
.grw-net-widget {
    margin: 0 !important;
}

/* ═══════════════════════════════════════════════════════
   BOOKING PANEL — Slide-in Sidebar
   ═══════════════════════════════════════════════════════ */

/* Overlay backdrop */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 48, 0.65);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.booking-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Panel */
.booking-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 460px;
  height: 100%;
  background: var(--white);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.40s cubic-bezier(0.76, 0, 0.24, 1);
  overflow: hidden;
}
.booking-overlay.is-open .booking-panel {
  transform: translateX(0);
}

/* Panel Header */
.bp-head {
  background: var(--navy-dark);
  padding: 28px 32px 24px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.bp-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.bp-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.bp-close {
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.70);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.bp-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* Gold accent line */
.bp-accent {
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
  flex-shrink: 0;
}

/* Scrollable form body */
.bp-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px 32px 32px;
}
.bp-body::-webkit-scrollbar { width: 4px; }
.bp-body::-webkit-scrollbar-track { background: var(--cream); }
.bp-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Nights badge */
.bp-nights-badge {
  display: none;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.bp-nights-badge.visible { display: block; }

/* Form groups */
.bp-group {
  margin-bottom: 18px;
}
.bp-group label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.bp-group label span.req {
  color: #c0392b;
  margin-left: 2px;
}
.bp-input,
.bp-select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.22s;
}
.bp-input:focus,
.bp-select:focus {
  border-color: var(--gold);
}
.bp-input.error,
.bp-select.error {
  border-color: #c0392b;
}

/* ADD inside your existing .bp-input rule */
.bp-input[type="date"] {
  cursor: pointer;
}

/* Date input — clean cross-browser styling */
.bp-input[type="date"] {
  cursor: pointer;
  color: var(--text-dark);
}
.bp-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
  filter: invert(20%);
  transition: opacity 0.2s;
}
.bp-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}


/* Select arrow */
.bp-select-wrap {
  position: relative;
}
.bp-select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--text-mid);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Counter input */
.bp-counter-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  transition: border-color 0.22s;
}
.bp-counter-wrap:focus-within {
  border-color: var(--gold);
}
.bp-counter-btn {
  width: 44px;
  height: 46px;
  background: var(--cream);
  border: none;
  font-size: 18px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.bp-counter-btn:hover {
  background: var(--gold);
  color: var(--white);
}
.bp-counter-input {
  flex: 1;
  border: none !important;
  text-align: center;
  font-weight: 600;
  padding: 0 !important;
  appearance: textfield;
  -moz-appearance: textfield;
}
.bp-counter-input::-webkit-outer-spin-button,
.bp-counter-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}


/* Two column row */
.bp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Textarea */
.bp-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 0;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.22s;
}
.bp-textarea:focus { border-color: var(--gold); }

/* Error message */
.bp-error {
  font-family: var(--sans);
  font-size: 11px;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}
.bp-error.visible { display: block; }

/* Divider */
.bp-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 22px 0;
}

/* Panel Footer */
.bp-foot {
  padding: 20px 32px 28px;
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}
/* FIND and REPLACE .bp-submit */
.bp-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
}
.bp-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}
.bp-submit i { font-size: 15px; }

.bp-submit-note {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 520px) {
  .booking-panel {
    width: 100%;
  }
  .bp-head { padding: 22px 20px 20px; }
  .bp-body { padding: 22px 20px 24px; }
  .bp-foot { padding: 16px 20px 24px; }
  .bp-row { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════════════════════════
   PAGE HEADER — Inner Pages Banner
   ═══════════════════════════════════════════════════════ */

.page-header {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Background image */
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: 250px; /* adjust this number to taste */
  background-repeat: repeat;
  background-position: center;
}


/* Dark overlay */
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(35, 85, 41, 0.90);

}

/* Gold bottom border accent */
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Content */
.page-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Page Title */
.page-header-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}

/* Gold ornament */
.page-header-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-header-ornament .orn-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.80), transparent);
  display: block;
}
.page-header-ornament .orn-icon {
  color: var(--gold);
  font-size: 10px;
  opacity: 0.85;
}

/* Breadcrumb */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover {
  color: var(--gold-light);
}
.page-breadcrumb .bc-sep {
  color: var(--gold);
  opacity: 0.60;
  font-size: 9px;
}
.page-breadcrumb span {
  color: var(--gold-light);
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .page-header { height: 180px; }
  .page-header-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .page-header { height: 165px; }
  .page-header-title { font-size: 22px; }
}

/* ── Google Rating Card ── */
.google-rating-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a2a4a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
  width: 100%;
  margin-bottom: 15px;
}

.google-rating-card:hover {
  background: #1f3460;
  transform: translateY(-2px);
}

.google-rating-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.google-rating-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.google-rating-number {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.google-rating-stars {
  color: #FBBC05;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.google-rating-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== SIGNATURE PROPERTIES ===== */

#properties {
  background-color: #F4F1EB;
  padding: 90px 0;
}

.properties-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.properties-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.properties-header-left { max-width: 600px; }

.properties-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.properties-heading {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 16px;
}

.properties-heading em { font-style: italic; font-weight: 400; }

.properties-rule {
  display: block;
  width: 52px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 20px;
}

.properties-subtext {
  max-width: 520px;
}

.properties-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.22s, border-color 0.22s, gap 0.22s;
}

.properties-view-all:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 13px;
}

/* Grid */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

/* Card base */
.prop-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

/* Image area */
.prop-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 2;
  flex-shrink: 0;
}

.prop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.prop-card:hover .prop-card-img img {
  transform: scale(1.06);
}

/* Category tag on image */
.prop-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  z-index: 2;
}

.prop-tag i { font-size: 10px; }

/* Card body — colored */
.prop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2.5rem;
}

.prop-card--green .prop-card-body {
  background: var(--green, #2D6A35);
}

.prop-card--blue .prop-card-body {
  background: var(--navy, #1B2E45);
}

.prop-card-body-top {
  flex: 1;
}

/* Name */
.prop-card-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 24px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* Description */
.prop-card-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Feature list */
.prop-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.prop-card-list li {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.prop-card-list li i {
  color: var(--gold, #C9A84C);
  font-size: 12px;
  flex-shrink: 0;
}

/* Gold button — same for both cards */
.prop-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold, #C9A84C);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.22s, transform 0.18s, gap 0.22s;
}

.prop-card-btn i {
  font-size: 11px;
  transition: transform 0.22s;
}

.prop-card-btn:hover {
  background: #b8922e;
  color: #ffffff;
  transform: translateY(-1px);
  gap: 15px;
}

.prop-card-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  #properties { padding: 70px 0; }
  .properties-inner { padding: 0 28px; }
  .properties-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .prop-card-list { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  #properties { padding: 56px 0; }
  .properties-inner { padding: 0 20px; }
  .properties-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .prop-card-body { padding: 1.5rem 1.5rem 1.5rem; }
  .prop-card-name { font-size: 22px; }
  .prop-card-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .prop-card-list { grid-template-columns: 1fr; }
}

body {
  font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
    color: #1B0D31;
}
p {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.85;
    color: #1B0D31;
}

/* ── Inner Page Curve ── */
.inner-curve-wrap {
  position: absolute;
  top: -10px;
  left: -5%;
  width: 25%;        /* ← Start here, adjust to 20–30% as needed */
  height: 420px;
  pointer-events: none;
  z-index: 0;
  overflow: visible; /* ← Important: let curves flow outside the box */
}

.inner-svg-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible; /* ← Must be visible so S-curve draws fully */
  display: block;
}

.inner-curve--1 {
  stroke: var(--green);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.50;
}
.inner-curve--2 {
  stroke: var(--green);
  stroke-width: 0.9;
  stroke-linecap: round;
  opacity: 0.30;
}
.inner-curve--3 {
  stroke: var(--green);
  stroke-width: 0.7;
  stroke-linecap: round;
  opacity: 0.18;
}



/* Draw animation */
.inner-curve.draw {
  animation: innerCurveDraw var(--cdur, 1.8s) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Erase animation */
.inner-curve.erase {
  animation: innerCurveErase var(--cdur, 1.2s) cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes innerCurveDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes innerCurveErase {
  to { stroke-dashoffset: calc(-1 * var(--inner-dashlen, 1400px)); }
}

/* Ensure parent section is relative so curve positions correctly */
#rooms,
#dining,
#properties,
.inner-page-section {
  position: relative;
  overflow: hidden;
}

/* All real content stays above curve */
#rooms .rooms-inner,
#dining .dining-inner,
#properties .properties-inner,
.inner-page-section > .section-inner {
  position: relative;
  z-index: 1;
}

/* Tablet */
@media (max-width: 991px) {
  .inner-curve-wrap {
    width: 40%;
    height: 340px;
    left: -3%;
    opacity: 0.7;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .inner-curve-wrap {
    display: block;   /* was display:none before */
    width: 55%;
    height: 260px;
    left: -5%;
    top: -5px;
    opacity: 0.55;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .inner-curve-wrap {
    width: 65%;
    height: 220px;
    opacity: 0.45;
  }
}

/* ── Premium Line Divider ── */
.heading-divider {
  display: block;
  width: 0px;
  height: 3px;
  margin-bottom: 30px;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    var(--gold) 40%,
    transparent 100%
  );
  animation: hdDraw 2.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hdDraw {
  0%   { width: 0px;  opacity: 0; }
  15%  { opacity: 1; }
  100% { width: 120px; opacity: 1; }
}

/* ── Floating Buttons ── */
.floating-buttons {
  position: fixed;
  bottom: 70px;   /* ← moved up from 28px */
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* WhatsApp Button — smaller, cleaner */
.float-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 9px 16px 9px 10px;
  border-radius: 50px;
  box-shadow: 0 3px 14px rgba(37, 211, 102, 0.40);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.50);
  transform: translateY(-2px);
  color: #fff;
}

/* Icon circle — white bg so icon pops clearly */
.float-wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
  color: #25D366;   /* green icon on white bg = perfectly visible */
  line-height: 1;
}

.float-wa-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* Tablet */
@media (max-width: 991px) {
  .floating-buttons {
    bottom: 60px;
    right: 18px;
  }
}

/* Mobile — icon only for WhatsApp */
@media (max-width: 767px) {
  .floating-buttons {
    bottom: 65px;
    right: 14px;
  }

  /* Same pill shape as desktop, just scaled down */
  .float-whatsapp {
    padding: 7px 12px 7px 8px;
    gap: 6px;
    font-size: 11px;
    border-radius: 50px;
    /* Remove any width/height/border-radius:50% overrides */
    width: auto;
    height: auto;
  }

  .float-wa-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
    background: #fff;
    color: #25D366;
    border-radius: 50%;
  }

  .float-wa-text {
    display: inline; /* Keep text visible on mobile too */
    font-size: 11px;
    font-weight: 700;
    color: #fff;
  }

}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 20px;   /* ← stays low */
  right: 30px;
  width: 38px;    /* ← smaller */
  height: 38px;
  border-radius: 50%;
  background-color: rgba(1, 105, 111, 0.55);  /* ← semi-transparent, less loud */
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;   /* ← one level below WhatsApp */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: none;  /* ← no shadow = less prominent */
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background-color: rgba(1, 105, 111, 0.85);
}

@media (max-width: 767px) {
  #backToTop {
    bottom: 15px;
    right: 14px;
    width: 34px;
    height: 34px;
  }
}

/* Prevent footer clipping fixed buttons */
footer,
#footer {
  overflow: visible !important;
}


/* ══════════════════════════════════════
   BOOK NOW — DESKTOP DROPDOWN
══════════════════════════════════════ */
.book-now-wrapper {
  position: relative;
  display: inline-block;
}

.btn-book-now {
  background: #2d6a3f;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.25s ease;
  white-space: nowrap;
}

.btn-book-now:hover {
  background: #245532;
}

.book-now-arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.book-now-wrapper.open .book-now-arrow {
  transform: rotate(180deg);
}

/* Always anchor to RIGHT edge — never overflows */
.book-now-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  transform: translateY(-8px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid #c9a84c;
  border-radius: 10px;
  min-width: 300px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9999;
}

.book-now-wrapper.open .book-now-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.book-now-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  padding: 4px 14px 10px;
  margin: 0;
}

.book-now-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #0d1b2a;
  transition: background 0.2s ease;
}

.book-now-option:hover {
  background: #f0f7f2;
  color: #0d1b2a;
}

.book-now-option i {
  color: #2d6a3f;
  font-size: 16px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.book-option-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.3;
  white-space: nowrap;
}

.book-option-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #000000;   
  margin-top: 2px;
  white-space: nowrap;
}

.book-now-divider {
  height: 1px;
  background: #eef0f2;
  margin: 6px 4px;
}


/* ══════════════════════════════════════
   BOOK NOW — MOBILE DROPDOWN
══════════════════════════════════════ */
.mobile-book-wrapper {
  position: relative;
  width: 100%;
}

.border-0 {
  border: none !important;
}
.mob-book-arrow {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.mobile-book-wrapper.open .mob-book-arrow {
  transform: rotate(180deg);
}

.mobile-book-dropdown {
  margin-top: 10px;
  background: #0f2137;
  border-radius: 10px;
   border: 0px solid transparent;        /* NO border when closed */
  overflow: hidden;
  max-height: 0;                        /* closed state */
  transition: max-height 0.3s ease;     /* smooth open/close */
}

.mobile-book-wrapper.open .mobile-book-dropdown {
  display: block;
  max-height: 200px;  
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 2px solid #c9a84c;        /* border only when open */
}

.mobile-book-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-book-option:last-child {
  border-bottom: none;
}

.mobile-book-option:hover {
  background: rgba(255,255,255,0.06);
}

.mobile-book-option i {
  color: #c9a84c;
  font-size: 16px;
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mob-option-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.mob-option-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #c9a84c;   /* gold — clearly visible on dark bg */
  margin-top: 2px;
}

@media (max-height: 680px) {
  .hlm-nav {
    justify-content: flex-start;
    padding-top: 12px;
  }
  .hlm-link {
    padding: 9px 0;
  }
  .hlm-link-text {
    font-size: 20px;
  }
}

.prop-address {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  margin: 5px 0 15px;
  transition: color 0.2s ease;
}
.prop-phn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  margin: 5px 0 0;
  transition: color 0.2s ease;
}

.prop-address i {
  color: #c9a84c;   /* gold pin — visible on both green and navy cards */
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 2px;
}
.prop-phn i {
  color: #c9a84c;   /* gold pin — visible on both green and navy cards */
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 2px;
}

.prop-address:hover {
  color: rgba(255, 255, 255, 0.95);
}

.prop-card-actions{
    display:flex;
    gap:12px;
    margin-top:24px;
    flex-wrap:wrap;
}

/* Green solid */
.cta-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  background: var(--green);
  color: #ffffff;

  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  padding: 15px 28px;
  text-decoration: none;
  white-space: nowrap;

  transition: background 0.22s, transform 0.18s;
}

.cta-btn-green i {
  font-size: 13px;
  flex-shrink: 0;
}

.cta-btn-green:hover {
  background: rgba(42, 108, 57, 0.90); /* adjust if your green differs */
  color: #ffffff;
  transform: translateY(-2px);
}
.mb-15 {
    margin-bottom: 15px;
}