/* ============================================================
   Sungura Safari Camp — Main CSS
   All non-responsive styles extracted from both HTML sources
   ============================================================ */

:root {
  --bg:          #FFFFFF;
  --bg-2:        #FFFFFF;
  --gold:        #C9A96E;
  --gold-soft:   #F0E2C0;
  --gold-dark:   #a88450;
  --russet:      #614743;
  --russet-dark: #4a3330;
  --clay:        #8B5E3C;
  --mist:        #F4EFE6;
  --acacia:      #4A5C3A;
  --ink:         #2A1F14;
  --heading:     #614743;

  /* ── Trial: burnt-orange dark backgrounds ── */
  --dark-1:   #cd6100;   /* main dark bg  */
  --dark-2:   #a84f00;   /* section dark  */
  --dark-3:   #8a3f00;   /* footer body   */
  --dark-4:   #6a3000;   /* footer bottom */
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }

html { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--heading);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.53;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--heading); margin: 0 0 14px; }
em, i { font-style: normal; font-weight: 600; }

.h-serif { font-family: "Inter", system-ui, sans-serif; font-weight: 300; letter-spacing: 0.01em; }
.h-italic { font-family: "Inter", system-ui, sans-serif; font-style: normal; font-weight: 600; font-weight: 400; }
.caps { font-family: "Inter"; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--russet); font-weight: 400; }

/* ============ TOP BAR ============ */
.topbar {
  background: #fff;
  color: var(--russet);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(97,71,67,0.15);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-left a { color: var(--russet); text-decoration: none; transition: opacity .2s; }
.topbar-left a:hover { opacity: 0.7; }
.topbar-divider { width: 1px; height: 14px; background: rgba(97,71,67,0.2); flex-shrink: 0; }
.topbar-dot { opacity: 0.45; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { display: inline-flex; align-items: center; text-decoration: none; }
.topbar-right a:hover { opacity: 1; }
.tb-icon { width: 13px; height: 13px; flex-shrink: 0; }
.tb-social-img { width: 18px; height: 18px; object-fit: contain; display: block; transition: transform .2s, opacity .2s; opacity: 1; }
.topbar-right a:hover .tb-social-img { opacity: 1; transform: translateY(-2px); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 40px;
  left: 0; right: 0;
  z-index: 40;
  transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease, top .35s ease, padding .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  top: 40px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(205,97,0,0.15);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 40px;
  transition: padding .35s ease;
}
.nav.scrolled .nav-inner { padding: 12px 40px; }
.nav-logo { display: flex; justify-content: center; }
.nav-logo img { height: 60px; width: auto; transition: height .35s ease; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4)); }
.nav.scrolled .nav-logo img { height: 46px; }
.nav-links {
  display: flex;
  gap: 26px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}
.nav-links.left { justify-content: flex-end; }
.nav-links.right { justify-content: flex-start; }
.nav-links a {
  position: relative;
  padding: 6px 2px;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--dark-1);
  transition: width .3s ease, left .3s ease;
}
.nav-links a:hover { opacity: 1; color: var(--dark-1); }
.nav-links a:hover::after { width: 100%; left: 0; background: var(--dark-1); }
.nav-links a.active { color: var(--dark-1); opacity: 1; }
.nav-links a.active::after { width: 100%; left: 0; background: var(--dark-1); }
.nav-cta { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.nav-cta .btn { padding: 9px 20px; font-size: 10.5px; letter-spacing: 0.2em; background: var(--dark-1); border-color: var(--dark-1); color: #fff; }
.nav-cta .btn:hover { background: var(--dark-2); border-color: var(--dark-2); color: #fff; }
.nav.scrolled .nav-links { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav.scrolled .nav-cta .btn { background: var(--dark-1); border-color: var(--dark-1); color: #fff; }

/* ── Grid toggle button ── */
.nav-grid-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 34px; height: 34px;
  background: #fff;
  border: 1px solid rgba(97,71,67,0.5);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.nav-grid-btn span {
  display: block;
  width: 6px; height: 6px;
  border-radius: 1.5px;
  background: var(--dark-1);
}
.nav-grid-btn:hover { border-color: var(--dark-1); background: rgba(97,71,67,0.1); }
.nav.scrolled .nav-grid-btn { border-color: var(--dark-1); background: var(--dark-1); }
.nav.scrolled .nav-grid-btn span { background: #fff; }
.nav.scrolled .nav-grid-btn:hover { background: var(--dark-1); border-color: var(--dark-1); }
.nav.scrolled .nav-grid-btn:hover span { background: #fff; }

/* ── Mobile nav bar (separate from desktop nav-inner grid — shown below 768px only) ── */
.nav-mobile { display: none; width: 100%; }
.nav-logo-mobile { display: flex; }
.nav-logo-mobile img { height: 48px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35)); }

/* ── Mobile nav toggle — 4-square grid icon (hidden on desktop) ── */
.mobile-nav-toggle {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 34px; height: 34px;
  background: #fff;
  border: 1px solid rgba(97,71,67,0.5);
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.mobile-nav-toggle span {
  display: block;
  width: 6px; height: 6px;
  border-radius: 1.5px;
  background: var(--dark-1);
}
.mobile-nav-toggle:hover { border-color: var(--dark-1); background: rgba(97,71,67,0.1); }
.nav.scrolled .mobile-nav-toggle { border-color: var(--dark-1); background: var(--dark-1); }
.nav.scrolled .mobile-nav-toggle span { background: #fff; }

/* ── Mobile nav drawer ── */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(20,15,8,0.6);
  z-index: 220;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  max-width: 84vw;
  background: #fff;
  z-index: 221;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  color: var(--russet); font-size: 28px; line-height: 1;
  cursor: pointer; opacity: 0.6; transition: opacity .2s;
}
.mobile-nav-close:hover { opacity: 1; }
.mobile-nav-logo { width: 64px; margin-bottom: 24px; }
.mobile-nav-logo img { width: 100%; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-links > a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid rgba(97,71,67,0.12);
}
.mobile-nav-links > a.active { color: var(--dark-1); }
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-group > a:first-child {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0 6px;
}
.mobile-nav-group.active > a:first-child,
.mobile-nav-group > a.sub.active { color: var(--gold); }
.mobile-nav-group > a.sub {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(42,31,20,0.62);
  padding: 7px 0 7px 14px;
}
.mobile-nav-group:last-of-type { border-bottom: 1px solid rgba(97,71,67,0.12); padding-bottom: 6px; margin-bottom: 0; }
.mobile-nav-cta { margin-top: 28px; text-align: center; }

/* ── Sidebar overlay ── */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(20,15,8,0.6);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }

/* ── Sidebar panel ── */
.sidebar-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 340px;
  background: #fff;
  border-left: 1px solid rgba(97,71,67,0.2);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 48px 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-panel.open { transform: translateX(0); }
.sidebar-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: var(--russet); font-size: 28px; line-height: 1;
  cursor: pointer; opacity: 0.6; transition: opacity .2s;
}
.sidebar-close:hover { opacity: 1; }
.sidebar-logo { width: 72px; margin-bottom: 12px; }
.sidebar-logo img { width: 100%; }
.sidebar-name {
  font-family: "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 18px;
  color: var(--russet);
  font-weight: 600;
  margin: 0 0 10px;
}
.sidebar-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: normal; font-weight: 600;
  color: #7a6a5a;
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 0;
}
.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.sidebar-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sidebar-stat-num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  color: var(--russet);
  line-height: 1;
}
.sidebar-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a89080;
}
.sidebar-highlights {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: #5a4a3a;
  line-height: 1.4;
}
.sidebar-highlights svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--russet); }
.sidebar-divider { height: 1px; background: rgba(97,71,67,0.2); margin: 20px 0; }
.sidebar-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.sidebar-contact a {
  display: flex; align-items: center; gap: 12px;
  color: #5a4a3a;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.sidebar-contact a:hover { color: var(--russet); }
.sidebar-contact svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--russet); }
.sidebar-socials { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; }
.sidebar-socials a { display: inline-flex; transition: transform .2s, opacity .2s; opacity: 0.85; }
.sidebar-socials a:hover { opacity: 1; transform: translateY(-2px); }
.sidebar-socials img { width: 26px; height: 26px; object-fit: contain; }
.sidebar-cta { margin-top: auto; text-align: center; }

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  height: 54px;
  background: #25D366;
  border-radius: 999px;
  display: flex; align-items: center;
  padding: 0 14px 0 14px;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 300;
  text-decoration: none;
  overflow: hidden;
  max-width: 54px;
  transition: max-width .4s cubic-bezier(.4,0,.2,1), box-shadow .25s, padding .4s;
  white-space: nowrap;
}
.wa-float svg { width: 26px; height: 26px; color: #fff; flex-shrink: 0; }
.wa-float-text {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  opacity: 0;
  transition: opacity .25s .1s;
}
.wa-float:hover {
  max-width: 220px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.wa-float:hover .wa-float-text { opacity: 1; }
@media (max-width: 767px) { .wa-float { display: none; } }

/* ── Nav dropdown ── */
.nav-item {
  position: relative;
  /* transparent padding bridges the gap so mouse can cross to dropdown */
  padding-bottom: 10px;
}
.nav-item > a { display: flex; align-items: center; gap: 5px; }
.nav-item > a .chevron { width: 10px; height: 10px; transition: transform .2s; }
.nav-item:hover > a .chevron { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%; /* sits right at bottom of nav-item (which includes 10px padding bridge) */
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(97,71,67,0.18);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(42,31,20,0.12);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--heading) !important;
  opacity: 1 !important;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: rgba(97,71,67,0.08); color: var(--russet) !important; }
.dropdown .drop-divider { height: 1px; background: rgba(97,71,67,0.15); margin: 4px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: "Inter";
  font-weight: 500;
  border: 1px solid var(--dark-1);
  color: var(--dark-1);
  cursor: pointer;
  background: transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--dark-1); border-color: var(--dark-1); color: #fff; }
.btn.filled { background: var(--dark-1); border-color: var(--dark-1); color: #fff; }
.btn.filled:hover { background: var(--dark-2); border-color: var(--dark-2); color: #fff; }
.btn.light { border-color: var(--mist); color: var(--mist); }
.btn.light:hover { background: var(--mist); color: var(--bg); }
.btn.full { width: 100%; padding: 18px 26px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  clip-path: inset(0);
  transition: opacity 2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.0);
  animation: heroPan 18s ease-out forwards;
}
@keyframes heroPan {
  from { transform: scale(1.04); }
  to { transform: scale(1.0); }
}
.hero-slide-controls {
  position: absolute;
  top: 130px;
  right: 56px;
  left: auto;
  transform: none;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-slide-controls button {
  width: 36px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .3s, height .3s;
}
.hero-slide-controls button.active {
  background: var(--dark-1);
  height: 3px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(28,22,14,0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .25s;
}
.hero-arrow:hover { background: var(--dark-1); border-color: var(--dark-1); color: #fff; }
.hero-arrow.prev { left: 32px; }
.hero-arrow.next { right: 32px; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,22,14,0.32) 0%, rgba(28,22,14,0.05) 30%, rgba(28,22,14,0.15) 55%, rgba(28,22,14,0.7) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  text-align: left;
  color: #fff;
  padding: 0 56px 28px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.7);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  opacity: 0.7;
}
.hero-eyebrow::after { display: none; }
.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  max-width: 640px;
  text-wrap: balance;
  text-shadow: 0 4px 40px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.5);
}
.hero-title em {
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal; font-weight: 600;
  font-weight: 400;
  color: #e8916a;
}
.hero-sub { display: none; }

/* Booking bar — slim bottom-edge strip */
.booking-bar {
  background: rgba(20, 16, 10, 0.6);
  border: 1px solid rgba(97,71,67,0.28);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 4px;
  margin-left: -14px;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  max-width: 880px;
  flex-wrap: nowrap;
}
.booking-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 8px 14px;
  border-right: 1px solid rgba(97,71,67,0.22);
  flex: 0 0 auto;
}
.booking-field:last-of-type { border-right: none; }
.booking-field label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--russet);
  margin-bottom: 4px;
  font-weight: 500;
}
.booking-field input, .booking-field select {
  background: transparent;
  border: 0;
  color: #fff;
  font-family: "Inter";
  font-size: 13px;
  padding: 0;
  width: 100%;
  cursor: pointer;
  outline: none;
  appearance: none;
  color-scheme: dark;
}
.booking-field input::-webkit-calendar-picker-indicator { filter: invert(0.7) sepia(1) saturate(2) hue-rotate(10deg); cursor: pointer; }
.booking-bar .btn { padding: 12px 20px; border-radius: 999px; font-size: 11px; flex-shrink: 0; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--russet);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  animation: floaty 2.4s ease-in-out infinite;
}
.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--russet), transparent);
}
@keyframes floaty {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============ Sections shared ============ */
section { position: relative; }
/* Bootstrap handles .container — do not override it here */
/* Bootstrap .container — cap width for consistent side margins */
.container { max-width: 1200px; }
.section { /* padding comes from Bootstrap py-* on the element */ }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--russet);
  font-weight: 500;
  margin-bottom: 22px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--dark-1);
}
.section-title {
  color: var(--heading);
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(21px, 2vw, 32px);
  line-height: 1.12;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-title em {
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal; font-weight: 600;
  font-weight: 400;
  color: var(--russet);
}
.lead {
  font-size: 15px;
  line-height: 1.53;
  color: var(--heading);
  max-width: 56ch;
}
.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}
.gold-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--russet);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(97,71,67,0.5);
  transition: gap .25s ease, border-color .25s;
  margin-top: 32px;
}
.gold-link:hover { gap: 22px; border-color: var(--dark-1); }


/* ============ WELCOME ============ */
.welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.welcome-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.welcome-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.welcome-img-wrap::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 90px; height: 90px;
  border-top: 1px solid var(--dark-1);
  border-left: 1px solid var(--dark-1);
  z-index: 2;
}
.welcome-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 90px; height: 90px;
  border-bottom: 1px solid var(--dark-1);
  border-right: 1px solid var(--dark-1);
  z-index: 2;
}
.welcome-meta {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(97,71,67,0.2);
}
.welcome-meta div { display: flex; flex-direction: column; }
.welcome-meta .num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--russet);
  line-height: 1;
  margin-bottom: 6px;
}
.welcome-meta .lbl {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(42,31,20,0.50);
}
.welcome-text {
  background: transparent;
  padding: 0;
  color: var(--ink);
}
.welcome-headline { color: var(--ink) !important; }
.welcome-headline em { color: var(--russet) !important; font-style: normal; font-weight: 600; }
.welcome-body { color: rgba(42,31,20,0.72) !important; }
.welcome-meta .num { color: var(--russet) !important; }
.welcome-meta .lbl { color: rgba(42,31,20,0.55) !important; opacity: 1; }

/* ============ ABOUT — WELCOME BLOCK (Ol Tukai style) ============ */
.about-welcome {
  background: var(--dark-1);
  padding: 100px 24px;
  text-align: center;
}
.about-welcome-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-welcome-heading {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 28px;
}
.about-welcome-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 18px;
}
.about-welcome-text p:last-child { margin-bottom: 0; }
/* ── White label variant (burnt-orange backgrounds) ── */
.welcome-label-white { color: rgba(255,255,255,0.65); }
.welcome-label-white::before { background: rgba(255,255,255,0.45); width: 40px; }
.welcome-label-white::after  { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,0.45); }

/* ── White button variants ── */
.btn-white-fill   { background: #fff !important; color: var(--dark-1) !important; border-color: #fff !important; font-weight: 600; }
.btn-white-fill:hover   { background: rgba(255,255,255,0.88) !important; border-color: rgba(255,255,255,0.88) !important; }
.btn-white-outline { background: transparent !important; color: #fff !important; border-color: rgba(255,255,255,0.65) !important; }
.btn-white-outline:hover { background: rgba(255,255,255,0.1) !important; border-color: #fff !important; color: #fff !important; }

/* ============ ABOUT — FULL-WIDTH IMAGE ============ */
.about-fullimg {
  width: 100%;
  aspect-ratio: 3600 / 2338;
  overflow: hidden;
}
.about-fullimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============ SECTION — FULL-WIDTH IMAGE ============ */
.section-fullimg {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.section-fullimg--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section-fullimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============ ABOUT — STORY + PULL QUOTE ============ */
.about-story {
  background: var(--bg-2);
  padding: 100px 24px;
}
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr auto 1fr;
  gap: 56px;
  align-items: center;
}
.about-story-heading {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.18;
  color: var(--heading);
  margin: 0 0 22px;
}
.about-story-left p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(42,31,20,0.72);
  margin: 0 0 16px;
}
.about-story-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(97,71,67,0.2);
}
.about-pullquote {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  color: var(--heading);
  margin: 0 0 22px;
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--dark-1);
}
.about-pullquote-attr {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--russet);
  margin: 0 0 0 30px;
}
@media (max-width: 900px) {
  /* ── Topbar: hide location + email on tablet to keep one row ── */
  .topbar-inner { padding: 7px 24px; gap: 14px; }
  .topbar-left > span:first-child { display: none; }
  .topbar-left > span:nth-child(2) { display: none; }

  /* ── Switch to mobile-style nav bar (logo left / hamburger right) ── */
  .nav-inner { display: none !important; }
  .nav, .nav.scrolled { top: 40px; }
  .nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
  }
  .nav.scrolled .nav-mobile {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .nav.scrolled .nav-mobile .mobile-nav-toggle span { background: var(--dark-1); }
  .nav.scrolled .nav-mobile .mobile-nav-toggle { border-color: rgba(97,71,67,0.5); background: #fff; }
  .mobile-nav-toggle { display: grid; }

  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-divider { width: 100%; height: 1px; }

  /* ── Hero — tablet ── */
  .hero-content { padding: 0 24px 22px; }
  .hero-title { max-width: 100%; font-size: clamp(26px, 5vw, 36px); margin-bottom: 20px; }
  .hero-slide-controls { top: auto; bottom: 200px; right: 24px; }
  .hero-arrow { width: 44px; height: 44px; }
  .hero-arrow.prev { left: 16px; }
  .hero-arrow.next { right: 16px; }
  .booking-bar {
    flex-wrap: wrap;
    border-radius: 14px;
    margin-left: 0;
    gap: 0;
  }
  .booking-field {
    flex: 1 1 50%;
    padding: 6px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(97,71,67,0.22);
  }
  .booking-bar .btn { width: 100%; margin-top: 4px; }

  /* ── Section layout — tablet: collapse two-column grids to one ── */
  .about-welcome { padding: 70px 24px; }
  .about-story { padding: 70px 24px; }
  .room-content { grid-template-columns: 1fr; gap: 36px; }
  .room-thumbs { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .img-wrap { order: -1; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  /* ── Topbar: hidden on mobile (contact info lives in the mobile nav drawer) ── */
  .topbar { display: none; }
  .nav, .nav.scrolled { top: 0; }
  .nav-mobile { padding: 12px 20px; }

  .hero-eyebrow { font-size: 11px; letter-spacing: 0.32em; margin-bottom: 10px; }
  .hero-title { font-size: clamp(22px, 6vw, 34px); margin-bottom: 16px; }

  /* Booking bar — two fields per row */
  .booking-field { flex: 1 1 50%; padding: 6px 12px; }
  .booking-field label { font-size: 9px; letter-spacing: 0.22em; }
  .booking-field input, .booking-field select { font-size: 12px; }
  .booking-bar .btn { flex: 1 1 100%; padding: 10px 16px; font-size: 10px; margin-top: 4px; }

  /* ── Section layout — mobile: single column everywhere ── */
  .about-welcome { padding: 56px 20px; }
  .about-story { padding: 56px 20px; }
  .pillars { grid-template-columns: 1fr; gap: 22px; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic .m.tall { aspect-ratio: 4/3; }
  .room-thumbs { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }

  /* Non-hero pages — nav is fixed at top:0, push first element down */
  .exp-breadcrumb-bar { margin-top: 64px; }

  /* Experience detail mobile */
  .exp-split-img { min-height: 280px; }
  .exp-split-content { padding: 36px 24px 40px; }
  .exp-serena-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .exp-img-arrow.prev { left: 12px; }
  .exp-img-arrow.next { right: 12px; }
  .exp-features-section { padding: 40px 0; }
  .exp-features-grid { grid-template-columns: 1fr; gap: 14px; }
  .exp-plan-stats { grid-template-columns: 1fr 1fr; gap: 2px; }
  .exp-plan-stat { padding: 22px 18px; }
  .exp-plan-stat .num { font-size: 1.8rem; }
  .exp-quote-strip { padding: 40px 0; }
  .exp-others-section { padding: 40px 0; }
  .exp-pagination { padding: 24px 20px; grid-template-columns: 1fr; gap: 14px; text-align: center; }

  /* Location / Find Us section */
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-stats { margin: 28px 0; padding: 24px 0; gap: 20px; }
  .location-img { padding: 12px; }
}

/* ============ ROOM LISTING CARDS ============ */
.room-card {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(97,71,67,0.14);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}
.room-card:hover { box-shadow: 0 8px 28px rgba(28,22,14,0.14); transform: translateY(-3px); }
.room-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-hover {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,3,1,0) 30%, rgba(5,3,1,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.room-card:hover .room-card-hover { opacity: 1; }
.room-card-hover-desc {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 10px;
}
.room-card-hover-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.room-card-body {
  padding: 16px 20px 18px;
  border-top: 1px solid rgba(97,71,67,0.1);
}
.room-card-meta {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--russet);
  opacity: 0.65;
  margin-bottom: 6px;
}
.room-card-name {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.room-card-price { display: flex; align-items: baseline; gap: 5px; }
.rcp-from { font-size: 11px; color: var(--russet); opacity: 0.7; }
.rcp-amount {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.rcp-per { font-size: 11px; color: var(--russet); opacity: 0.7; }

/* ============ ROOMS (Homepage) ============ */
.rooms { background: var(--bg-2); }
.rooms-head { text-align: center; max-width: 720px; margin: 0 auto; }
.rooms-head .section-label { justify-content: center; }
.rooms-head .section-label::before { content: none; }
.rooms-head .section-label::after { content: ''; width: 32px; height: 1px; background: var(--dark-1); }
.rooms-head .section-label { display: inline-flex; }
.rooms-head .section-label::before { content: ''; width: 32px; height: 1px; background: var(--dark-1); display: inline-block; }

.tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  border-bottom: 1px solid #ede8e0;
  /* margin-bottom comes from Bootstrap mb-4 on the wrapper */
}
.tab {
  padding: 16px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--russet);
  opacity: 0.5;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s, opacity .2s, border-color .2s;
}
.tab:hover { opacity: 0.85; color: var(--dark-1); }
.tab.active { opacity: 1; color: var(--dark-1); border-bottom-color: var(--dark-1); }

.room-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.room-main-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.room-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.room-main-img:hover img { transform: scale(1.04); }
.room-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.room-thumbs > div { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.room-thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, opacity .3s; opacity: 0.78; }
.room-thumbs > div:hover img { opacity: 1; transform: scale(1.06); }

.room-info h3 {
  color: var(--heading);
  font-family: "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 18px;
  color: var(--ink);
}
.room-info .subtitle {
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal; font-weight: 600;
  color: var(--russet);
  font-size: 18px;
  margin: 0 0 24px;
}
.room-info p { color: rgba(42,31,20,0.72); font-size: 15.5px; line-height: 1.75; }
.room-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(42,31,20,0.68);
  line-height: 1.9;
}
.room-features li {
  display: inline;
}
.room-features li:not(:last-child)::after {
  content: '·';
  margin: 0 10px;
  color: var(--russet);
}
.room-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 36px 0 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(97,71,67,0.2);
}
.room-price .from { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(42,31,20,0.50); }
.room-price .amount {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 34px;
  color: var(--russet);
  font-weight: 300;
  line-height: 1;
}
.room-price .per { font-size: 13px; color: rgba(42,31,20,0.58); }
.room-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .55s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ============ EXPERIENCES ============ */
.experiences-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.experiences-head .head-text { max-width: 720px; }

/* Homepage experiences sneak-peek section */
.home-exp-section { background: #fff; padding: 0; }

/* ── Experience tab bar ── */
.hexp-tabs-wrap { border-bottom: 1px solid #ede8e0; background: #fff; position: sticky; top: 80px; z-index: 10; }
.hexp-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
.hexp-tabs::-webkit-scrollbar { display: none; }
.hexp-tab {
  background: none; border: none; cursor: pointer;
  padding: 18px 22px;
  font-family: "Inter", sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  color: var(--russet); opacity: 0.5; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, opacity .2s, border-color .2s; flex-shrink: 0;
}
.hexp-tab:hover { opacity: 0.85; color: var(--dark-1); }
.hexp-tab.active { opacity: 1; color: var(--dark-1); border-bottom-color: var(--dark-1); }

/* ── Experience panels ── */
.hexp-panel { display: none; }
.hexp-panel.active { display: block; padding-top: 32px; padding-bottom: 48px; }

/* ── Detail column ── */
.hexp-detail {
  padding: 52px 44px 52px 0;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.hexp-cat { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; font-family: "Inter", sans-serif; color: var(--dark-1); }
.hexp-name { font-family: "Playfair Display", serif; font-size: clamp(1.6rem,2.2vw,2.2rem); font-weight: 400; color: var(--heading); margin: 0; line-height: 1.2; }
.hexp-desc { font-size: 14.5px; line-height: 1.75; color: rgba(42,31,20,0.68); margin: 0; max-width: 38ch; }
.hexp-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hexp-actions .btn { font-size: 11px; padding: 11px 22px; }
.hexp-price-tag { display: inline-flex; align-items: baseline; gap: 8px; background: var(--dark-1); padding: 10px 18px; margin-top: 18px; border-radius: 4px; }
.hexp-price-amount { font-family: "Playfair Display", serif; font-size: 1.45rem; font-weight: 400; color: #fff; line-height: 1; }
.hexp-price-meta { font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.65); text-transform: uppercase; }

/* ── Photo grid ── */
.hexp-photos { padding: 0 0 0 24px; display: flex; align-items: center; }
.hexp-photo-single { position: relative; width: 100%; height: 460px; border-radius: 12px; overflow: hidden; }
.hexp-photo-single img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.hexp-photo-single:hover img { transform: scale(1.04); }
.hexp-enquire-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--dark-1); color: #fff;
  font-family: "Inter", sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 3px; text-decoration: none;
  transition: background .2s;
}
.hexp-enquire-badge:hover { background: var(--dark-2); color: #fff; }

@media (max-width: 991px) {
  .hexp-detail { padding: 36px 20px; }
  .hexp-photos { padding: 0 0 24px; }
  .hexp-photo-single { height: 280px; }
  .hexp-tab { padding: 14px 16px; font-size: 11px; }
}
.exp-controls { display: flex; gap: 10px; }
.exp-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(97,71,67,0.45);
  background: transparent;
  color: var(--russet);
  cursor: pointer;
  transition: all .25s;
  display: inline-flex; align-items: center; justify-content: center;
}
.exp-btn:hover { background: var(--dark-1); color: var(--bg); }
.exp-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 40px 40px;
  margin: 0 -40px;
  scrollbar-width: none;
}
.exp-scroller::-webkit-scrollbar { display: none; }
/* Homepage horizontal scroller cards — scoped so they don't bleed into experiences.php image cards */
.exp-scroller .exp-card {
  flex: 0 0 380px;
  background: #fff;
  border: 1px solid rgba(97,71,67,0.2);
  padding: 48px 36px 40px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: transform .5s ease, background .3s;
  cursor: pointer;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.exp-scroller .exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dark-1);
  transform-origin: left;
  transition: transform .5s ease;
}
.exp-scroller .exp-card:hover { transform: translateY(-6px); background: var(--bg-2); }
.exp-scroller .exp-card .num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  color: var(--russet);
  letter-spacing: 0.3em;
  margin-bottom: auto;
}
.exp-scroller .exp-card h4 {
  color: var(--heading);
  font-family: "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  margin: 28px 0 14px;
  line-height: 1.1;
}
.exp-scroller .exp-card p {
  color: rgba(42,31,20,0.62);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.exp-scroller .exp-card .arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dark-1);
  color: var(--russet);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.exp-scroller .exp-card:hover .arrow { background: var(--dark-1); color: var(--bg); }
.exp-icon {
  width: 56px; height: 56px;
  color: var(--russet);
  margin-bottom: 20px;
  margin-top: 12px;
}

/* ============ VIDEO SECTION ============ */
.video-section {
  background: none;
  padding: 0;
  margin: 0;
  line-height: 0;
}

/* ── click-to-play cover ── */
.video-cover {
  position: relative;
  width: 100%;
  height: clamp(480px, 60vh, 640px);
  overflow: hidden;
  cursor: pointer;
  background: url('../images/experiences/campfire-big.webp') center 15% / cover no-repeat;
  display: block;
}
.video-cover--amboseli {
  background: url('../images/experiences/amboseli-game-drive.jpeg') center / cover no-repeat;
}
.video-cover__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,22,14,0.88) 0%, rgba(28,22,14,0.35) 55%, rgba(28,22,14,0.18) 100%);
  transition: background 0.35s ease;
}
.video-cover:hover .video-cover__scrim {
  background: linear-gradient(to top, rgba(28,22,14,0.92) 0%, rgba(28,22,14,0.50) 55%, rgba(28,22,14,0.28) 100%);
}
.video-cover__body {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.video-cover__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dark-1);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.video-cover__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 14px;
}
.video-cover__sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(244,239,230,0.80);
  max-width: 480px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 40px;
  padding: 10px 22px 10px 14px;
  transition: border-color 0.25s, background 0.25s;
}
.video-play-btn svg { width: 42px; height: 42px; flex-shrink: 0; }
.video-play-btn__text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.video-cover:hover .video-play-btn {
  background: rgba(205,97,0,0.25);
  border-color: #cd6100;
}

/* modal */
.video-modal .modal-content { border-radius: 4px; overflow: hidden; }
.video-modal .modal-header { background: #000; padding: 10px 14px; }

@media (max-width: 767px) {
  .video-cover__body { padding: 24px 20px; }
  .video-cover__title { font-size: 1.9rem; }
  .video-cover__sub { font-size: 0.875rem; }
  .video-play-btn { padding: 8px 16px 8px 10px; }
  .video-play-btn svg { width: 34px; height: 34px; }
}

/* ============ AMENITIES ============ */
.amenities {
  background: var(--dark-1);
  color: var(--mist);
}
.amenities-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  border-left: 1px solid rgba(201,169,110,0.15);
}
.amenity:first-child { border-left: 0; }
.amenity .ic {
  width: 40px; height: 40px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.9;
}
.amenity .lbl { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(201,169,110,0.7); margin-bottom: 5px; }
.amenity .val { font-family: "Inter", system-ui, sans-serif; font-size: 18px; color: #fff; font-weight: 400; line-height: 1.25; }

/* ============ GALLERY ============ */
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.masonry {
  columns: 3;
  column-gap: 18px;
}
.masonry .tile {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.masonry .tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}
.masonry .tile:hover img { transform: scale(1.06); }
.masonry .tile .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,22,14,0) 40%, rgba(28,22,14,0.82) 100%);
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .4s;
}
.masonry .tile:hover .overlay { opacity: 1; }
.masonry .tile .cap { font-family: "Inter", system-ui, sans-serif; font-style: normal; font-weight: 600; font-size: 18px; color: var(--russet); }
.masonry .tile .plus {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(28,22,14,0.55);
  border: 1px solid var(--dark-1);
  color: var(--russet);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 300;
}
.masonry .tile.hidden { display: none; }

/* ============ EXPERIENCES PAGE ============ */
/* ─ Card grid (top of page) ─ */
/* Suppress acacia pattern on the card grid wrapper */
.exp-cards-section { background: #fff; padding: 16px 0 64px; }
.exp-cards-section::before { display: none !important; }

/* Bootstrap row/col handles the grid — .exp-card fills its column */
.exp-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  background: var(--dark-1);
  border-radius: 10px;
}
.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.exp-card:hover img { transform: scale(1.04); }

/* "Enquire" badge — top right */
.exp-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--dark-1);
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 3;
}

/* Price pill — always visible at bottom-left, slides away with overlay on hover */
.room-price-pill {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--dark-1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 16px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
  transition: opacity .3s ease;
}
.room-price-pill span { font-family: "Inter", system-ui, sans-serif; font-size: 10px; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); }
.exp-card:hover .room-price-pill { opacity: 0; }

/* Bottom scrim at rest — title always readable */
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,3,1,0.62) 0%, rgba(5,3,1,0.15) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.45s ease;
  z-index: 1;
}
/* On hover — dark only at bottom, image breathes above */
.exp-card:hover .exp-card-overlay {
  background: linear-gradient(to top, rgba(5,3,1,0.86) 0%, rgba(5,3,1,0.48) 50%, rgba(5,3,1,0.12) 100%);
}

.exp-card-text {
  padding: 24px 24px 62px;
}

.exp-card-sub {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin: 0 0 7px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
/* Alternate the meta line color: even cards get gold accent */
.col-lg-4:nth-child(even) .exp-card-sub,
.col-md-6:nth-child(even) .exp-card-sub {
  color: #E8C880;
  opacity: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}
.exp-card-title {
  font-family: "Playfair Display", serif;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
}
.exp-card-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s, margin 0.3s;
  opacity: 0;
  margin: 0;
}
.exp-card:hover .exp-card-desc { max-height: 120px; opacity: 1; margin-top: 10px; }

.exp-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease 0.08s, opacity 0.35s 0.08s, margin 0.3s;
  margin: 0;
}
.exp-card:hover .exp-card-readmore { max-height: 36px; opacity: 1; margin-top: 12px; }

/* ─ Experience detail page — Serena style ─ */

/* Breadcrumb bar */
.exp-breadcrumb-bar { background: #fff; border-bottom: 1px solid #ede8e0; padding: 12px 0; margin-top: 110px; }
.exp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(42,31,20,0.5); }
.exp-breadcrumb a { color: rgba(42,31,20,0.55); text-decoration: none; }
.exp-breadcrumb a:hover { color: var(--dark-1); }
.exp-breadcrumb span:last-child { color: var(--dark-1); font-weight: 500; }

/* Hero split — image 7 / content 5 */
.exp-hero-split { background: #fff; }
.exp-split-img { width: 100%; height: 100%; min-height: 520px; overflow: hidden; }
.exp-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-split-content { padding: 56px 52px 56px 48px; }

.exp-serena-pill {
  display: inline-block;
  background: var(--dark-1); color: #fff;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
  padding: 6px 18px; border-radius: 999px; margin-bottom: 22px;
}
.exp-serena-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400; color: var(--heading);
  margin: 0; line-height: 1.15;
}
.exp-serena-desc {
  font-size: 15px; line-height: 1.78; color: rgba(42,31,20,0.65); margin: 0 0 10px;
}
.exp-serena-body { font-size: 14px; line-height: 1.75; color: rgba(42,31,20,0.6); margin: 16px 0 0; }
.exp-read-more {
  background: none; border: none; cursor: pointer;
  font-size: 12px; letter-spacing: 0.1em; color: var(--dark-1);
  font-family: "Inter", sans-serif; font-weight: 500;
  text-transform: uppercase; padding: 4px 0; margin-bottom: 28px; display: block;
}
.exp-serena-cta { margin-top: 8px; }

/* ── Enquiry modal ── */
.exp-enquire-modal { border: none; border-radius: 10px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.22); }
.exp-enquire-header { background: #1C160E; padding: 22px 26px; border-bottom: none; }
.exp-enquire-header .modal-title { color: #fff; font-family: "Playfair Display", serif; font-size: 1.25rem; font-weight: 400; letter-spacing: 0.01em; }
.exp-enquire-body { padding: 26px 26px 22px; background: #faf8f4; }
.exp-enquire-intro { font-family: "Inter", sans-serif; font-size: .88rem; color: #6a5040; margin-bottom: 22px; line-height: 1.65; }
.exp-enquire-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Override global label style inside modal — less extreme tracking */
.exp-enquire-body .field label { font-size: 10.5px; letter-spacing: 0.14em; color: #8c6a54; font-weight: 600; }
.exp-enquire-body .field label small { font-size: 9.5px; letter-spacing: 0.06em; font-weight: 400; opacity: .75; text-transform: none; }
.exp-enquire-body .field label span { color: var(--dark-1); }
.exp-enquire-body .field input,
.exp-enquire-body .field select,
.exp-enquire-body .field textarea { background: #fff; border-color: rgba(97,71,67,0.18); font-size: 14px; border-radius: 4px; }
.exp-enquire-body .field textarea { min-height: 88px; resize: vertical; }
.exp-enquire-error { font-size: .85rem; color: #b94343; background: #fdf2f2; padding: 10px 14px; border-radius: 4px; margin-bottom: 12px; }
.exp-enquire-submit { margin-top: 8px; position: relative; }
.exp-enquire-submit .btn-spinner,
.btn-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: btnSpin .7s linear infinite; vertical-align: middle; margin-right: 7px; }
@keyframes btnSpin { to { transform: rotate(360deg); } }
@media (max-width: 540px) { .exp-enquire-row { grid-template-columns: 1fr; } }
.exp-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; margin-top: 4px; }
.exp-price-amount { font-family: "Playfair Display", serif; font-size: 1.6rem; font-weight: 400; color: var(--dark-1); line-height: 1; }
.exp-price-unit { font-family: "Inter", sans-serif; font-size: 13px; color: rgba(42,31,20,0.65); }
.exp-price-cap { font-family: "Inter", sans-serif; font-size: 12px; color: rgba(42,31,20,0.45); letter-spacing: 0.02em; }

/* What's included grid */
.exp-features-section { background: #fff; padding: 64px 0; }
.exp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  margin-top: 32px;
}
.exp-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; line-height: 1.6; color: rgba(42,31,20,0.72);
}
.exp-feature-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(205,97,0,0.1); color: var(--dark-1);
  display: flex; align-items: center; justify-content: center;
}

/* Image counter */
.exp-img-counter {
  position: absolute; bottom: 20px; right: 24px;
  font-family: "Inter", sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35); padding: 5px 12px; border-radius: 999px;
  z-index: 2;
}

/* Pull quote */
.exp-quote-strip { background: var(--dark-1); padding: 56px 0; }
.exp-quote { text-align: center; max-width: 680px; margin: 0 auto; border: none; padding: 0; }
.exp-quote p { font-family: "Playfair Display", serif; font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 400; font-style: italic; color: #fff; line-height: 1.55; margin: 0 0 16px; }
.exp-quote cite { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-style: normal; font-family: "Inter", sans-serif; }

/* Plan section */
.exp-plan-section { background: #fff; padding: 72px 0; }
.exp-plan-image { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.exp-plan-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-plan-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.exp-plan-stat {
  background: #f9f6f2; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.exp-plan-stat .num { font-family: "Playfair Display", serif; font-size: 2.4rem; font-weight: 400; color: var(--dark-1); line-height: 1; }
.exp-plan-stat .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(42,31,20,0.55); font-family: "Inter", sans-serif; font-weight: 500; }

/* Other experiences */
.exp-others-section { background: #f9f6f2; padding: 64px 0; }

/* Prev / Back / Next */
.exp-pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  border-top: 1px solid rgba(97,71,67,0.18);
  max-width: 1360px;
  margin: 0 auto;
}
.exp-pag-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--heading);
  opacity: 0.75; transition: opacity .2s, color .2s;
}
.exp-pag-link:hover { opacity: 1; color: var(--dark-1); }
.exp-pag-back {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--russet); font-weight: 500; white-space: nowrap;
}

@media (max-width: 767px) {
  .exp-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .exp-pagination { grid-template-columns: 1fr; text-align: center; gap: 16px; padding: 24px 20px; }
}

/* ─ Legacy exp-section / two-col ─ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ============ REVIEWS (Google) ============ */
.reviews-section { background: var(--bg-2); }
.reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.reviews-summary-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.g-rating-num { font-size: 22px; font-weight: 600; color: var(--heading); line-height: 1; }
.g-stars { color: #FBBC05; font-size: 15px; letter-spacing: 0.03em; }
.g-count { font-size: 13px; color: var(--heading); opacity: 0.6; }
.g-logo { flex-shrink: 0; }

.reviews-nav { display: flex; gap: 10px; }
.rev-btn {
  background: transparent;
  border: 1px solid rgba(97,71,67,0.35);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--heading);
  transition: background .2s, border-color .2s;
}
.rev-btn:hover { background: rgba(97,71,67,0.1); border-color: var(--dark-1); }

.reviews-track-wrap { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.review-card {
  flex: 0 0 calc(25% - 15px);
  background: #fff;
  border: 1px solid rgba(97,71,67,0.18);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.rev-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rev-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 600; font-size: 15px;
  flex-shrink: 0;
  font-family: "Inter", system-ui, sans-serif;
  object-fit: cover;
}
.rev-meta { flex: 1; min-width: 0; }
.rev-name { font-weight: 600; font-size: 13px; color: var(--heading); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rev-date { font-size: 11px; color: var(--heading); opacity: 0.5; margin-top: 2px; }
.rev-g { flex-shrink: 0; margin-left: auto; }
.rev-stars { color: #FBBC05; font-size: 14px; letter-spacing: 0.05em; margin-bottom: 12px; }
.rev-text {
  font-size: 13.5px;
  line-height: 1.62;
  color: var(--heading);
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-footer { margin-top: 44px; text-align: center; }

/* ── Room-type guest reviews section ── */
.rt-reviews-section { background: var(--bg-2); padding: 80px 0; }
.rt-reviews-section .review-cards {
  display: flex; flex-direction: column; gap: 16px;
  max-height: 640px; overflow-y: auto; padding-right: 6px;
}
.rt-reviews-section .review-card { flex: none; width: 100%; }
.rev-nav { display: flex; gap: 10px; }
.rev-cat-badge { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,169,110,.4); border-radius: 20px; padding: 3px 10px; white-space: nowrap; }
.rev-title { font-size: 13px; font-style: italic; color: var(--russet); margin-bottom: 10px; }

.rt-reviews-empty {
  display: flex; align-items: center; justify-content: center;
  height: 100%; min-height: 200px;
  background: #fff; border: 1px solid rgba(97,71,67,0.18); border-radius: 8px;
  padding: 32px; text-align: center;
}
.rt-reviews-empty p { margin: 0; color: rgba(42,31,20,0.6); font-size: 14px; }

/* Leave a review form */
.rt-review-form-card { background: #fff; border: 1px solid rgba(97,71,67,0.18); border-radius: 8px; padding: 32px; }
.rt-review-form-title { font-family: "Playfair Display", serif; font-weight: 400; font-size: 1.7rem; color: var(--heading); margin: 6px 0 22px; }
.rt-review-success {
  font-size: .85rem; color: #2d6a4f; background: #eaf6ef;
  padding: 10px 14px; border-radius: 4px; margin-bottom: 12px;
}

/* Star rating input */
.star-rating-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.star-rating { display: inline-flex; flex-direction: row-reverse; gap: 2px; }
.star-rating input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-rating label {
  font-size: 40px; line-height: 1; color: rgba(97,71,67,0.22);
  cursor: pointer; transition: color .15s, transform .15s;
  padding: 4px 2px;
}
.star-rating input:checked ~ label,
.star-rating input:checked + label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--dark-1); }
.star-rating label:hover { transform: scale(1.12); }
.star-rating-value {
  font-family: "Inter", sans-serif; font-size: 13px; font-weight: 600;
  color: var(--russet); white-space: nowrap;
}

@media (max-width: 991px) {
  .rt-reviews-section .review-cards { max-height: none; }
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background:
    linear-gradient(rgba(28,22,14,0.92), rgba(28,22,14,0.92)),
    url('https://sungurasafaricamp.com/wp-content/uploads/2025/11/30A8483-scaled.jpg') center/cover no-repeat;
  text-align: center;
}
.test-wrap { max-width: 920px; margin: 0 auto; }
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 20px;
  padding: 8px 18px;
  border: 1px solid rgba(97,71,67,0.4);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--russet);
  font-weight: 500;
}
.reviews-badge .stars { letter-spacing: 0.1em; font-size: 13px; }
.quote-mark {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 140px;
  color: var(--russet);
  line-height: 0.5;
  margin: 0 0 -10px;
  opacity: 0.6;
}
.quote-slide { display: none; }
.quote-slide.active { display: block; animation: fadeIn .6s ease; }
.quote-text {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.4;
  color: var(--mist);
  margin: 0 0 40px;
  font-style: normal; font-weight: 600;
  text-wrap: balance;
}
.quote-attr {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--russet);
}
.dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}
.dot {
  width: 36px;
  height: 1px;
  background: rgba(97,71,67,0.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .3s;
}
.dot.active { background: var(--dark-1); height: 2px; }

/* ============ LOCATION ============ */
.location-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: stretch;
}
.location-img {
  position: relative;
  padding: 18px;
}
.location-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--dark-1);
  opacity: 0.55;
}
.location-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(0.25) saturate(1.2);
}
.location-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin: 44px 0;
  padding: 36px 0;
  border-top: 1px solid rgba(97,71,67,0.2);
  border-bottom: 1px solid rgba(97,71,67,0.2);
}
.location-stats .num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 38px;
  color: var(--russet);
  line-height: 1;
  font-weight: 300;
}
.location-stats .lbl {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(42,31,20,0.50);
  margin-top: 6px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(42,31,20,0.78);
  font-size: 14px;
}
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list svg { color: var(--russet); width: 16px; height: 16px; flex-shrink: 0; }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  padding: 130px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(205,97,0,0.55) 0%,
    rgba(30,18,6,0.82) 60%,
    rgba(10,6,2,0.92) 100%);
  z-index: 1;
}
.cta-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 32px; }
.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.06;
  margin: 0 0 20px;
  color: #ffffff;
}
.cta-content h2 em { font-family: inherit; font-style: italic; font-weight: 400; color: #ffffff; }
.cta-content p {
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal; font-weight: 400;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 44px;
  letter-spacing: 0.01em;
}
.cta-content .cta-quote { font-style: italic; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-content .section-label { color: rgba(255,255,255,0.7); }
.cta-content .section-label::before { background: rgba(255,255,255,0.4); }
/* Primary CTA: white button, burnt orange text */
.cta-buttons .btn.filled { background: #ffffff; border-color: #ffffff; color: var(--dark-1); }
.cta-buttons .btn.filled:hover { background: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.9); }
/* Secondary: white outline */
.cta-buttons .btn.light { border-color: rgba(255,255,255,0.5); color: #ffffff; background: transparent; }
.cta-buttons .btn.light:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; }

/* ============ FOOTER ============ */
/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer { border-top: 3px solid var(--gold); }

/* ── Eyebrow strip ── */
.footer-eyebrow {
  background: var(--dark-1);
  text-align: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-eyebrow-rule {
  display: inline-block; width: 44px; height: 1px;
  background: rgba(255,255,255,0.4);
  vertical-align: middle; margin: 0 16px;
}
.footer-eyebrow-text {
  font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); vertical-align: middle;
}

/* ── Main columns band ── */
.footer-inner {
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
  padding: 56px 0 60px;
}
#footer-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.footer-inner .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.4fr;
  gap: 52px;
}

/* Column headings */
.footer-col h3 {
  font-family: "Inter"; font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 22px; padding-bottom: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col li { display: flex; align-items: baseline; gap: 8px; }
.footer-col li::before {
  content: '›';
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
.footer-col li:hover::before { transform: translateX(3px); }
.footer-col li a, .footer-col li span {
  color: rgba(255,255,255,0.85); font-size: 13px;
  transition: color .2s; display: inline;
}
.footer-col li a:hover { color: #fff; }

/* Contact list overrides the arrow (has its own icons) */
.footer-contact-list li::before { display: none; }

/* Brand column */
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand-tagline {
  font-family: "Playfair Display", serif; font-style: italic;
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.8); max-width: 22ch; line-height: 1.7; margin: 0 0 20px;
}
.footer-brand-divider { width: 34px; height: 1px; background: rgba(255,255,255,0.3); margin: 0 0 20px; }

/* Contact list with icons */
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.85); font-size: 13px; }
.footer-contact-list li a { color: rgba(255,255,255,0.85); transition: color .2s; }
.footer-contact-list li a:hover { color: #fff; }
.fc-icon { flex-shrink: 0; margin-top: 1px; color: rgba(255,255,255,0.7); }
.fc-icon svg { width: 14px; height: 14px; display: block; }

/* Socials */
.footer-socials { display: flex; gap: 14px; align-items: center; }
.footer-socials a { display: inline-flex; opacity: 0.72; transition: opacity .2s, transform .2s; }
.footer-socials a:hover { opacity: 1; transform: translateY(-3px); }
.footer-social-img { width: 22px; height: 22px; object-fit: contain; display: block; }

/* ── Room photo grid — inside column 4 ── */
.footer-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.footer-photo-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden; display: block; position: relative; border-radius: 2px;
}
.footer-photo-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: filter .35s, transform .4s; display: block;
}
.footer-photo-tile:hover img { filter: brightness(0.3) saturate(0.5); transform: scale(1.06); }
.footer-photo-tile-name {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  padding: 8px;
  font-family: "Inter", sans-serif;
  font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
  text-align: center;
}
.footer-photo-tile:hover .footer-photo-tile-name { opacity: 1; }
.footer-photo-tile-name span { display: block; font-size: 9.5px; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: none; font-family: "Inter", serif; }

/* ── Copyright bar ── */
.footer-bottom-bar { background: var(--dark-1); border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: rgba(255,255,255,0.6); font-size: 11.5px; letter-spacing: 0.06em;
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .links { display: flex; gap: 22px; }

/* Footer responsive */
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner { padding: 40px 0 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ INNER PAGE HERO ============ */
/* ============ BOOKING BAR ============ */
.bbar {
  background: #fff;
  border-bottom: 1px solid rgba(97,71,67,0.18);
  box-shadow: 0 2px 20px rgba(42,31,20,0.07);
  position: relative;
  z-index: 10;
}
.bbar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1360px;
  margin: 0 auto;
  height: 72px;
}
.bbar-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  flex: 1;
  min-width: 0;
}
.bbar-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--russet);
  font-weight: 500;
  margin-bottom: 3px;
  white-space: nowrap;
}
.bbar-input-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--heading);
}
.bbar-input-wrap svg { flex-shrink: 0; opacity: 0.6; }
.bbar-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--heading);
  width: 100%;
  cursor: pointer;
}
.bbar-input::-webkit-calendar-picker-indicator { opacity: 0; width: 0; }
.bbar-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bbar-step {
  background: none;
  border: 1px solid rgba(97,71,67,0.4);
  color: var(--heading);
  width: 24px; height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: border-color .2s, color .2s;
}
.bbar-step:hover { border-color: var(--dark-1); color: var(--russet); }
.bbar-count {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  min-width: 18px;
  text-align: center;
}
.bbar-divider {
  width: 1px;
  background: rgba(97,71,67,0.18);
  margin: 12px 0;
  flex-shrink: 0;
}
.bbar-btn {
  background: var(--dark-1);
  color: #ffffff;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 36px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.bbar-btn:hover { background: var(--dark-2); color: #fff; }

@media (max-width: 767px) {
  .bbar-inner {
    flex-direction: column;
    height: auto;
    padding: 0;
  }
  .bbar-divider { display: none; }
  .bbar-field {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(97,71,67,0.1);
    flex: none;
  }
  .bbar-btn {
    padding: 16px;
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.22em;
  }
}

/* ============ EXPERIENCES INTRO ============ */
.exp-intro {
  text-align: center;
  padding: 40px 0 28px;
  max-width: 700px;
  margin: 0 auto;
}
.exp-intro-breadcrumb {
  font-size: 12px;
  color: var(--russet);
  opacity: 0.6;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.exp-intro-breadcrumb a { color: inherit; }
.exp-intro-breadcrumb .sep { margin: 0 6px; }
.exp-intro-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.1;
}
.exp-intro-sub {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 20px;
}
.exp-intro-body {
  font-size: 15px;
  line-height: 1.72;
  color: var(--russet);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ PAGE HERO ============ */
.page-hero {
  height: 46vh;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.page-hero .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  z-index: 0;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,3,1,0.65) 0%, rgba(5,3,1,0.80) 55%, rgba(5,3,1,0.96) 100%);
  z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; padding: 0 24px; max-width: 920px; padding-top: 80px; }
.breadcrumb {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
  background: rgba(205,97,0,0.55);
  border: 1px solid rgba(205,97,0,0.6);
  border-radius: 3px;
  padding: 6px 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 12px; opacity: 0.5; }
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.04;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.page-hero h1 em { font-family: "Inter", system-ui, sans-serif; font-style: normal; font-weight: 400; color: var(--dark-1); }
.page-hero .subline {
  font-family: "Inter", system-ui, sans-serif; font-style: normal; font-weight: 400;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin: 18px 0 0;
}
.gold-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}

/* ============ Common split ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.split .img-wrap.landscape { aspect-ratio: 4/3; }
.split .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.split .img-wrap:hover img { transform: scale(1.04); }

/* ── Amboseli: full-width OSM map ───────────────────────── */
.map-full { height: 480px; border-radius: 6px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.map-full #amboseliMap { height: 100%; width: 100%; }

/* ── Amboseli: best time to visit cards ─────────────────── */
.season-card { height: 100%; padding: 40px; border: 1px solid rgba(204,97,0,0.2); border-radius: 6px; }
.season-card .season-months {
  display: block; font-family: "Inter", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark-1); margin-bottom: 14px;
}
.season-card h3 {
  font-family: "Inter", sans-serif; font-size: 18px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px;
}
.season-card p { margin: 0; }

/* ── Amboseli: airstrip tabs ─────────────────────────────── */
.airstrip-panel .airstrip-meta {
  display: block; font-family: "Inter", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark-1); margin-bottom: 14px;
}
.airstrip-panel h3 {
  font-family: "Inter", sans-serif; font-size: 18px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px;
}
.airstrip-panel p { margin: 0; color: rgba(42,31,20,0.72); line-height: 1.75; }
.airstrip-img { border-radius: 6px; overflow: hidden; }
.airstrip-img img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ============ PILLARS ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--bg-2);
  padding: 50px 36px 40px;
  position: relative;
  transition: transform .4s ease, background .3s;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dark-1);
}
.pillar:hover { transform: translateY(-6px); background: #e8dfd0; }
.pillar .pill-num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--russet);
  margin-bottom: 20px;
}
.pillar h4 {
  font-family: "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.15;
}
.pillar p {
  color: rgba(42,31,20,0.72);
  font-size: 14.5px; line-height: 1.7;
  margin: 0;
}

/* ============ STATS BAR ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
  border-top: 1px solid rgba(97,71,67,0.2);
  border-bottom: 1px solid rgba(97,71,67,0.2);
}
.stat {
  text-align: center;
  border-left: 1px solid rgba(97,71,67,0.15);
  padding: 0 24px;
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--russet);
  line-height: 1;
  margin-bottom: 12px;
}
.stat .lbl {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(42,31,20,0.68);
}

/* ============ ROOM LISTING CARDS ============ */
.room-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid rgba(97,71,67,0.18);
}
.room-card.reverse { direction: rtl; }
.room-card.reverse > * { direction: ltr; }
.room-card-img { aspect-ratio: 4/3; overflow: hidden; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.room-card:hover .room-card-img img { transform: scale(1.03); }
.room-card-thumbs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 14px;
}
.room-card-thumbs > div { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; position: relative; outline: 0 solid transparent; outline-offset: -1px; transition: outline .3s; }
.room-card-thumbs img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity .3s, transform .6s; }
.room-card-thumbs > div:hover img { opacity: 1; transform: scale(1.06); }
.room-card-thumbs > div.active { outline: 1px solid var(--russet); }
.room-card-thumbs > div.active img { opacity: 1; }
.badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--russet);
  padding: 6px 14px;
  border: 1px solid rgba(97,71,67,0.5);
  border-radius: 999px;
  margin-bottom: 22px;
}
.room-card h3 {
  font-family: "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em; font-weight: 600;
  font-size: 44px; color: var(--ink);
  margin: 0 0 16px; line-height: 1.05;
}
.room-card .desc { color: rgba(42,31,20,0.78); font-size: 15.5px; line-height: 1.75; }
.ideal-line {
  margin: 22px 0 0;
  font-size: 13px; color: rgba(42,31,20,0.68);
}
.ideal-line strong { color: var(--russet); font-weight: 500; letter-spacing: 0.04em; }

/* ============ ROOM DETAIL ============ */
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 70px;
  align-items: start;
}
.room-gallery {
  display: flex; flex-direction: column; gap: 12px;
}
.room-gallery .main-img { aspect-ratio: 4/3; overflow: hidden; }
.room-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.room-gallery .thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.room-gallery .thumbs > div { aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.room-gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: opacity .3s, transform .6s; }
.room-gallery .thumbs > div:hover img { opacity: 1; transform: scale(1.06); }
.room-gallery .thumbs > div.active img { opacity: 1; outline: 1px solid var(--russet); outline-offset: -1px; }

.feat-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px;
}
.feat-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14.5px; color: rgba(42,31,20,0.78);
  line-height: 1.5;
}
.feat-list .ck {
  color: var(--russet);
  flex-shrink: 0;
  margin-top: 4px;
}
.special-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.special-list li {
  padding: 10px 0;
  color: rgba(42,31,20,0.78);
  border-bottom: 1px solid rgba(97,71,67,0.12);
  font-size: 15px;
}
.special-list li::before {
  content: '— '; color: var(--russet);
}
.booking-card {
  background: var(--bg-2);
  border: 1px solid rgba(97,71,67,0.35);
  padding: 36px;
  position: sticky;
  top: 120px;
}
.booking-card .price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(97,71,67,0.2);
}
.booking-card .price-row .amount {
  font-family: "Inter", system-ui, sans-serif; font-weight: 300;
  font-size: 50px; color: var(--russet); line-height: 1;
}
.booking-card .price-row .from { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(42,31,20,0.58); }
.booking-card .price-row .per { font-size: 13px; color: rgba(42,31,20,0.62); }
.field-stack { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--russet);
}
.field input, .field select, .field textarea {
  background: rgba(242,237,227,0.7);
  border: 1px solid rgba(97,71,67,0.22);
  color: var(--ink);
  padding: 12px 14px;
  font-family: "Inter"; font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  color-scheme: light;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--dark-1);
  box-shadow: 0 0 0 3px rgba(97,71,67,0.12);
}
.booking-card .contact-mini {
  font-size: 13px; color: rgba(42,31,20,0.72);
  line-height: 1.7;
  padding-top: 20px;
  border-top: 1px solid rgba(97,71,67,0.2);
  margin-top: 22px;
}
.booking-card .contact-mini a { color: var(--russet); }

.ideal-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 30px 0 0;
}
.ideal-row .pill {
  padding: 10px 22px;
  border: 1px solid rgba(97,71,67,0.45);
  border-radius: 999px;
  color: var(--russet);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.ideal-row .pill:hover { background: var(--dark-1); color: var(--bg); }

.other-rooms {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.other-room {
  background: var(--bg-2);
  padding: 26px;
  display: flex; gap: 20px; align-items: center;
  cursor: pointer;
  transition: background .3s;
  text-decoration: none;
}
.other-room:hover { background: #e8dfd0; }
.other-room img { width: 110px; height: 90px; object-fit: cover; flex-shrink: 0; }
.other-room h5 {
  font-family: "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em; font-weight: 600;
  font-size: 22px; color: var(--ink); margin: 0 0 6px;
}
.other-room .from-mini { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--russet); }
.other-room .arr { margin-left: auto; color: var(--russet); }

/* ============ GALLERY PAGE ============ */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  border: 1px solid rgba(97,71,67,0.3);
  padding: 4px;
  border-radius: 999px;
  margin: 0 auto 60px;
  width: fit-content;
}
.filter-tabs .ftab {
  display: inline-block;
  padding: 12px 28px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  background: transparent; border: 0;
  color: rgba(42,31,20,0.62);
  text-decoration: none;
  cursor: pointer; border-radius: 999px;
  font-family: "Inter"; font-weight: 500;
  transition: all .25s ease;
}
.filter-tabs .ftab.active,
.filter-tabs .ftab:hover { background: var(--dark-1); color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 8, 5, 0.96);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 60px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(97,71,67,0.5);
  color: var(--russet);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s;
}
.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--dark-1); color: #fff; }

/* Instagram strip */
.ig-strip {
  background: var(--dark-1);
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid rgba(97,71,67,0.12);
}
.ig-strip p {
  font-family: "Inter", system-ui, sans-serif; font-style: normal; font-weight: 600;
  font-size: 22px; color: var(--mist);
  margin: 0 0 14px;
}
.ig-handle {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--russet);
  font-size: 18px; letter-spacing: 0.04em;
  font-family: "Inter", system-ui, sans-serif; font-weight: 400;
}
.ig-handle svg { width: 24px; height: 24px; }

/* ============ CONTACT ============ */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--bg-2);
  padding: 44px 36px;
  text-align: left;
  border: 1px solid rgba(97,71,67,0.18);
  border-radius: 8px;
  transition: transform .35s ease, background .3s;
}
.contact-card:hover { transform: translateY(-6px); background: #e8dfd0; }
.contact-card .ic {
  width: 38px; height: 38px;
  color: var(--russet);
  margin-bottom: 20px;
}
.contact-card h4 {
  font-family: "Inter", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em; font-weight: 600;
  font-size: 28px; color: var(--ink); margin: 0 0 10px;
}
.contact-card p, .contact-card a {
  color: rgba(42,31,20,0.78);
  font-size: 14.5px; line-height: 1.7;
  margin: 4px 0;
  display: block;
}
.contact-card a:hover { color: var(--russet); opacity: 1; }

.contact-card.is-dark { background: var(--dark-1); border-color: var(--dark-1); }
.contact-card.is-dark:hover { background: var(--dark-1); }
.contact-card.is-dark .ic { color: #fff; }
.contact-card.is-dark h4 { color: #fff; }
.contact-card.is-dark p,
.contact-card.is-dark a { color: rgba(255,255,255,0.85); }
.contact-card.is-dark a:hover { color: #fff; opacity: 1; }

.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-success { display: flex; align-items: flex-start; gap: 14px; background: #f4f0e8; border-left: 3px solid var(--gold); padding: 20px 22px; border-radius: 0 6px 6px 0; }
.contact-success p { margin: 0; font-size: .98rem; color: var(--russet); line-height: 1.6; }
.contact-error { color: #b94343; font-size: .93rem; background: #fdf2f2; border-left: 3px solid #b94343; padding: 12px 16px; border-radius: 0 4px 4px 0; }
.form-socials { display: flex; gap: 12px; margin-top: 18px; }
.form-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(97,71,67,0.4);
  color: var(--russet);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.form-socials a:hover { background: var(--dark-1); color: #fff; }
.form-socials svg { width: 16px; height: 16px; }
.map-frame {
  border: 1px solid rgba(97,71,67,0.4);
  padding: 14px;
  background: var(--bg-2);
}
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.4) brightness(0.85); }
.map-frame-lg iframe { height: 520px; }
.map-meta {
  margin-top: 18px;
  text-align: center;
  font-family: "Inter", system-ui, sans-serif; font-style: normal; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 14px;
  color: rgba(42,31,20,0.68);
}

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid rgba(97,71,67,0.2);
}
.faq-item:last-child { border-bottom: 1px solid rgba(97,71,67,0.2); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 26px;
  padding: 28px 0;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq-q .toggle {
  color: var(--russet);
  font-size: 28px;
  font-weight: 300;
  transition: transform .3s ease;
  flex-shrink: 0;
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 0 28px;
}
.faq-a p { color: rgba(42,31,20,0.78); font-size: 16px; line-height: 1.75; margin: 0; max-width: 70ch; }

/* Google reviews strip */
.reviews-strip {
  background: var(--bg);
  padding: 100px 0;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { color: var(--russet); letter-spacing: 0.1em; font-size: 13px; }
.review-card .name {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 22px; color: var(--ink); font-weight: 400;
}
.review-card .text {
  color: rgba(42,31,20,0.78);
  font-family: "Inter", system-ui, sans-serif; font-style: normal; font-weight: 600;
  font-size: 15px; line-height: 1.65;
  margin: 0;
}

/* About — mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.mosaic .m {
  overflow: hidden;
  cursor: pointer;
  transition: outline .3s;
  outline: 0 solid transparent;
  outline-offset: -1px;
}
.mosaic .m img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.mosaic .m:hover img { transform: scale(1.06); }
.mosaic .m:hover { outline: 1px solid var(--russet); }
.mosaic .tall { grid-row: span 2; }

/* Light section background variant */
.section-light { background: #ffffff; color: var(--ink); }
.section-light .lead, .section-light p { color: var(--ink); opacity: 0.78; }
.section-light .section-title {
  color: var(--heading); color: var(--ink); }
.section-light .section-title em { color: var(--dark-1); }
.section-light .section-label { color: var(--clay); }
.section-light .section-label::before { background: var(--clay); }
.section-light .gold-link { color: var(--clay); border-bottom-color: rgba(139,94,60,0.5); }

/* ── About page: room count badges ───────────────────────── */
.about-room-counts { display: flex; gap: 28px; }
.about-room-counts > div { text-align: left; }
.arc-num { display: block; font-family: "Playfair Display", serif; font-size: 1.9rem; font-weight: 400; color: var(--dark-1); line-height: 1; }
.arc-lbl { display: block; font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(42,31,20,0.55); margin-top: 6px; }

/* ── About page: story image warm overlay ───────────────── */
.about-story-img-wrap { position: relative; border-radius: 12px; overflow: hidden; }
.about-story-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-story-overlay {
  position: absolute; inset: 0;
  background: rgba(200, 130, 20, 0.28);
  pointer-events: none;
}

/* ── About page: why sungura list ────────────────────────── */
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; }
.why-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(205,97,0,0.1); color: var(--dark-1);
  display: flex; align-items: center; justify-content: center;
}
.why-item h4 {
  font-family: "Inter", sans-serif; font-size: 15px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--russet);
  margin: 0 0 6px;
}
.why-item p {
  font-size: 15px; line-height: 1.6; color: rgba(42,31,20,0.7); margin: 0;
}

/* ── About page: stats strip ─────────────────────────────── */
.about-stats-strip { background: var(--dark-1); padding: 52px 0; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.about-stat { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.18); }
.about-stat:last-child { border-right: none; }
.about-stat-num { display: block; font-family: "Playfair Display", serif; font-size: 2.4rem; font-weight: 400; color: #fff; line-height: 1; }
.about-stat-lbl { display: block; font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }
@media (max-width: 767px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 24px; }
  .about-stat:nth-child(2), .about-stat:last-child { border-bottom: none; }
}

/* ── About page: OSM map ─────────────────────────────────── */
.about-map-wrap { border-radius: 6px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); position: relative; min-height: 480px; }
#aboutMap { height: 100%; min-height: 480px; width: 100%; }
.leaflet-popup-content-wrapper { border-radius: 4px; font-family: "Inter", sans-serif; font-size: 13px; }
.leaflet-popup-tip-container { display: none; }
.camp-label {
  background: var(--dark-1); color: #fff; border: none;
  font-family: "Inter", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px; box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.camp-label::before { display: none; }
.camp-route-label {
  background: #fff; color: var(--dark-1); border: 1px solid var(--dark-1);
  font-family: "Inter", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.03em; padding: 4px 8px; border-radius: 3px;
}
.camp-route-label::before { display: none; }

/* ============ BOOKING PAGE FORM ============ */
.booking-page { padding: 80px 0; }
.booking-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid rgba(97,71,67,0.3);
  padding: 60px;
}
.booking-form-wrap h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--ink);
  margin: 0 0 8px;
}
.booking-form-wrap .form-desc {
  color: rgba(42,31,20,0.68);
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal; font-weight: 600;
  font-size: 17px;
  margin: 0 0 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(97,71,67,0.2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-stack { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.alert {
  padding: 18px 22px;
  border-radius: 4px;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.alert-success { background: rgba(74,92,58,0.1); border: 1px solid rgba(74,92,58,0.35); color: #3f5a2a; }
.alert-error { background: rgba(139,94,60,0.1); border: 1px solid rgba(139,94,60,0.35); color: #7a4a26; }

.availability-status {
  display: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
}
.availability-status.is-visible { display: block; }
.availability-status.is-available { background: rgba(74,92,58,0.1); border: 1px solid rgba(74,92,58,0.35); color: #3f5a2a; }
.availability-status.is-unavailable { background: rgba(139,94,60,0.1); border: 1px solid rgba(139,94,60,0.35); color: #7a4a26; }
.availability-status.is-checking { background: rgba(97,71,67,0.06); border: 1px solid rgba(97,71,67,0.18); color: rgba(42,31,20,0.6); }

/* ============ BOOKING FORM — multi-step wizard ============ */
.booking-steps {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.booking-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-step-item:not(:last-child) {
  flex: 1;
}
.booking-step-item:not(:last-child)::after {
  content: '';
  display: inline-block;
  flex: 1;
  height: 1px;
  background: rgba(97,71,67,0.2);
  margin: 0 14px;
  min-width: 24px;
}
.booking-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(97,71,67,0.3);
  font-family: "Inter";
  font-size: 13px;
  font-weight: 600;
  color: var(--russet);
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.booking-step-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(42,31,20,0.45);
  white-space: nowrap;
  transition: color .2s;
}
.booking-step-item.is-active .booking-step-num,
.booking-step-item.is-done .booking-step-num {
  background: var(--dark-1);
  border-color: var(--dark-1);
  color: #fff;
}
.booking-step-item.is-active .booking-step-label,
.booking-step-item.is-done .booking-step-label {
  color: var(--ink);
}

.booking-step-panel { display: none; }
.booking-step-panel.is-active { display: block; }

.booking-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}
.booking-step-actions .btn { flex: 0 0 auto; min-width: 160px; }

.booking-disclaimer {
  font-size: 12px;
  color: rgba(42,31,20,0.5);
  margin-top: 18px;
  text-align: center;
}
.booking-disclaimer a { color: var(--dark-1); }

/* Season badge */
.season-badge {
  display: none;
  align-items: center;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.season-badge.is-visible { display: flex; }
.season-badge.is-peak      { background: rgba(201,169,110,0.18); border: 1px solid rgba(201,169,110,0.5); color: var(--gold-dark); }
.season-badge.is-christmas { background: rgba(139,94,60,0.1);    border: 1px solid rgba(139,94,60,0.35);  color: #7a4a26; }
.season-badge.is-normal    { background: rgba(74,92,58,0.1);     border: 1px solid rgba(74,92,58,0.35);   color: #3f5a2a; }

/* Review step */
.review-summary { margin-bottom: 28px; }
.review-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(97,71,67,0.12);
  font-size: 14px;
}
.review-row:last-child { border-bottom: none; }
.review-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--russet);
  flex-shrink: 0;
}
.review-value {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

@media (max-width: 640px) {
  .booking-steps { margin-bottom: 28px; }
  .booking-step-label { display: none; }
  .booking-step-item:not(:last-child)::after { margin: 0 8px; }
  .booking-step-actions { flex-wrap: wrap; }
  .booking-step-actions .btn { flex: 1 1 100%; min-width: 0; }
}

/* ============ ROOM SLIDESHOW (booking page) ============ */
.room-slider-wrap { margin-top: 80px; }
.room-slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: -8px 0 20px;
}
.room-slider-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(97,71,67,0.3);
  background: transparent;
  color: var(--russet);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.room-slider-nav button:hover { background: var(--dark-1); border-color: var(--dark-1); color: #fff; }
.room-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.room-slider-track::-webkit-scrollbar { display: none; }
.room-slider-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}
@media (max-width: 640px) {
  .room-slider-card { flex-basis: 240px; }
}

/* ============ FLATPICKR — Brand Calendar ============ */
.flatpickr-calendar {
  background: #fff;
  border: 1px solid rgba(97,71,67,0.35);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(42,31,20,0.14);
  font-family: "Inter", sans-serif;
  width: 280px;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowTop::after { border-bottom-color: rgba(97,71,67,0.35); }
.flatpickr-months {
  background: var(--heading);
  border-radius: 3px 3px 0 0;
  padding: 8px 0;
}
.flatpickr-months .flatpickr-month { color: #fff; fill: #fff; }
.flatpickr-current-month {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  padding-top: 4px;
}
.flatpickr-current-month .numInputWrapper span.arrowUp::after  { border-bottom-color: rgba(255,255,255,0.7); }
.flatpickr-current-month .numInputWrapper span.arrowDown::after { border-top-color: rgba(255,255,255,0.7); }
.flatpickr-current-month select.flatpickr-monthDropdown-months {
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month { fill: rgba(255,255,255,0.8); padding: 8px 12px; }
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover { fill: var(--russet); }
.flatpickr-weekdays { background: #fff; border-bottom: 1px solid rgba(97,71,67,0.18); }
.flatpickr-weekday {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--russet) !important;
  background: transparent;
}
.flatpickr-day {
  font-size: 13px;
  color: var(--heading);
  border-radius: 2px;
  border: 1px solid transparent;
}
.flatpickr-day:hover {
  background: rgba(97,71,67,0.12);
  border-color: rgba(97,71,67,0.3);
  color: var(--heading);
}
.flatpickr-day.today {
  border-color: var(--dark-1);
  color: var(--heading);
}
.flatpickr-day.today:hover { background: rgba(97,71,67,0.1); }
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--dark-1);
  border-color: var(--dark-1);
  color: #fff;
}
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--russet-dark);
  border-color: var(--russet-dark);
}
.flatpickr-day.inRange {
  background: rgba(97,71,67,0.15);
  border-color: rgba(97,71,67,0.15);
  box-shadow: -5px 0 0 rgba(97,71,67,0.15), 5px 0 0 rgba(97,71,67,0.15);
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay { color: rgba(97,71,67,0.28); }
.numInputWrapper:hover { background: rgba(97,71,67,0.08); }

/* ─────────────────────────────────────────────────────────────────────────────
   ROOMS SWITCHER — Homepage Mara Serena–style room-type selector
   ───────────────────────────────────────────────────────────────────────────── */
.rooms-switcher { background: var(--bg); }
.rts-row { border-radius: 4px; overflow: hidden; min-height: 460px; }

.rts-left {
  background: var(--dark-1);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.rts-select-wrap { margin-bottom: 4px; }
.rts-select-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-weight: 600;
}
.rts-select-box {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
}
.rts-select-box select {
  appearance: none;
  background: transparent;
  border: 0;
  width: 100%;
  padding: 11px 40px 11px 16px;
  font-size: 13px;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.02em;
}
.rts-select-box select option { background: var(--dark-1); color: #ffffff; }
.rts-select-box select:focus { outline: none; }
.rts-select-chevron {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: rgba(255,255,255,0.7);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.rts-name {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0;
  color: #ffffff;
  line-height: 1.25;
}
.rts-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rts-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.rts-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.rts-meta-item svg { color: rgba(255,255,255,0.6); flex-shrink: 0; }

.rts-price-row { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; }
.rts-price { display: flex; align-items: baseline; gap: 6px; }
.rts-from { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.rts-amount { font-family: 'Playfair Display', Georgia, serif; font-size: 2.2rem; color: #ffffff; font-weight: 400; line-height: 1; }
.rts-per { font-size: 13px; color: rgba(255,255,255,0.6); }

.rts-cta { padding-top: 4px; }
.rts-cta .btn { font-size: 11.5px; padding: 12px 22px; }
.rts-cta .btn.filled { background: #fff; border-color: #fff; color: var(--dark-1); }
.rts-cta .btn.filled:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); }
.rts-cta .btn:not(.filled) { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); }
.rts-cta .btn:not(.filled):hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; }

.rts-right { position: relative; min-height: 420px; }
.rts-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.rts-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.15s ease;
  display: block;
}

.rts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(28,22,14,0.55);
  border: 1px solid rgba(201,169,110,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}
.rts-arrow:hover { background: rgba(201,169,110,0.85); border-color: var(--gold); color: #1C160E; }
.rts-arrow-prev { left: 16px; }
.rts-arrow-next { right: 16px; }

.rts-counter {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.35);
  padding: 3px 10px;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .rts-left { padding: 32px 28px; gap: 18px; }
  .rts-right { min-height: 320px; position: relative; }
  .rts-img-wrap { position: relative; height: 320px; }
  .rts-row { flex-direction: column-reverse; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ROOM-TYPE DETAIL PAGE
   ───────────────────────────────────────────────────────────────────────────── */

/* breadcrumb is white globally on page-hero images; no override needed here */

/* Description strip — dark earthy band directly below hero */
/* ── Room type main overview section ── */
.rt-main-section {
  background: #ffffff;
  padding: 0;
}
.rt-main-section .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100%;
}
.rt-main-section .rt-overview-row {
  overflow: hidden;
  min-height: 520px;
}

/* Left image column stretches to match card height */
.rt-images-col {
  padding: 0 !important;
  background: #1a1208;
  display: flex;
  flex-direction: column;
}
.rt-main-img {
  flex: 1;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: #1a1208;
}
.rt-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.rt-main-img:hover img { transform: scale(1.02); }
.rt-main-expand {
  position: absolute; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(10,7,4,0.65);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 2px; padding: 7px 14px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  cursor: pointer; transition: background .2s;
}
.rt-main-expand:hover { background: rgba(201,169,110,0.35); }

/* Thumbnail strip */
.rt-thumbstrip {
  display: flex; gap: 3px; padding: 3px 0 0;
  overflow-x: auto; scrollbar-width: none;
  background: #ffffff;
}
.rt-thumbstrip::-webkit-scrollbar { display: none; }
.rt-thumb {
  flex-shrink: 0; width: 80px; height: 56px;
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, opacity .2s;
  opacity: 0.55;
}
.rt-thumb.active { border-color: var(--gold); opacity: 1; }
.rt-thumb:hover { opacity: 0.9; }
.rt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Right column: flex so card stretches full height */
.rt-overview-row > .col-lg-5 {
  display: flex;
  flex-direction: column;
}

/* Right: booking card — dark, fills the column */
.rt-booking-card {
  background: var(--dark-1);
  padding: 44px 36px 44px 36px;
  flex: 1;
  position: sticky;
  top: 78px;
}
.rt-info-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 400;
  color: #ffffff;
  line-height: 1.2; margin: 6px 0 0;
}
.rt-info-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.rt-info-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.8);
}
.rt-info-meta-item svg { color: rgba(255,255,255,0.7); flex-shrink: 0; }
.rt-info-desc {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 20px;
}

/* Responsive: stack on mobile */
@media (max-width: 991px) {
  .rt-booking-card { padding: 32px 20px; }
  .rt-main-section { padding: 0; }
  .rt-main-section .container { padding-left: 0 !important; padding-right: 0 !important; max-width: 100%; }
  .rt-main-img { min-height: 280px; }
}

/* Gallery */
.rt-gallery-section {
  background: #ffffff;
  padding: 40px 0 48px;
  border-top: 1px solid #ede6d9;
  border-bottom: 1px solid #ede6d9;
}
.rt-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid #d8cfc4;
  background: #fff;
  font-size: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
  color: var(--russet);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.rt-filter-pill.active,
.rt-filter-pill:hover { background: var(--dark-1); border-color: var(--dark-1); color: #fff; }

.rt-gallery-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
  background: #e8e0d4;
  position: relative;
}
.rt-gallery-thumb img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rt-gallery-thumb:hover img { transform: scale(1.05); }

/* Details + Booking section */
.rt-details-section {
  background: #ffffff;
  padding: 36px 0 48px;
}
.rt-block { margin-bottom: 32px; }
.rt-block:last-child { margin-bottom: 0; }

/* Amenity grid + badges with icons */
.rt-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.rt-amenity-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e4ddd4;
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--russet);
  font-family: 'Inter', system-ui, sans-serif;
  transition: border-color .2s, background .2s;
}
.rt-amenity-badge:hover { border-color: var(--gold); background: #fdf8f2; }
.rt-amenity-icon {
  flex-shrink: 0;
  color: var(--gold);
  display: flex; align-items: center;
}
.rt-amenity-icon svg { width: 16px; height: 16px; display: block; }

/* Seasonal rate cards — dark premium */
.rt-rate-card {
  background: var(--dark-1);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  padding: 28px 24px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .25s;
}
.rt-rate-card:hover { border-color: rgba(201,169,110,0.55); }
.rt-rate-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}
.rt-rate-normal::before  { opacity: 0.4; }
.rt-rate-peak::before    { opacity: 0.8; background: var(--gold); }
.rt-rate-christmas::before { background: #c0785a; opacity: 0.7; }

.rt-rate-icon-svg {
  width: 36px; height: 36px;
  margin: 0 auto 14px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
}
.rt-rate-icon-svg svg { width: 28px; height: 28px; }

.rt-rate-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 700; font-family: 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,0.9); margin-bottom: 4px;
}
.rt-rate-dates {
  font-size: 11.5px; color: rgba(255,255,255,0.55);
  margin-bottom: 18px; font-family: 'Inter', sans-serif;
}
.rt-rate-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem; color: #ffffff; font-weight: 400; line-height: 1;
}
.rt-rate-currency { font-size: 1.2rem; vertical-align: top; margin-top: 6px; display: inline-block; }
.rt-rate-per { font-size: 12px; font-family: 'Inter', sans-serif; color: rgba(255,255,255,0.5); margin-left: 2px; }

/* Booking sidebar card */
.rt-booking-card {
  background: var(--dark-1);
  border-radius: 4px;
  padding: 24px 22px;
  position: sticky;
  top: 90px;
}
.rt-booking-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 12px;
}
.rt-price-from { font-size: 11px; color: rgba(255,255,255,0.6); }
.rt-price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}
.rt-price-per { font-size: 12px; color: rgba(255,255,255,0.6); }

.rt-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5db87e;
  margin-bottom: 4px;
}

.rt-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.rt-form-field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
}
.rt-form-field input,
.rt-form-field select {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  padding: 9px 12px;
  font-size: 13px;
  color: #ffffff;
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
}
.rt-form-field input:focus,
.rt-form-field select:focus { outline: none; border-color: rgba(255,255,255,0.7); }
.rt-form-field select option { background: var(--dark-1); color: #fff; }

/* Book button on orange card: white bg, dark text */
.rt-booking-card .btn.filled {
  background: #ffffff;
  color: var(--dark-1);
  border-color: #ffffff;
}
.rt-booking-card .btn.filled:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
}

.rt-booking-footer { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.15); }
.rt-booking-footer .gold-link { color: rgba(255,255,255,0.8); font-size: 12.5px; }
.rt-booking-footer .gold-link:hover { color: #ffffff; }

/* Lightbox */
.rt-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.rt-lb-overlay {
  position: fixed; inset: 0;
  background: rgba(10,7,4,0.92);
  z-index: 9998;
  display: none;
}
.rt-lb-img-wrap {
  position: relative;
  z-index: 9999;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rt-lb-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
}
.rt-lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; font-size: 22px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: background 0.2s;
}
.rt-lb-close:hover { background: rgba(255,255,255,0.22); }
.rt-lb-prev, .rt-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff; font-size: 28px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: background 0.2s;
}
.rt-lb-prev:hover, .rt-lb-next:hover { background: rgba(201,169,110,0.5); }
.rt-lb-prev { left: 16px; }
.rt-lb-next { right: 16px; }

/* ============================================================
   Page preloader — white curtain reveal with logo watermark
   ============================================================ */
html.is-loading,
html.is-loading body { overflow: hidden; height: 100%; }

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader-panel-left  { left: 0; }
.loader-panel-right { right: 0; }

/* Faint logo watermark pattern on each panel */
.loader-panel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  background: url('../images/Sungura-Camp-Logo.png') center / contain no-repeat;
  opacity: 0.045;
}
.loader-panel-left::before  { left: 100%; }
.loader-panel-right::before { left: 0%; }

.loader-content {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.loader-mark {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-spinner {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201, 169, 110, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: loaderSpin 0.9s linear infinite;
}

.loader-logo {
  height: 60px;
  width: auto;
  opacity: 0;
  transform: scale(0.85);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.1));
  animation: loaderLogoIn 0.6s ease 0.15s forwards;
}

.loader-welcome {
  margin: 20px 0 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--russet);
  opacity: 0;
  animation: loaderTextIn 0.6s ease 0.4s forwards;
}

.loader-tagline {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--clay);
  opacity: 0;
  animation: loaderTextIn 0.6s ease 0.55s forwards;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}
@keyframes loaderLogoIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes loaderTextIn {
  to { opacity: 1; }
}

/* Taking longer than expected — spinner switches to burnt orange */
#page-loader.loader-waiting .loader-spinner {
  border-top-color: var(--dark-1);
}

/* Exit — curtain opens, content fades first */
#page-loader.loader-exit .loader-content {
  opacity: 0;
}
#page-loader.loader-exit .loader-panel-left  { transform: translateX(-100%); }
#page-loader.loader-exit .loader-panel-right { transform: translateX(100%); }

#page-loader.loader-hidden { display: none; }

@media (prefers-reduced-motion: reduce) {
  .loader-logo, .loader-welcome, .loader-tagline { animation: none !important; opacity: 1 !important; }
  .loader-logo { transform: scale(1); }
  .loader-spinner { animation: none !important; }
}

/* ── Welcome modal ──────────────────────────────────────────────────────── */
.welcome-modal-dialog { max-width: 720px; }

.welcome-modal-content {
  border: none;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 460px;
}

.welcome-modal-img {
  width: 40%;
  flex-shrink: 0;
  position: relative;
}
.welcome-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.welcome-modal-body {
  flex: 1;
  background: #fff;
  padding: 2.5rem 2.25rem 2.5rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-modal-close {
  position: absolute;
  top: .9rem;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(0,0,0,.3);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
  padding: 0;
}
.welcome-modal-close:hover { color: #cd6100; }

.welcome-modal-eyebrow {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #cd6100;
  margin-bottom: .55rem;
}

.welcome-modal-rule {
  width: 32px;
  height: 2px;
  background: #cd6100;
  margin-bottom: 1.1rem;
  border-radius: 1px;
}

.welcome-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #1C160E;
  line-height: 1.25;
  margin-bottom: .85rem;
}

.welcome-modal-body p {
  color: #614743;
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.welcome-modal-actions { display: flex; gap: .65rem; flex-wrap: wrap; }

/* Burnt-orange CTA button inside the modal */
.welcome-modal-actions .btn-orange {
  display: inline-block;
  padding: .6rem 1.4rem;
  background: #cd6100;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
}
.welcome-modal-actions .btn-orange:hover { background: #a84f00; color: #fff; }

.welcome-modal-actions .btn-outline-orange {
  display: inline-block;
  padding: .6rem 1.4rem;
  background: transparent;
  color: #cd6100;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid #cd6100;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.welcome-modal-actions .btn-outline-orange:hover { background: #cd6100; color: #fff; }

.welcome-modal-dismiss {
  display: block;
  margin-top: 1.25rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
  cursor: pointer;
  text-decoration: none;
  transition: color .2s;
  background: none;
  border: none;
  padding: 0;
}
.welcome-modal-dismiss:hover { color: #cd6100; }

@media (max-width: 575px) {
  .welcome-modal-dialog { margin: .75rem; }
  .welcome-modal-content { flex-direction: column; min-height: unset; }
  .welcome-modal-img { width: 100%; height: 170px; }

  .welcome-modal-body { padding: 1.5rem 1.25rem; }
  .welcome-modal-title { font-size: 1.4rem; }
  .welcome-modal-body p { font-size: .82rem; margin-bottom: 1.25rem; }
}
