
  /* ===== CSS VARIABLES ===== */
  :root {
    --blue-900: #042C53;
    --blue-800: #0C447C;
    --blue-700: #185FA5;
    --blue-600: #1A6FBF;
    --blue-400: #378ADD;
    --blue-200: #85B7EB;
    --blue-100: #B5D4F4;
    --blue-50:  #E6F1FB;

    --gold-900: #412402;
    --gold-800: #633806;
    --gold-700: #854F0B;
    --gold-600: #BA7517;
    --gold-400: #EF9F27;
    --gold-200: #FAC775;
    --gold-100: #FAEEDA;
    --gold-50:  #FEF8EC;

    --green-700: #3B6D11;
    --green-600: #639922;
    --green-200: #C0DD97;
    --green-50:  #EAF3DE;

    --gray-900: #1A1A2E;
    --gray-800: #2C2C3E;
    --gray-700: #3E3E52;
    --gray-500: #6B6B80;
    --gray-400: #9090A0;
    --gray-200: #D8D8E2;
    --gray-100: #EFEFF5;
    --gray-50:  #F7F7FC;

    --body-font: 'DM Sans', sans-serif;
    --serif-font: 'Cormorant Garamond', serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--body-font);
    font-size: 18px;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.7;
  }

  /* ===== NAV ===== */
  .site-nav {
    background: var(--blue-900) !important;
    height: 64px;
    box-shadow: 0 2px 12px rgba(4,44,83,0.18);
  }
  .nav-brand-text {
    font-family: var(--serif-font);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .nav-brand-text span { color: var(--gold-400); }
  .site-nav .nav-link {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.2s;
  }
  .site-nav .nav-link:hover { color: var(--gold-400) !important; }
  .nav-cta-btn {
    background: var(--gold-600);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
  }
  .nav-cta-btn:hover { background: var(--gold-400); color: var(--gray-900) !important; }

  /* ===== HERO ===== */
  .hero {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(55,138,221,0.12);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: 20%;
    width: 500px; height: 300px;
    border-radius: 50%;
    background: rgba(186,117,23,0.08);
    pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 2; padding: 5rem 0 4rem; }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-200);
    background: rgba(186,117,23,0.15);
    border: 1px solid rgba(186,117,23,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow svg { width: 13px; height: 13px; fill: var(--gold-400); }
  .hero h1 {
    font-family: var(--serif-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 680px;
  }
  .hero-sub {
    font-size: 16.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 2.5rem;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-100);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 7px 16px;
    border-radius: 20px;
  }
  .hero-badge svg { width: 14px; height: 14px; fill: var(--gold-400); flex-shrink: 0; }
  .hero-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
    border-radius: 2px;
    margin-top: 2rem;
  }

  /* ===== STATS ===== */
  .stats-section {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
  }
  .stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--gray-200);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--serif-font);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--blue-700);
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-num.gold { color: var(--gold-600); }
  .stat-label { font-size: 14px; color: var(--gray-500); line-height: 1.5; max-width: 140px; margin: 0 auto; }

  /* ===== SECTION HEADERS ===== */
  .section-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .section-icon svg { width: 20px; height: 20px; fill: var(--blue-700); }
  .section-icon.gold-icon { background: var(--gold-100); border-color: var(--gold-200); }
  .section-icon.gold-icon svg { fill: var(--gold-700); }
  .section-icon.green-icon { background: var(--green-50); border-color: var(--green-200); }
  .section-icon.green-icon svg { fill: var(--green-700); }
  .section-title {
    font-family: var(--serif-font);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 0;
  }
  .section-rule {
    height: 1px; border: none;
    background: linear-gradient(90deg, var(--blue-100), transparent);
    margin-bottom: 1.75rem;
  }
  .section-rule.gold-rule { background: linear-gradient(90deg, var(--gold-200), transparent); }
  .section-rule.green-rule { background: linear-gradient(90deg, var(--green-200), transparent); }
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    margin: 3rem 0;
  }

  /* ===== BODY TEXT ===== */
  .body-text { font-size: 17px; line-height: 1.8; color: var(--gray-700); }
  .body-text p { margin-bottom: 1rem; }
  .body-text p:last-child { margin-bottom: 0; }

  .intro-accent {
    border-left: 4px solid var(--gold-400);
    background: var(--gold-50);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    font-style: italic;
    font-family: var(--serif-font);
    font-size: 1.15rem;
    color: var(--gold-900);
    line-height: 1.7;
  }

  /* ===== CONDITION CARDS ===== */
  .condition-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--blue-400);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
  }
  .condition-card:hover { box-shadow: 0 4px 16px rgba(24,95,165,0.1); transform: translateY(-2px); }
  .condition-card-title { font-size: 15px; font-weight: 500; color: var(--blue-800); margin-bottom: 5px; }
  .condition-card-body { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

  /* ===== SERVICE CARDS ===== */
  .service-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    transition: box-shadow 0.2s;
    height: 100%;
  }
  .service-card:hover { box-shadow: 0 4px 16px rgba(24,95,165,0.08); }
  .service-dot {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .service-dot svg { width: 16px; height: 16px; fill: var(--blue-700); }
  .service-dot.gold-dot { background: var(--gold-100); border-color: var(--gold-200); }
  .service-dot.gold-dot svg { fill: var(--gold-700); }
  .service-name { font-size: 15px; font-weight: 500; color: var(--gray-800); margin-bottom: 4px; }
  .service-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

  /* ===== DIFF ITEMS ===== */
  .diff-item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s;
  }
  .diff-item:hover { box-shadow: 0 4px 16px rgba(24,95,165,0.08); }
  .diff-num {
    font-family: var(--serif-font);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--blue-100);
    min-width: 36px;
    line-height: 1;
    padding-top: 2px;
  }
  .diff-title { font-size: 16px; font-weight: 500; color: var(--blue-800); margin-bottom: 5px; }
  .diff-desc { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

  /* ===== WOMEN CALLOUT ===== */
  .women-callout {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--gold-50) 100%);
    border: 1px solid var(--blue-100);
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
  }
  .women-callout::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(24,95,165,0.06);
    pointer-events: none;
  }
  .women-badge {
    width: 48px; height: 48px;
    background: var(--blue-700);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .women-badge svg { width: 24px; height: 24px; fill: #fff; }
  .women-callout-title {
    font-family: var(--serif-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue-900);
    margin-bottom: 5px;
  }
  .women-callout-body { font-size: 15px; color: var(--gray-700); line-height: 1.7; }
  .women-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue-800);
    background: #fff;
    border: 1px solid var(--blue-200);
    padding: 6px 14px;
    border-radius: 20px;
  }
  .women-pill svg { width: 13px; height: 13px; fill: var(--blue-600); }

  /* ===== ROOM CARDS ===== */
  .room-card {
    border-radius: 10px;
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1px solid transparent;
    transition: transform 0.2s;
  }
  .room-card:hover { transform: translateY(-3px); }
  .room-card.suite  { background: var(--gold-100); border-color: var(--gold-200); }
  .room-card.private { background: var(--blue-50);  border-color: var(--blue-100); }
  .room-card.double,
  .room-card.triple { background: var(--gray-100); border-color: var(--gray-200); }
  .room-icon { font-size: 24px; margin-bottom: 8px; display: block; }
  .room-name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
  .room-card.suite   .room-name { color: var(--gold-800); }
  .room-card.private .room-name { color: var(--blue-800); }
  .room-card.double  .room-name,
  .room-card.triple  .room-name { color: var(--gray-700); }
  .room-tag { font-size: 13px; line-height: 1.45; }
  .room-card.suite   .room-tag { color: var(--gold-700); }
  .room-card.private .room-tag { color: var(--blue-700); }
  .room-card.double  .room-tag,
  .room-card.triple  .room-tag { color: var(--gray-500); }

  /* ===== LOCATION ===== */
  .location-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.75rem;
  }
  .location-pin {
    width: 50px; height: 50px;
    background: var(--blue-700);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .location-pin svg { width: 22px; height: 22px; fill: #fff; }
  .location-title { font-size: 17px; font-weight: 500; color: var(--blue-900); margin-bottom: 6px; }
  .location-body { font-size: 15px; color: var(--gray-500); line-height: 1.7; }
  .location-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green-700);
    background: var(--green-50);
    border: 1px solid var(--green-200);
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 10px;
  }
  .location-tag svg { width: 12px; height: 12px; fill: var(--green-600); }

  /* ===== CTA ===== */
  .cta-section {
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 70%, var(--blue-700) 100%);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(55,138,221,0.1);
    pointer-events: none;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 10%;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(186,117,23,0.08);
    pointer-events: none;
  }
  .cta-eyebrow {
    font-size: 13px; letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-200); margin-bottom: 1rem;
    position: relative; z-index: 2;
  }
  .cta-title {
    font-family: var(--serif-font);
    font-size: 2.1rem; font-weight: 600;
    color: #fff; margin-bottom: 0.75rem;
    position: relative; z-index: 2;
  }
  .cta-sub {
    font-size: 16px; color: rgba(255,255,255,0.7);
    max-width: 520px; margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative; z-index: 2;
  }
  .cta-buttons { position: relative; z-index: 2; }
  .btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-400); color: var(--gray-900) !important;
    font-size: 16px; font-weight: 500;
    padding: 12px 28px; border-radius: 25px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary-custom:hover { background: var(--gold-200); transform: translateY(-1px); }
  .btn-primary-custom svg { width: 16px; height: 16px; fill: var(--gray-900); }
  .btn-secondary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1); color: #fff !important;
    font-size: 16px; font-weight: 400;
    padding: 12px 28px; border-radius: 25px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
  }
  .btn-secondary-custom:hover { background: rgba(255,255,255,0.18); }
  .btn-secondary-custom svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }

  /* ===== KEYWORDS ===== */
  .keywords-section {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
  }
  .keywords-label {
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray-400); margin-bottom: 10px;
  }
  .kw-tag {
    display: inline-block;
    font-size: 14px;
    color: var(--blue-700);
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    padding: 5px 13px; border-radius: 20px;
    margin: 3px;
    transition: background 0.15s;
  }
  .kw-tag:hover { background: var(--blue-100); }

  /* ===== FOOTER ===== */
  .site-footer {
    background: var(--blue-900);
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 1.75rem 2rem;
    font-size: 14px;
    line-height: 1.7;
  }
  .site-footer a { color: var(--gold-200); text-decoration: none; }
  .site-footer a:hover { color: var(--gold-400); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 767px) {
    .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .cta-section { padding: 2rem 1.25rem; }
  }

  /* ===== HERO VIDEO ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-video-wrap {
  position: relative;
}

.hero-video-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-video-card video,
.hero-video-card iframe {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: none;
  display: block;
}

/* ===== IMAGE GALLERY ===== */
.gallery-section {
  margin: 4rem 0;
}

.gallery-card {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-title {
  text-align: center;
  margin-bottom: 2rem;
}

/* Lightbox modal styling */
.image-preview-modal .modal-dialog {
  max-width: 90%;
  width: auto;
  margin: 1.75rem auto;
}
.image-preview-modal .modal-content {
  background: rgba(0,0,0,0.9);
  border: none;
  border-radius: 12px;
}
.image-preview-modal .modal-body {
  padding: 0;
  text-align: center;
}
.preview-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: inline-block;
}
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 2rem;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
.modal-nav-btn:hover {
  background: rgba(255,255,255,0.4);
  color: white;
}
.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}
.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  background: none;
  border: none;
  z-index: 20;
  opacity: 0.7;
}
.close-modal-btn:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .modal-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.accordion-item {
  border: 1px solid var(--gray-200) !important;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 14px;
}

.accordion-button {
  font-weight: 500;
  color: var(--blue-900);
  background: #fff;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--blue-50);
  color: var(--blue-800);
}

.accordion-body {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== MAP ===== */
.map-wrapper {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  margin-top: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-video-card iframe,
  .hero-video-card video {
    height: 320px;
  }
}
