/* ===== bgm – Base Global Map ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bgm-sand:        #C8A96E;
  --bgm-sand-light:  #E8D5A8;
  --bgm-sand-pale:   #FAF3E0;
  --bgm-earth:       #8B5E3C;
  --bgm-earth-dark:  #5C3D1E;
  --bgm-dusk:        #2C1F0E;
  --bgm-night:       #1A1208;
  --bgm-white:       #FFFDF8;
  --bgm-muted:       #7A6A55;
  --bgm-border:      #D9C49A;
  --bgm-gold:        #D4A843;
  --bgm-gold-light:  #F0D080;
   --sand: #C8A96A;
    --sand-dark: #A07840;
    --desert-brown: #3D2B1A;
    --desert-mid: #5C3D22;
    --cream: #FDF6EC;
    --text-light: #F5ECD8;
    --text-muted: #C4A882;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
 
  --bgm-font-display: 'Playfair Display', Georgia, serif;
  --bgm-font-body:    'Inter', system-ui, sans-serif;
 
  --bgm-radius-sm:   6px;
  --bgm-radius-md:   12px;
  --bgm-radius-lg:   20px;
 
  --bgm-shadow-sm:   0 2px 8px rgba(44,31,14,.10);
  --bgm-shadow-md:   0 6px 24px rgba(44,31,14,.15);
  --bgm-shadow-lg:   0 16px 48px rgba(44,31,14,.20);
 
  --bgm-max-w:       1250px;
  --bgm-gutter:      clamp(16px, 5vw, 48px);
}
 

html { scroll-behavior: smooth; }
body {
  background: var(--bgm-sand-pale);
  color: var(--bgm-dusk);
  font-family: var(--bgm-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.top-bar {
    background: var(--desert-brown);
    padding: 7px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }
  .top-bar-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
  .top-bar a { color: var(--text-muted); text-decoration: none; font-size: 12px; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
  .top-bar a:hover { color: var(--sand); }
  .top-bar-socials { display: flex; gap: 14px; }
  .top-bar-socials a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
  .top-bar-socials a:hover { color: var(--sand); }

  header { background: var(--desert-mid); padding: 0 24px; position: relative; }
  .header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 76px; }

  .logo-wrap { display: flex; align-items: center; text-decoration: none; }
  .logo-wrap img { height: 52px; width: auto; display: block; filter: brightness(1.08); }

  nav { display: flex; align-items: center; gap: 4px; }
  .nav-link { color: var(--text-light); text-decoration: none; font-size: 13.5px; padding: 8px 12px; border-radius: 4px; position: relative; transition: color 0.2s, background 0.2s; white-space: nowrap; }
  .nav-link:hover { color: var(--sand); background: rgba(200,169,106,0.1); }
  .nav-link.has-dropdown { padding-right: 22px; }
  .nav-link.has-dropdown::after { content: ''; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); border: 4px solid transparent; border-top-color: var(--text-muted); margin-top: 2px; }

  .dropdown-wrap { position: relative; }
  .dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--desert-brown); border: 1px solid rgba(200,169,106,0.2); border-radius: 6px; min-width: 190px; z-index: 100; padding: 6px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
  .dropdown-wrap:hover .dropdown { display: block; }
  .dropdown a { display: block; padding: 9px 16px; color: var(--text-light); text-decoration: none; font-size: 13px; transition: background 0.15s, color 0.15s; }
  .dropdown a:hover { background: rgba(200,169,106,0.12); color: var(--sand); }
  .dropdown-label { font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); padding: 8px 16px 4px; text-transform: uppercase; }
  .dropdown hr { border: none; border-top: 1px solid rgba(200,169,106,0.12); margin: 4px 0; }

  .btn-book { background: var(--sand); color: var(--desert-brown); border: none; padding: 10px 20px; border-radius: 5px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 0.2s; white-space: nowrap; letter-spacing: 0.3px; }
  .btn-book:hover { background: #DABC80; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--sand); border-radius: 2px; transition: all 0.3s; }

  .mobile-nav { display: none; background: var(--desert-brown); border-top: 1px solid rgba(200,169,106,0.15); padding: 12px 16px 20px; }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; color: var(--text-light); text-decoration: none; font-size: 14px; padding: 11px 8px; border-bottom: 1px solid rgba(200,169,106,0.08); transition: color 0.2s; }
  .mobile-nav a:hover { color: var(--sand); }
  .mobile-section-label { font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; padding: 14px 8px 4px; }
  .mobile-book { display: block; background: var(--sand); color: var(--desert-brown) !important; text-align: center; padding: 12px !important; border-radius: 5px; font-weight: 600; margin-top: 14px; border-bottom: none !important; }

  footer { background: var(--desert-brown); color: var(--text-light); margin-top: 32px; }
  .footer-top { max-width: 1200px; margin: 0 auto; padding: 48px 24px 36px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }

  .footer-brand-logo { display: flex; align-items: center; margin-bottom: 16px; text-decoration: none; }
  .footer-brand-logo img { height: 44px; width: auto; filter: brightness(1.05); }

  .footer-tagline { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
  .footer-socials { display: flex; gap: 10px; }
  .footer-socials a { width: 34px; height: 34px; border-radius: 5px; border: 1px solid rgba(200,169,106,0.25); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 16px; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
  .footer-socials a:hover { border-color: var(--sand); color: var(--sand); background: rgba(200,169,106,0.08); }

  .footer-col h4 { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 9px; }
  .footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--sand); }

  .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; }
  .footer-contact-item i { font-size: 16px; color: var(--sand); margin-top: 1px; flex-shrink: 0; }
  .footer-contact-item a, .footer-contact-item p { color: var(--text-muted); text-decoration: none; font-size: 13px; line-height: 1.5; transition: color 0.2s; }
  .footer-contact-item a:hover { color: var(--sand); }

  .footer-divider { border: none; border-top: 1px solid rgba(200,169,106,0.12); max-width: 1200px; margin: 0 auto; }
  .footer-bottom { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
  .footer-copyright { font-size: 12.5px; color: var(--text-muted); }
  .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
  .footer-legal a { font-size: 12.5px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--sand); }

  .demo-body { background: var(--color-background-secondary); text-align: center; padding: 32px 24px; color: var(--color-text-secondary); font-size: 13px; border-left: 3px solid rgba(200,169,106,0.25); }

  @media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 640px) {
    .top-bar { justify-content: center; }
    .top-bar-contacts { justify-content: center; }
    .top-bar-socials { display: none; }
    nav { display: none; }
    .hamburger { display: flex; }
    .btn-book { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 28px; }
    .footer-tagline { max-width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
    .header-inner { height: 64px; }
    .logo-wrap img { height: 44px; }
  }
 
/* ===== GALLERY ===== */
.bgm-gallery {
  max-width: var(--bgm-max-w);
  margin: 28px auto 0;
  padding: 0 var(--bgm-gutter);
}
.bgm-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  border-radius: var(--bgm-radius-lg);
  overflow: hidden;
}
.bgm-gallery__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .4s ease, filter .3s;
}
.bgm-gallery__grid img:hover { transform: scale(1.04); filter: brightness(1.08); }
.bgm-gallery__main { grid-row: 1 / 3; }
.bgm-gallery__more { position: relative; overflow: hidden; }
.bgm-gallery__more img { filter: brightness(.5); }
.bgm-gallery__more-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 600; pointer-events: none;
}
 
/* Lightbox */
.bgm-lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(26,18,8,.95); z-index: 999;
  align-items: center; justify-content: center; padding: 20px;
}
.bgm-lightbox.open { display: flex; }
.bgm-lightbox__img {
  max-width: min(900px,95vw); max-height: 90vh;
  object-fit: contain; border-radius: var(--bgm-radius-md);
}
.bgm-lightbox__close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 32px; cursor: pointer; line-height: 1;
}
.bgm-lightbox__prev, .bgm-lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 36px; cursor: pointer;
  background: rgba(255,255,255,.1); width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
}
.bgm-lightbox__prev { left: 20px; }
.bgm-lightbox__next { right: 20px; }
 
/* ===== MAIN LAYOUT ===== */
.bgm-main {
  max-width: var(--bgm-max-w);
  margin: 40px auto 64px;
  padding: 0 var(--bgm-gutter);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
 
/* ===== CONTENT ===== */
.bgm-content__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bgm-earth); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px;
}
.bgm-content__eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--bgm-gold);
}
.bgm-content__title {
  font-family: var(--bgm-font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700; color: var(--bgm-dusk);
  line-height: 1.2; margin-bottom: 16px;
}
.bgm-content__meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 14px 18px;
  background: var(--bgm-white);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-md);
  margin-bottom: 24px;
}
.bgm-content__meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--bgm-muted); font-weight: 500;
}
.bgm-content__meta-item svg { color: var(--bgm-gold); flex-shrink: 0; }
.bgm-content__desc {
  font-size: 15px; color: #4A3B28; line-height: 1.8; margin-bottom: 30px;
}
.bgm-content__desc strong { color: var(--bgm-earth-dark); }
 
/* Section */
.bgm-section { margin-bottom: 32px; }
.bgm-section__heading {
  font-family: var(--bgm-font-display); font-size: 20px; font-weight: 600;
  color: var(--bgm-earth-dark); margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.bgm-section__heading::after {
  content: ''; flex: 1; height: 1px; background: var(--bgm-border);
}
 
/* Inclusions */
.bgm-inclusions {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.bgm-inclusions__item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 13px;
  background: var(--bgm-white);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-sm);
  font-size: 13px; color: var(--bgm-dusk); font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}
.bgm-inclusions__item:hover { border-color: var(--bgm-gold); box-shadow: var(--bgm-shadow-sm); }
.bgm-inclusions__icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
 
/* Map */
.bgm-map { border-radius: var(--bgm-radius-md); overflow: hidden; border: 1px solid var(--bgm-border); box-shadow: var(--bgm-shadow-sm); }
.bgm-map iframe { display: block; width: 100%; height: 300px; border: none; }
 
/* ===== BOOKING CARD ===== */
.bgm-booking { position: sticky; top: 24px; }
.bgm-booking__card {
  background: var(--bgm-white);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-lg);
  box-shadow: var(--bgm-shadow-lg);
  overflow: hidden;
}
.bgm-booking__header {
  background: linear-gradient(135deg, var(--bgm-earth-dark) 0%, var(--bgm-dusk) 100%);
  padding: 22px 24px 18px; text-align: center;
}
.bgm-booking__label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--bgm-gold-light); margin-bottom: 5px;
}
.bgm-booking__price {
  font-family: var(--bgm-font-display); font-size: 34px; font-weight: 700;
  color: #fff; line-height: 1;
}
.bgm-booking__price span {
  font-family: var(--bgm-font-body); font-size: 13px; font-weight: 400;
  color: var(--bgm-sand-light); margin-left: 4px;
}
.bgm-booking__body { padding: 20px; }
 
/* Fields */
.bgm-booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.bgm-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.bgm-field:last-of-type { margin-bottom: 0; }
.bgm-field label {
  font-size: 10.5px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: var(--bgm-muted);
}
.bgm-field input, .bgm-field select {
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-sm);
  padding: 9px 11px;
  font-family: var(--bgm-font-body); font-size: 13.5px;
  color: var(--bgm-dusk); background: var(--bgm-sand-pale);
  outline: none; transition: border-color .2s; width: 100%; appearance: none;
}
.bgm-field input:focus, .bgm-field select:focus { border-color: var(--bgm-gold); }
 
/* ── Guest Info ── */
.bgm-guest-info { margin-bottom: 14px; }
.bgm-guest-info__heading {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--bgm-muted);
  margin-bottom: 10px; display: flex; align-items: center; gap: 7px;
}
.bgm-guest-info__heading::after { content: ''; flex: 1; height: 1px; background: var(--bgm-border); }
.bgm-field--icon { position: relative; }
.bgm-field--icon input {
  padding-left: 36px;
}
.bgm-field--icon .bgm-field__ico {
  position: absolute; left: 11px; bottom: 9px;
  font-size: 15px; pointer-events: none; line-height: 1;
}
.bgm-field input.bgm-invalid { border-color: #C0392B !important; background: #FFF5F5; }
.bgm-field__err {
  font-size: 11px; color: #C0392B; margin-top: 3px; display: none;
}
.bgm-field__err.show { display: block; }
 
/* ── Extra Services ── */
.bgm-extras { margin-bottom: 14px; }
.bgm-extras__heading {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--bgm-muted);
  margin-bottom: 10px; display: flex; align-items: center; gap: 7px;
}
.bgm-extras__heading::after { content: ''; flex: 1; height: 1px; background: var(--bgm-border); }
.bgm-extras__grid { display: flex; flex-direction: column; gap: 7px; }
.bgm-extra-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  background: var(--bgm-sand-pale);
  border: 1.5px solid var(--bgm-border);
  border-radius: var(--bgm-radius-sm);
  cursor: pointer; transition: border-color .2s, background .2s;
  user-select: none;
}
.bgm-extra-item:hover { border-color: var(--bgm-gold); background: #FEF9EE; }
.bgm-extra-item.selected { border-color: var(--bgm-gold); background: #FEF4D8; }
.bgm-extra-item__left { display: flex; align-items: center; gap: 10px; }
.bgm-extra-item__icon { font-size: 20px; line-height: 1; }
.bgm-extra-item__info {}
.bgm-extra-item__name { font-size: 13px; font-weight: 600; color: var(--bgm-dusk); }
.bgm-extra-item__desc { font-size: 11px; color: var(--bgm-muted); margin-top: 1px; }
.bgm-extra-item__right { display: flex; align-items: center; gap: 8px; }
.bgm-extra-item__price { font-size: 13px; font-weight: 700; color: var(--bgm-earth-dark); white-space: nowrap; }
.bgm-extra-item__check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--bgm-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .2s;
  font-size: 11px; color: transparent;
}
.bgm-extra-item.selected .bgm-extra-item__check {
  background: var(--bgm-gold); border-color: var(--bgm-gold); color: #fff;
}
 
/* ── Calendar ── */
.bgm-cal-wrap {
  margin-bottom: 12px;
  background: var(--bgm-white);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-md);
  overflow: hidden;
}
.bgm-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--bgm-earth-dark), var(--bgm-dusk));
  padding: 10px 14px;
}
.bgm-cal-nav__title {
  font-family: var(--bgm-font-display); font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: .02em;
}
.bgm-cal-nav__btn {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.bgm-cal-nav__btn:hover { background: rgba(255,255,255,.22); }
.bgm-cal-legend {
  display: flex; gap: 12px; padding: 7px 14px 6px; flex-wrap: wrap;
  border-bottom: 1px solid var(--bgm-border);
  background: var(--bgm-sand-pale);
}
.bgm-cal-legend__item {
  display: flex; align-items: center; gap: 5px;
  font-size: 10.5px; color: var(--bgm-muted); font-weight: 500;
}
.bgm-cal-legend__dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.bgm-cal-weekdays {
  display: grid; grid-template-columns: repeat(7,1fr);
  background: var(--bgm-sand-pale);
}
.bgm-cal-weekday {
  text-align: center; padding: 6px 0;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--bgm-muted);
}
.bgm-cal-weekday:first-child { color: #B5451B; }
.bgm-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); padding: 4px; gap: 2px; }
.bgm-cal-day {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
  border-radius: var(--bgm-radius-sm); cursor: pointer;
  font-size: 12.5px; font-weight: 500; color: var(--bgm-dusk);
  position: relative; transition: background .15s, color .15s;
  user-select: none;
}
.bgm-cal-day:hover:not(.disabled):not(.empty) { background: var(--bgm-sand-light); }
.bgm-cal-day.empty { cursor: default; }
.bgm-cal-day.disabled { opacity: .35; cursor: not-allowed; }
.bgm-cal-day__num { line-height: 1; }
.bgm-cal-day__price {
  font-size: 8.5px; font-weight: 600; line-height: 1;
  color: var(--bgm-muted);
}
/* pricing tiers */
.bgm-cal-day.tier-base   { }
.bgm-cal-day.tier-high   { background: #FFF3CD; }
.bgm-cal-day.tier-peak   { background: #FFE5CC; }
.bgm-cal-day.tier-peak .bgm-cal-day__price { color: #B5451B; }
.bgm-cal-day.tier-special{ background: #FFD6DC; }
.bgm-cal-day.tier-special .bgm-cal-day__price { color: #C0392B; }
.bgm-cal-day.tier-off    { background: #E8F5E9; }
.bgm-cal-day.tier-off .bgm-cal-day__price   { color: #27AE60; }
/* range selection */
.bgm-cal-day.checkin  { background: var(--bgm-earth-dark) !important; color: #fff !important; border-radius: var(--bgm-radius-sm) 0 0 var(--bgm-radius-sm); }
.bgm-cal-day.checkout { background: var(--bgm-earth-dark) !important; color: #fff !important; border-radius: 0 var(--bgm-radius-sm) var(--bgm-radius-sm) 0; }
.bgm-cal-day.checkin .bgm-cal-day__price,
.bgm-cal-day.checkout .bgm-cal-day__price { color: var(--bgm-gold-light) !important; }
.bgm-cal-day.in-range { background: rgba(92,61,30,.10) !important; border-radius: 0; }
.bgm-cal-day.checkin.checkout { border-radius: var(--bgm-radius-sm) !important; }
/* today dot */
.bgm-cal-day.today::after {
  content: ''; position: absolute; bottom: 3px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--bgm-gold);
}
/* selected date display */
.bgm-cal-selected {
  display: flex; gap: 6px; padding: 0 4px 8px;
}
.bgm-cal-sel-box {
  flex: 1; padding: 8px 10px;
  background: var(--bgm-sand-pale); border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-sm);
}
.bgm-cal-sel-box__label {
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--bgm-muted); margin-bottom: 3px;
}
.bgm-cal-sel-box__val {
  font-size: 12.5px; font-weight: 600; color: var(--bgm-earth-dark);
}
.bgm-cal-sel-box__rate {
  font-size: 10px; color: var(--bgm-muted); margin-top: 1px;
}
/* price alert banner */
.bgm-cal-alert {
  display: none; align-items: center; gap: 8px;
  margin: 0 4px 8px; padding: 8px 10px;
  border-radius: var(--bgm-radius-sm);
  font-size: 11.5px; font-weight: 600;
}
.bgm-cal-alert.show { display: flex; }
.bgm-cal-alert.warn  { background: #FFF3CD; color: #856404; border: 1px solid #FFD060; }
.bgm-cal-alert.danger{ background: #FFE5E5; color: #C0392B; border: 1px solid #FFAAAA; }
.bgm-cal-alert.good  { background: #E8F5E9; color: #27AE60; border: 1px solid #A8D5B0; }
 
/* Totals */
.bgm-booking__totals {
  border-top: 1px solid var(--bgm-border);
  padding-top: 14px; margin-bottom: 14px;
}
.bgm-booking__total-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--bgm-muted); margin-bottom: 6px;
}
.bgm-booking__total-row.extras-row { color: var(--bgm-earth); }
.bgm-booking__total-row.total {
  color: var(--bgm-dusk); font-weight: 700; font-size: 15.5px;
  padding-top: 8px; border-top: 1px dashed var(--bgm-border); margin-top: 4px;
}
 
/* Button */
.bgm-btn {
  display: block; width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--bgm-gold), var(--bgm-earth));
  color: #fff; font-family: var(--bgm-font-body); font-size: 14.5px;
  font-weight: 700; letter-spacing: .04em; text-align: center;
  border: none; border-radius: var(--bgm-radius-md); cursor: pointer;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(212,168,67,.35);
}
.bgm-btn:hover { opacity: .92; transform: translateY(-1px); }
.bgm-btn:active { transform: translateY(0); }
.bgm-btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 13px;
  background: #25D366; color: #fff;
  font-family: var(--bgm-font-body); font-size: 14px; font-weight: 700;
  letter-spacing: .03em; text-align: center;
  border: none; border-radius: var(--bgm-radius-md); cursor: pointer;
  margin-top: 10px;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(37,211,102,.30);
}
.bgm-btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.bgm-btn-wa:active { transform: translateY(0); }
.bgm-btn-wa svg { flex-shrink: 0; }
 
.bgm-booking__trust {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 10px; font-size: 11.5px; color: var(--bgm-muted);
}
.bgm-booking__perks {
  display: flex; flex-direction: column; gap: 7px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--bgm-border);
}
.bgm-booking__perk { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--bgm-muted); }
.bgm-booking__perk-icon { color: var(--bgm-gold); }
 
/* ===== SIMILAR ROOMS ===== */
.bgm-similar {
  max-width: var(--bgm-max-w); margin: 0 auto 64px; padding: 0 var(--bgm-gutter);
}
.bgm-similar__heading {
  font-family: var(--bgm-font-display); font-size: 26px; font-weight: 700;
  color: var(--bgm-dusk); margin-bottom: 6px;
}
.bgm-similar__sub { font-size: 13.5px; color: var(--bgm-muted); margin-bottom: 24px; }
.bgm-similar__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.bgm-room-card {
  background: var(--bgm-white); border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-lg); overflow: hidden; box-shadow: var(--bgm-shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.bgm-room-card:hover { box-shadow: var(--bgm-shadow-md); transform: translateY(-4px); }
.bgm-room-card__img-wrap { position: relative; overflow: hidden; height: 190px; }
.bgm-room-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bgm-room-card:hover .bgm-room-card__img-wrap img { transform: scale(1.06); }
.bgm-room-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--bgm-gold); color: var(--bgm-night);
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.bgm-room-card__body { padding: 16px 18px 18px; }
.bgm-room-card__meta { font-size: 11.5px; color: var(--bgm-muted); margin-bottom: 5px; }
.bgm-room-card__name {
  font-family: var(--bgm-font-display); font-size: 17px; font-weight: 600;
  color: var(--bgm-earth-dark); margin-bottom: 7px; line-height: 1.3;
}
.bgm-room-card__desc { font-size: 12.5px; color: var(--bgm-muted); line-height: 1.6; margin-bottom: 14px; }
.bgm-room-card__footer { display: flex; align-items: center; justify-content: space-between; }
.bgm-room-card__price { font-size: 12.5px; color: var(--bgm-muted); }
.bgm-room-card__price strong {
  font-size: 19px; color: var(--bgm-earth-dark); font-family: var(--bgm-font-display);
}
.bgm-room-card__link {
  display: inline-block; padding: 7px 16px;
  background: var(--bgm-earth-dark); color: #fff;
  font-size: 12.5px; font-weight: 600; border-radius: var(--bgm-radius-sm);
  transition: background .2s;
}
.bgm-room-card__link:hover { background: var(--bgm-earth); }
 
/* Toast */
.bgm-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bgm-earth-dark); color: #fff;
  padding: 11px 22px; border-radius: 40px; font-size: 13.5px; font-weight: 500;
  box-shadow: var(--bgm-shadow-md); transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  z-index: 9999; white-space: nowrap;
}
.bgm-toast.show { transform: translateX(-50%) translateY(0); }
 
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bgm-main { grid-template-columns: 1fr; }
  .bgm-booking { position: static; }
  .bgm-similar__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .bgm-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px 140px;
  }
  .bgm-gallery__main { grid-column: 1/3; grid-row: 1; }
  .bgm-inclusions { grid-template-columns: 1fr; }
  .bgm-similar__grid { grid-template-columns: 1fr; }
  .bgm-booking__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bgm-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 160px 160px;
  }
  .bgm-gallery__main { grid-column: 1; grid-row: 1; }
  .bgm-gallery__grid > div:nth-child(n+4) { display: none; }
}


/*  */
/* ─── TOUR INTRO ─── */
.tour-intro {
  background: var(--bgm-dusk);
  padding: 48px var(--bgm-gutter) 40px;
}
.tour-intro__inner {
  max-width: var(--bgm-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.tour-intro__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bgm-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tour-intro__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--bgm-gold);
  flex-shrink: 0;
}
.tour-intro__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 300;
  color: var(--bgm-white);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.tour-intro__title em { font-style: italic; color: var(--bgm-sand-light); }
.tour-intro__tagline {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.tour-intro__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.badge-diff {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.35);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bgm-gold-light);
  letter-spacing: .04em;
}
.badge-diff .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bgm-gold);
}
.price-block { text-align: right; }
.price-block__label {
  font-size: 11px; color: var(--bgm-muted);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px;
}
.price-block__amount {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 600;
  color: var(--bgm-white); line-height: 1;
}
.price-block__amount span {
  font-size: 20px; font-weight: 400;
  color: var(--bgm-sand);
  vertical-align: top; margin-top: 6px; display: inline-block;
}
.price-block__sub { font-size: 12px; color: var(--bgm-muted); margin-top: 4px; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--bgm-earth-dark);
  border-bottom: 1px solid rgba(201,169,110,.18);
}
.stats-bar__inner {
  max-width: var(--bgm-max-w);
  margin: 0 auto;
  padding: 0 var(--bgm-gutter);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.stats-bar__inner::-webkit-scrollbar { display: none; }
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px 20px 0;
  min-width: max-content;
  border-right: 1px solid rgba(201,169,110,.15);
  margin-right: 32px;
}
.stat-item:last-child { border-right: none; margin-right: 0; }
.stat-item__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,169,110,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-item__icon svg {
  width: 16px; height: 16px;
  fill: none; stroke: var(--bgm-sand);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.stat-item__value {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--bgm-white); line-height: 1.1;
}
.stat-item__label {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ─── LAYOUT ─── */
.main-content {
  max-width: var(--bgm-max-w);
  margin: 0 auto;
  padding: 56px var(--bgm-gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

/* ─── GALLERY ─── */
.gallery { margin-bottom: 52px; }

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 6px;
  border-radius: var(--bgm-radius-lg);
  overflow: hidden;
}
.gallery__main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  background: var(--bgm-earth);
}
.gallery__thumb {
  position: relative;
  overflow: hidden;
  background: var(--bgm-earth-dark);
}
.gallery__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.gallery__main:hover .gallery__img,
.gallery__thumb:hover .gallery__img { transform: scale(1.06); }

.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.5) 0%, transparent 50%);
  pointer-events: none;
}
.gallery__main .gallery__overlay {
  background: linear-gradient(to top, rgba(26,18,8,.55) 0%, transparent 55%);
}
.gallery__caption {
  position: absolute; bottom: 14px; left: 16px;
  font-size: 12px; color: rgba(255,253,248,.85);
  font-style: italic; font-family: var(--font-display);
  font-size: 14px; letter-spacing: .01em;
  pointer-events: none;
}
.gallery__count {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(26,18,8,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px; color: var(--bgm-sand-light);
  font-weight: 500; cursor: pointer;
  transition: background .2s;
}
.gallery__count:hover { background: rgba(44,31,14,.85); }

/* ─── SECTION HEADER ─── */
.section-head {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 28px;
}
.section-head__line { flex: 1; height: 1px; background: var(--bgm-border); }
.section-head__label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--bgm-sand); white-space: nowrap;
}

/* ─── OVERVIEW ─── */
.overview { margin-bottom: 52px; }
.overview__heading {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  color: var(--bgm-earth-dark); margin-bottom: 16px; line-height: 1.25;
}
.overview__text {
  font-size: 15px; color: var(--bgm-muted);
  line-height: 1.8; margin-bottom: 16px;
}

/* ─── HIGHLIGHTS ─── */
.highlights { margin-bottom: 52px; }
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.highlight-card {
  background: var(--bgm-sand-pale);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-md);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.highlight-card:hover {
  box-shadow: var(--bgm-shadow-md);
  transform: translateY(-2px);
}
.highlight-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--bgm-radius-sm);
  background: linear-gradient(135deg, var(--bgm-earth), var(--bgm-earth-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.highlight-card__title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  color: var(--bgm-earth-dark); margin-bottom: 4px;
}
.highlight-card__desc {
  font-size: 13px; color: var(--bgm-muted); line-height: 1.55;
}

/* ─── ITINERARY ─── */
.itinerary { margin-bottom: 52px; }
.day-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 20px;
  position: relative;
}
.day-item:last-child .day-item__line { display: none; }
.day-item__num-col {
  display: flex; flex-direction: column;
  align-items: center; padding-top: 2px;
}
.day-item__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--bgm-border);
  background: var(--bgm-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--bgm-earth); flex-shrink: 0; position: relative; z-index: 1;
}
.day-item.active .day-item__num {
  background: var(--bgm-earth);
  border-color: var(--bgm-earth);
  color: var(--bgm-white);
}
.day-item__line {
  width: 2px; flex: 1;
  background: linear-gradient(to bottom, var(--bgm-border), transparent);
  margin-top: 4px; min-height: 40px;
}
.day-item__body { padding-bottom: 36px; }
.day-item__tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bgm-sand); margin-bottom: 4px;
}
.day-item__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--bgm-earth-dark); margin-bottom: 8px; line-height: 1.2;
}
.day-item__desc {
  font-size: 14px; color: var(--bgm-muted);
  line-height: 1.7; margin-bottom: 12px;
}
.things{
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400;
  color: var(--bgm-earth-dark); margin-bottom: 16px; line-height: 1.25;
}
h3{
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--bgm-earth-dark); margin-bottom: 8px; line-height: 1.2;
}
ul{
  font-size: 14px; color: var(--bgm-muted);
  line-height: 1.7; margin-bottom: 12px;
}

.day-item__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bgm-sand-pale);
  border: 1px solid var(--bgm-border);
  border-radius: 40px; padding: 4px 12px;
  font-size: 12px; color: var(--bgm-earth); font-weight: 500;
}
.pill::before { content: '·'; color: var(--bgm-sand); }

/* ─── MAP ─── */
.map-strip {
  margin-bottom: 52px;
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-lg);
  overflow: hidden;
}
.map-strip__visual {
  height: 220px;
  background: linear-gradient(135deg, #e8d5b0 0%, #d4b888 40%, #c4a070 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-strip__visual svg.terrain {
  width: 100%; height: 100%;
  position: absolute; inset: 0; opacity: .35;
}
.map-strip__label {
  background: var(--bgm-dusk);
  color: var(--bgm-white);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
}
.map-strip__route {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  color: var(--bgm-sand-light);
}
.route-arrow { color: var(--bgm-gold); font-size: 20px; }
.map-strip__km { font-size: 13px; color: var(--bgm-muted); }
.map-pins { position: absolute; inset: 0; }
.map-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.map-pin__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bgm-gold);
  border: 3px solid var(--bgm-white);
  box-shadow: var(--bgm-shadow-sm);
  position: relative;
}
.map-pin__dot::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(212,168,67,.4);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}
.map-pin__name {
  background: var(--bgm-earth-dark);
  color: var(--bgm-white);
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  white-space: nowrap; letter-spacing: .04em;
}

/* ─── INC / EXC ─── */
.inc-exc {
  margin-bottom: 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.inc-exc__box {
  background: var(--bgm-sand-pale);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-md);
  padding: 24px;
}
.inc-exc__box--exc { background: #fdf0f0; border-color: #e8c8c8; }
.inc-exc__heading {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--bgm-earth-dark); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.inc-exc__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.inc-exc__list li {
  font-size: 14px; color: var(--bgm-muted);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.inc-exc__list li::before {
  content: '✓'; font-size: 12px; font-weight: 700;
  color: #4a9e6e; margin-top: 1px; flex-shrink: 0;
}
.inc-exc__box--exc .inc-exc__list li::before { content: '✕'; color: #c05a5a; }

/* ─── REVIEWS ─── */
.reviews { margin-bottom: 52px; }
.reviews__summary {
  display: flex; align-items: center; gap: 24px;
  background: var(--bgm-sand-pale);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-md);
  padding: 24px; margin-bottom: 24px;
}
.reviews__score {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 600;
  color: var(--bgm-earth-dark); line-height: 1; flex-shrink: 0;
}
.reviews__stars { font-size: 20px; color: var(--bgm-gold); letter-spacing: 2px; margin-bottom: 4px; }
.reviews__count { font-size: 13px; color: var(--bgm-muted); }
.reviews__bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.review-bar {
  display: flex; align-items: center;
  gap: 10px; font-size: 12px; color: var(--bgm-muted);
}
.review-bar__label { width: 60px; flex-shrink: 0; }
.review-bar__track {
  flex: 1; height: 6px;
  background: var(--bgm-border); border-radius: 3px; overflow: hidden;
}
.review-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bgm-earth), var(--bgm-gold));
  border-radius: 3px;
}
.review-bar__pct { width: 36px; text-align: right; flex-shrink: 0; }
.review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-card {
  background: var(--bgm-white);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-md);
  padding: 20px;
  box-shadow: var(--bgm-shadow-sm);
}
.review-card__header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--bgm-white); flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: 14px; color: var(--bgm-earth-dark); }
.review-card__date { font-size: 12px; color: var(--bgm-muted); }
.review-card__stars { font-size: 13px; color: var(--bgm-gold); }
.review-card__text {
  font-size: 14px; color: var(--bgm-muted);
  line-height: 1.65; font-style: italic;
}
.review-card__text::before { content: '"'; }
.review-card__text::after  { content: '"'; }

/* ════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ─── ENQUIRY CARD ─── */
.enquiry-card {
  background: var(--bgm-white);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-lg);
  overflow: hidden;
  box-shadow: var(--bgm-shadow-md);
}

.enquiry-card__head {
  background: linear-gradient(135deg, var(--bgm-earth-dark) 0%, var(--bgm-dusk) 100%);
  padding: 26px 24px 22px;
  text-align: center;
  position: relative;
}
.enquiry-card__head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--bgm-gold), transparent);
}
.enquiry-card__eyebrow {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.enquiry-card__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--bgm-white); line-height: 1.2; margin-bottom: 4px;
}
.enquiry-card__sub {
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
}

/* PRICE STRIP */
.enquiry-card__price-strip {
  background: rgba(212,168,67,.1);
  border-top: 1px solid rgba(212,168,67,.2);
  border-bottom: 1px solid rgba(212,168,67,.2);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bgm-earth-dark);
}
.price-from {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600; color: var(--bgm-white); line-height: 1;
}
.price-amount sup { font-size: 15px; font-weight: 400; color: var(--bgm-sand); vertical-align: super; }
.price-per { font-size: 11px; color: var(--text-muted); }

.aal{
    max-width:420px;
    margin:auto;
    padding:24px;
    background:#f7f4ef;
    border-radius:20px;
    font-family:Arial,sans-serif;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.aal-field{
    margin-bottom:18px;
}

.aal-field label{
    display:block;
    margin-bottom:8px;
    font-size:12px;
    letter-spacing:1px;
    color:#7f6e57;
    font-weight:700;
}

.aal-field label span{
    color:#d4a64c;
}

.aal input,
.aal select,
.aal textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d9c08f;
    background:#f4ecd8;
    border-radius:8px;
    font-size:12px;
    color:#333;
    outline:none;
    box-sizing:border-box;
}

.aal textarea{
    resize:vertical;
}

.aal input:focus,
.aal select:focus,
.aal textarea:focus{
    border-color:#c39a45;
}

.aal-row{
    display:flex;
    gap:12px;
}

.aal-row .aal-field{
    flex:1;
}

.aal-phone-wrap{
    display:flex;
}

.aal-phone-wrap select{
    width:120px;
    border-radius:8px 0 0 8px;
}

.aal-phone-wrap input{
    border-radius:0 8px 8px 0;
}

.aal-whatsapp-btn{
    width:100%;
    border:none;
    background:linear-gradient(90deg,#25d366,#11998e);
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:16px;
    border-radius:15px;
    cursor:pointer;
    transition:.3s;
}

.aal-whatsapp-btn:hover{
    transform:translateY(-2px);
}

.aal-whatsapp-btn i{
    margin-right:10px;
    font-size:22px;
}

.aal-note{
    margin-top:15px;
    text-align:center;
    color:#7c756b;
    font-size:14px;
    line-height:1.5;
}

@media(max-width:600px){

    .aal-row{
        flex-direction:column;
        gap:0;
    }

    .aal{
        padding:18px;
    }

}

.enquiry-note {
  font-size: 11.5px; color: var(--bgm-muted);
  text-align: center; margin-top: 10px; line-height: 1.5;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.enquiry-note svg { width: 13px; height: 13px; flex-shrink: 0; fill: none; stroke: var(--bgm-muted); stroke-width: 1.5; }

/* ─── TRUST CARD ─── */
.trust-card {
  background: var(--bgm-sand-pale);
  border: 1px solid var(--bgm-border);
  border-radius: var(--bgm-radius-md);
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item__icon {
  width: 36px; height: 36px;
  border-radius: var(--bgm-radius-sm);
  background: var(--bgm-earth);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.trust-item__title { font-size: 13px; font-weight: 600; color: var(--bgm-earth-dark); margin-bottom: 2px; }
.trust-item__desc { font-size: 12px; color: var(--bgm-muted); line-height: 1.45; }

/* ─── CONTACT CARD ─── */
.contact-card {
  background: var(--bgm-dusk);
  border-radius: var(--bgm-radius-md);
  padding: 22px;
}
.contact-card__heading {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 400;
  color: var(--bgm-white); margin-bottom: 4px;
}
.contact-card__sub { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  border-radius: var(--bgm-radius-sm);
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: opacity .2s;
  text-decoration: none; margin-bottom: 8px; border: none;
  font-family: inherit;
}
.contact-btn:hover { opacity: .85; }
.contact-btn--call {
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3);
  color: var(--bgm-sand-light);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
  }
  .sidebar {
    position: static;
    max-width: 560px;
  }
  .tour-intro__inner { grid-template-columns: 1fr; }
  .tour-intro__meta { align-items: flex-start; }
  .price-block { text-align: left; }
}

@media (max-width: 680px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 160px 160px;
  }
  .gallery__main { grid-row: 1; }

  .highlights__grid { grid-template-columns: 1fr; }
  .inc-exc { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .reviews__summary { flex-direction: column; gap: 16px; }

  .form-row { grid-template-columns: 1fr; }

  .tour-intro { padding: 32px var(--bgm-gutter) 28px; }
  .stat-item { padding: 16px 24px 16px 0; }

  .map-strip__route { font-size: 13px; gap: 6px; }
  .map-strip__label { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 420px) {
  .gallery__grid { grid-template-rows: 220px 140px 140px; }
  .enquiry-card__body { padding: 18px 14px 16px; }
  .phone-wrap .country-code { width: 82px; }
}