/* ============================================================
   Example Safaris Co. — Light Theme
   WebRevive demo | 2026-04
   ============================================================ */

/* --- 1. Design tokens ---------------------------------------- */
:root {
  --color-primary: #B8956A;
  --color-primary-dark: #97784F;
  --color-primary-deep: #7A5C35;
  --color-primary-light: #D5BE9C;
  --color-accent: #3D5540;
  --color-accent-dark: #2C3E2E;

  --color-heading: #2B2B2B;
  --color-text: #3A3A3A;
  --color-text-light: #5E5E5E;
  --color-nav-text: #2B2B2B;

  --color-white: #FFFFFF;
  --color-cream: #F5F0E8;
  --color-cream-dark: #EBE4D5;
  --color-border: #DDD5C4;

  --color-dark: #1D1D1D;
  --color-dark-soft: #2F2F2F;
  --color-text-on-dark: #F5F0E8;

  --color-success: #0e6b33;
  --color-overlay: rgba(29, 29, 29, 0.5);

  --font-heading: 'Clash Display', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 80px;
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease-out;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* --- 2. Reset + base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-heading);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-heading); }
a:focus-visible {
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.6em 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1rem 0; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-heading);
  margin-bottom: 0.6rem;
}

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-sm { padding: clamp(40px, 6vw, 70px) 0; }
.section-dark {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-cream-dark { background: var(--color-cream-dark); }

/* --- 3. Buttons ---------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition),
              background-color var(--transition), color var(--transition);
  overflow: hidden;
  isolation: isolate;
}
.btn-primary {
  background: var(--color-heading);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline {
  background: transparent;
  color: var(--color-heading);
  border: 1.5px solid var(--color-heading);
}
.btn-outline:hover {
  background: var(--color-heading);
  color: var(--color-white);
}
.btn-whatsapp {
  background: var(--color-success);
  color: var(--color-white);
}
.btn-whatsapp:hover { background: #0a5528; color: var(--color-white); }

/* Cursor-reactive shine on primary — effect 7 */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(
    circle 120px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }

/* --- 4. Navigation ------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 4px 0 0 0;
  background: rgba(250, 251, 248, 0.97);
  backdrop-filter: saturate(1.1) blur(8px);
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 6px 16px -8px rgba(0,0,0,0.08);
  border-bottom-color: var(--color-border);
}

body.home-page .navbar:not(.scrolled):not(.menu-open) {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-link,
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-dropdown-toggle,
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-hamburger-icon::before,
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-hamburger-icon::after,
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-hamburger-icon {
  color: var(--color-white);
}
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-hamburger-icon,
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-hamburger-icon::before,
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-hamburger-icon::after {
  background: var(--color-white);
}
.navbar.menu-open {
  background: rgba(250,251,248,0.98);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom-color: var(--color-border);
}

.nav-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--nav-height);
}

.nav-logo { display: inline-flex; align-items: center; line-height: 0; }
.nav-logo img { height: 44px; width: auto; transition: opacity 0.3s ease; }
.nav-logo .logo-white { display: none; }

body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-logo .logo-dark { display: none; }
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-logo .logo-white {
  display: inline-block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 2px rgba(0, 0, 0, 0.35));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link, .nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-nav-text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 8px 2px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-link::after, .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transition: right 0.3s ease;
}
.nav-link:hover::after, .nav-dropdown-toggle:hover::after,
.nav-link.active::after {
  right: 0;
}
.nav-dropdown-toggle::after { display: none; } /* chevron is the hover cue */
.nav-dropdown-toggle .chevron {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-top: -2px;
  transition: transform 0.25s ease;
}
.nav-dropdown.open .nav-dropdown-toggle .chevron { transform: rotate(-135deg) translate(-1px, -1px); }

.nav-enquire {
  padding: 10px 22px;
  background: var(--color-heading);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav-enquire:hover { background: var(--color-dark); color: var(--color-white); transform: translateY(-1px); }
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-enquire {
  background: var(--color-white);
  color: var(--color-heading);
}

.nav-hamburger {
  display: none;
  background: none; border: none;
  padding: 12px; margin: 0 -12px;
  cursor: pointer;
}
.nav-hamburger-icon {
  display: block; position: relative;
  width: 22px; height: 2px;
  background: var(--color-nav-text);
  transition: background 0.1s 0.2s ease;
}
.nav-hamburger-icon::before,
.nav-hamburger-icon::after {
  content: "";
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--color-nav-text);
  transition: transform 0.25s ease, top 0.2s 0.25s ease, bottom 0.2s 0.25s ease;
}
.nav-hamburger-icon::before { top: -7px; }
.nav-hamburger-icon::after  { top: 7px; }
.nav-hamburger[aria-expanded="true"] .nav-hamburger-icon { background: transparent; transition: background 0.1s ease; }
.nav-hamburger[aria-expanded="true"] .nav-hamburger-icon::before {
  top: 0; transform: rotate(45deg);
  transition: top 0.2s ease, transform 0.25s 0.2s ease;
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-icon::after {
  top: 0; transform: rotate(-45deg);
  transition: top 0.2s ease, transform 0.25s 0.2s ease;
}

/* Dropdown — desktop (≥769px) + mobile (<769px) */
@media (min-width: 769px) {
  .nav-dropdown { position: relative; }
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
    z-index: 1001;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 10px 22px;
    color: var(--color-text);
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
  }
  .nav-dropdown-menu a:hover {
    background: var(--color-cream-dark);
    color: var(--color-heading);
  }
}

@media (max-width: 768px) {
  .nav-hamburger { display: inline-flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 28px;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility 0s 0.3s;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform var(--transition), opacity var(--transition), visibility 0s 0s;
  }
  .nav-link, .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    color: #1F2420;
    font-size: 1.1rem;
    padding: 16px 0;
    margin: 0;
    background: transparent;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    text-align: left;
  }
  .nav-link:focus-visible, .nav-dropdown-toggle:focus-visible {
    outline: 2px solid var(--color-primary-dark);
    outline-offset: 2px;
    border-radius: 2px;
  }
  .nav-link::after, .nav-dropdown-toggle::after { display: none; }
  .nav-dropdown-toggle { justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.3s ease, visibility 0s 0.3s, padding 0s 0.3s;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 400px !important;
    padding: 0 0 12px 0 !important;
    visibility: visible !important;
    transition: max-height 0.3s ease, visibility 0s 0s, padding 0s 0s;
  }
  .nav-dropdown-menu a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    color: var(--color-text);
    border-bottom: none;
  }
  .nav-enquire {
    margin-top: 14px;
    text-align: center;
    padding: 14px 22px;
    background: var(--color-heading);
    color: var(--color-white);
  }
  body.home-page .navbar:not(.scrolled) .nav-enquire {
    background: var(--color-heading);
    color: var(--color-white);
  }
}

/* --- 5. Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
  padding-top: var(--nav-height);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img, .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero-media .hero-poster { z-index: 0; }
.hero-media video { z-index: 1; }
/* Ken Burns — effect 3 (image hero only) */
.hero-media img.kenburns {
  animation: kenburns 25s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(-2%, -1%, 0); }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(20, 30, 22, 0.72) 0%,
    rgba(20, 30, 22, 0.45) 14%,
    rgba(20, 30, 22, 0.25) 30%,
    rgba(20, 30, 22, 0.35) 55%,
    rgba(20, 30, 22, 0.55) 100%
  );
}

.hero-inner {
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
}
.hero h1 {
  color: var(--color-white);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-actions {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator — effect 11 */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.86);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.scroll-indicator::after {
  content: "";
  display: inline-block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.3; }
}
body.scrolled .scroll-indicator { opacity: 0; visibility: hidden; pointer-events: none; }

/* Sub-page hero (shorter) */
.sub-hero {
  min-height: 54vh;
  padding: calc(var(--nav-height) + 40px) 0 60px;
}
.sub-hero .hero-inner { max-width: 780px; }

/* --- 6. Reveal on scroll — effect 1 -------------------------- */
/* Default (no JS / bots / screenshots): fully visible so content is never hidden */
.reveal { opacity: 1; transform: none; }
/* With JS enabled, hide until Intersection Observer marks it visible */
html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

/* --- 7. Trust strip + counters (effect 6) -------------------- */
.trust-strip {
  padding: 46px 0;
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px 32px;
  text-align: center;
  align-items: start;
}
.trust-item { padding: 8px; }
.trust-num {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  color: var(--color-heading);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 0.86rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
}

/* --- 8. Intro --------------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-grid img {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.intro-text p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .intro-grid img { aspect-ratio: 16 / 11; max-height: 400px; width: 100%; }
}

/* --- 9. Product cards — effect 4 hover zoom ----------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-cream-dark);
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-media img { transform: scale(1.08); }
.card-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.95);
  color: var(--color-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-transform: uppercase;
}
.card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.3rem;
}
.card-meta {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.card-desc { font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.card-cta {
  font-weight: 600;
  color: var(--color-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-cta::after {
  content: "→";
  transition: transform 0.25s ease;
}
.card:hover .card-cta::after { transform: translateX(4px); }

/* --- 10. Testimonials — effect 8 ------------------------------ */
.testimonials {
  background: var(--color-cream-dark);
}
.testi-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.testi-track {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.testi-slides {
  display: flex;
  transition: transform 0.55s cubic-bezier(.22,.8,.32,1);
  will-change: transform;
}
.testi-slide {
  flex: 0 0 100%;
  padding: 40px 48px 44px;
  text-align: center;
}
.testi-stars {
  color: var(--color-accent-dark);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.testi-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: var(--color-heading);
  margin-bottom: 16px;
}
.testi-attr {
  font-size: 0.9rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testi-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.testi-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-heading);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.testi-arrow:hover { background: var(--color-heading); color: var(--color-white); }
.testi-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
}
.testi-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.testi-dot.active { background: var(--color-primary-dark); transform: scale(1.25); }

@media (max-width: 520px) {
  .testi-slide { padding: 32px 24px 36px; }
}

/* --- 11. Gallery + lightbox — effect 9 --------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  background: var(--color-cream-dark);
  border: none;
  padding: 0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 16, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius-sm);
  transform: scale(0.96);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(0,0,0,0.5);
  color: var(--color-white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(0,0,0,0.8); }

/* --- 12. Partners strip --------------------------------- */
.partners {
  padding: 48px 0;
  background: var(--color-cream-dark);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  align-items: center;
}
.partner-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--color-heading);
  letter-spacing: 0.02em;
}
.partner-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* --- 13. Planner teaser --------------------------------- */
.planner-teaser {
  background: var(--color-dark);
  color: var(--color-text-on-dark);
  text-align: center;
  padding: 80px 24px;
}
.planner-teaser h2 { color: var(--color-white); max-width: 640px; margin: 0 auto 1rem; }
.planner-teaser p { max-width: 540px; margin: 0 auto 1.6rem; color: rgba(240,245,238,0.85); }

/* --- 14. FAQ accordion ---------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-heading);
  text-align: left;
  font-weight: 600;
}
.faq-question .faq-icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  position: relative;
  transition: border-color 0.2s, transform 0.3s;
}
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-heading);
}
.faq-question .faq-icon::before { width: 12px; height: 2px; }
.faq-question .faq-icon::after  { width: 2px; height: 12px; transition: transform 0.3s ease; }
.faq-item.open .faq-question .faq-icon::after { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 0 22px; color: var(--color-text); }
.faq-item.open .faq-answer { max-height: 600px; }

/* --- 15. CTA section ----------------------------------- */
.cta-section {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--color-cream);
  text-align: center;
}
.cta-section h2 { max-width: 640px; margin: 0 auto 1rem; }
.cta-section p { max-width: 560px; margin: 0 auto 1.6rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- 16. Forms ----------------------------------------- */
.planner-form {
  max-width: 780px;
  margin: 0 auto;
}
.form-step {
  display: none;
  animation: fadeSlide 0.35s ease both;
}
.form-step.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.form-step h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.form-step p.form-help {
  color: var(--color-text-light);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row-single { display: block; margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--color-heading);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary-dark);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231F2420' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.option-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  font: inherit;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  min-height: 56px;
  color: var(--color-heading);
}
.option-card:hover { border-color: var(--color-primary-dark); }
.option-card:focus-visible {
  outline: 2px solid var(--color-primary-dark);
  outline-offset: 2px;
}
.option-card[aria-pressed="true"],
.option-card.selected {
  border-color: var(--color-heading);
  background: var(--color-heading);
  color: var(--color-white);
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 28px;
  flex-wrap: wrap;
}
.form-actions .btn { min-width: 140px; }

.form-success, .form-error {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
}
.form-success { border-color: var(--color-primary); }
.form-error { border-color: #D94F4F; }
.form-success h3 { color: var(--color-primary-dark); }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* --- 17. Contact info block --------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block { background: var(--color-white); padding: 32px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.contact-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-label {
  font-size: 0.82rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-value { font-weight: 600; color: var(--color-heading); }
.contact-item-value a { color: var(--color-heading); }

/* --- 18. Quick-facts bar (product detail) ------------------- */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: -48px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}
.quick-fact {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}
.quick-fact:last-child { border-right: none; }
.quick-fact strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-heading);
  margin-bottom: 4px;
}
.quick-fact span {
  font-size: 0.78rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .quick-fact { border-bottom: 1px solid var(--color-border); }
  .quick-fact:nth-child(even) { border-right: none; }
  .quick-fact:nth-last-child(-n+2) { border-bottom: none; }
}

/* --- 19. Itinerary --------------------------------------- */
.itinerary { max-width: 820px; margin: 0 auto; }
.itinerary-day {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.itinerary-day:last-child { border-bottom: none; }
.itinerary-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.itinerary-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.itinerary-body p { font-size: 0.96rem; margin-bottom: 0; }

/* --- 20. Included / not included ----------------------- */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.included-list { list-style: none; padding: 0; margin: 0; }
.included-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dashed var(--color-border);
}
.included-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 16px; height: 16px;
  border-radius: 50%;
}
.included-list.yes li::before { background: var(--color-primary); }
.included-list.yes li::after {
  content: "";
  position: absolute;
  left: 4px; top: 18px;
  width: 4px; height: 7px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
}
.included-list.no li::before { background: #E9A39B; }
.included-list.no li::after {
  content: "×";
  position: absolute;
  left: 3px; top: 9px;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 720px) {
  .included-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- 21. Sticky sidebar (product detail) --------------- */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.product-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: var(--color-white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.product-sidebar .price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--color-heading);
  margin-bottom: 4px;
}
.product-sidebar .price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  margin-top: -2px;
}
.product-sidebar .btn { width: 100%; margin-top: 12px; }
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 30px; }
  .product-sidebar { position: static; }
}

/* --- 22. Filter pills --------------------------------- */
.filter-pills {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  color: var(--color-heading);
}
.filter-pill:hover { border-color: var(--color-primary); }
.filter-pill.active {
  background: var(--color-heading);
  color: var(--color-white);
  border-color: var(--color-heading);
}

/* --- 23. WhatsApp float + mobile enquiry bar + back-to-top --- */
.whatsapp-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--color-success);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--color-white);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
  z-index: 100;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.06); color: var(--color-white); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

.back-to-top {
  position: fixed;
  bottom: 20px; left: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-heading);
  border: 1px solid var(--color-border);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  visibility: hidden;
  z-index: 100;
  font-size: 1rem;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.back-to-top:hover { background: var(--color-heading); color: var(--color-white); transform: translateY(-2px); }

.mobile-enquiry-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 10px 14px;
  display: none;
  gap: 10px;
  z-index: 99;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
}
.mobile-enquiry-bar .btn { flex: 1; padding: 12px; font-size: 0.95rem; }
@media (max-width: 768px) {
  .mobile-enquiry-bar { display: flex; }
  body { padding-bottom: 68px; }
  .whatsapp-float { bottom: 80px; }
  .back-to-top { bottom: 80px; }
}

/* --- 24. Footer --------------------------------------- */
.footer {
  background: var(--color-dark);
  color: rgba(240,245,238,0.85);
  padding: 70px 0 0;
}
.footer a { color: rgba(240,245,238,0.85); }
.footer a:hover { color: var(--color-white); }
.footer h3 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; max-width: 280px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 4px 0; font-size: 0.95rem; }
.footer-social {
  display: flex; gap: 12px; margin-top: 14px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-enquire {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--color-white);
}
.footer-enquire:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(240,245,238,0.7);
}
.footer-bottom .sep { margin: 0 8px; opacity: 0.5; }

.demo-disclaimer {
  background: var(--color-dark-soft);
  color: rgba(240,245,238,0.7);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* --- 25. Misc & responsive ------------------------------ */
.breadcrumbs {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.breadcrumbs a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.6; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { margin-top: 2em; }
.legal-body h3 { margin-top: 1.4em; }
.legal-body p, .legal-body li { font-size: 0.98rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .hero-media img.kenburns { animation: none; transform: none; }
  .hero-media { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Print */
@media print {
  .navbar, .whatsapp-float, .back-to-top, .mobile-enquiry-bar, .scroll-indicator { display: none !important; }
  .hero { min-height: auto; padding-top: 0; color: var(--color-heading); }
  .hero-overlay, .hero-media { display: none; }
  .hero h1, .hero .lede { color: var(--color-heading); text-shadow: none; }
}

/* Signature hero block removed — lodge uses isometric map signature (see end of file) */

/* ============================================================
   SIGNATURE — Interactive Isometric Lodge Map (lodge)
   ============================================================ */
.lodge-map-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.lodge-map {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--color-cream-dark);
  display: block;
}
.lodge-hotspot {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-origin: center;
}
.lodge-hotspot:hover,
.lodge-hotspot:focus-visible {
  outline: none;
  filter: drop-shadow(0 0 16px rgba(184, 149, 106, 0.7));
  transform: translateY(-4px) scale(1.04);
}
.lodge-hotspot:focus-visible rect {
  stroke: var(--color-accent);
  stroke-width: 3;
}
.lodge-hotspot .pulse {
  transform-origin: center;
  animation: hotspot-pulse 2.4s ease-in-out infinite;
}
@keyframes hotspot-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%      { transform: scale(1.18); opacity: 0.15; }
}

/* Modal */
.lodge-modal {
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 29, 0.78);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lodge-modal.open {
  display: flex;
  opacity: 1;
}
.lodge-modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s ease;
}
.lodge-modal.open .lodge-modal-inner { transform: translateY(0) scale(1); }
.lodge-modal-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-cream-dark);
}
.lodge-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: lodge-kenburns 22s ease-in-out infinite alternate;
}
@keyframes lodge-kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}
.lodge-modal-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.lodge-modal-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-deep);
  margin-bottom: 6px;
}
.lodge-modal-body h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin-bottom: 12px;
}
.lodge-amenities {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.lodge-amenities li {
  font-size: 0.9rem;
  color: var(--color-text);
  position: relative;
  padding-left: 20px;
}
.lodge-amenities li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.lodge-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 2;
  transition: background 0.2s;
}
.lodge-modal-close:hover { background: rgba(0,0,0,0.6); }
.lodge-modal-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 720px) {
  .lodge-modal-inner { grid-template-columns: 1fr; }
  .lodge-modal-img { aspect-ratio: 16/10; }
  .lodge-modal-body { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .lodge-hotspot .pulse { animation: none; }
  .lodge-modal-img img { animation: none; }
}

/* A11y: footer inline text links must not rely on color alone */
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* Reduced motion: disable smooth scroll program-wide */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Hero video pause/play control — WCAG 2.2.2 compliance */
.hero-video-toggle {
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(29, 29, 29, 0.72);
  color: #F5F0E8;
  border: 1px solid rgba(245, 240, 232, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1;
  z-index: 12;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-video-toggle:hover,
.hero-video-toggle:focus-visible {
  background: rgba(29, 29, 29, 0.92);
  transform: scale(1.06);
}
.hero-video-toggle:focus-visible {
  outline: 2px solid #B8956A;
  outline-offset: 2px;
}
.hero-video-toggle-icon { pointer-events: none; }

/* Text-based brand logo (replaces image) */
.nav-logo { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.nav-logo .logo-mark {
  width: 42px; height: 42px; border-radius: 6px;
  background: var(--color-heading);
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--color-primary);
}
.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 600;
  color: var(--color-heading);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-logo .logo-text {
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-logo .logo-mark {
  background: rgba(0,0,0,0.42);
  color: var(--color-primary-light);
  border-color: rgba(255,255,255,0.6);
}
@media (max-width: 540px) {
  .nav-logo .logo-text { font-size: 0.92rem; }
  .nav-logo .logo-mark { width: 36px; height: 36px; font-size: 0.86rem; border-radius: 5px; }
}


/* === auto-injected visual decoration v2 === */
.cta-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.22;
  z-index: -1;
}
.cta-section::before {
  width: clamp(280px, 40vw, 460px);
  height: clamp(280px, 40vw, 460px);
  background: var(--color-primary-light, var(--color-primary));
  top: -140px; left: -140px;
}
.cta-section::after {
  width: clamp(240px, 34vw, 380px);
  height: clamp(240px, 34vw, 380px);
  background: var(--color-accent);
  bottom: -120px; right: -120px;
}
.cta-section .wrap { position: relative; z-index: 1; }
.cta-section h2 { position: relative; }
.cta-section h2::before {
  content: "";
  display: block;
  width: 56px; height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

/* Sus / values / principle cards: add brand top-accent + soft icon dot */
.sus-card { position: relative; }
.sus-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light, var(--color-primary)));
  border-radius: 0 0 3px 3px;
  opacity: 0.85;
}
.sus-card::after {
  content: "";
  position: absolute;
  top: 18px; right: 22px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.04);
  opacity: 0.7;
}

/* Service cards (where present) get a matching top accent */
.svc-card { position: relative; }
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  border-radius: 0;
  opacity: 0.7;
  pointer-events: none;
}

/* Testimonials section: giant decorative quotation mark + soft texture */
.section.testimonials,
section.testimonials {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section.testimonials::before,
section.testimonials::before {
  content: "\201C";
  position: absolute;
  top: -40px; left: 4%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(280px, 26vw, 460px);
  line-height: 0.85;
  color: var(--color-accent);
  opacity: 0.10;
  pointer-events: none;
  z-index: -1;
}
.section.testimonials::after,
section.testimonials::after {
  content: "\201D";
  position: absolute;
  bottom: -120px; right: 4%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(220px, 22vw, 380px);
  line-height: 0.85;
  color: var(--color-primary-light, var(--color-primary));
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
}
.section.testimonials .wrap,
section.testimonials .wrap { position: relative; z-index: 1; }

/* FAQ-style sections: subtle question-mark watermark */
[class*="faq"] {
  position: relative;
}
[class*="faq"] > .wrap::before {
  content: "?";
  position: absolute;
  top: -10px; right: -10px;
  font-family: var(--font-display, Georgia), serif;
  font-size: clamp(180px, 18vw, 280px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* Generic content sections that lack imagery: subtle top divider ornament */
.section-cream-dark > .wrap > .reveal:first-child h2,
.section-cream > .wrap > .reveal:first-child h2 {
  position: relative;
}

/* Decorative dot pattern for empty contact / info sections */
.contact-card,
.contact-block,
.info-grid {
  position: relative;
}

/* Testimonials track polish: ensure carousel sits above decoration */
.testi-carousel,
.testi-track,
.testi-slides { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .cta-section::before, .cta-section::after { animation: none; }
}
/* === end auto-injected visual decoration v2 === */


/* === auto-injected WhatsApp FAB (Tanzania) === */
.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.40);
  z-index: 50;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: scale(1.07);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
@media (max-width: 768px) {
  .whatsapp-float { bottom: 88px; }
}
@media print {
  .whatsapp-float { display: none !important; }
}
/* === end WhatsApp FAB === */


/* === auto-injected cookie consent banner === */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  background: var(--color-surface, var(--color-cream));
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: cookieSlideUp 280ms ease-out both;
  max-width: 920px;
  margin: 0 auto;
}
@keyframes cookieSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-text {
  margin: 0;
  flex: 1 1 320px;
  min-width: 280px;
  font-size: 0.92rem;
  color: var(--color-text);
}
.cookie-banner-text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  appearance: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.15s ease, background 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-primary {
  background: var(--color-primary);
  color: var(--color-cream);
}
.cookie-btn-primary:hover {
  background: var(--color-primary-dark, var(--color-primary));
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.cookie-btn-secondary:hover {
  background: var(--color-cream-dark);
}
@media (max-width: 640px) {
  .cookie-banner {
    left: 8px; right: 8px; bottom: 8px;
    padding: 14px 16px;
  }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-btn { flex: 1 1 0; }
}
@media (max-width: 768px) {
  body.cookie-banner-visible .whatsapp-float { bottom: 200px; }
  body.cookie-banner-visible .back-to-top    { bottom: 200px; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { animation: none; }
}
@media print { .cookie-banner { display: none !important; } }
/* === end cookie consent banner === */



/* === auto-injected nav-theme-toggle base === */
.nav-theme-toggle {
  background: none;
  border: 1.5px solid var(--color-border, rgba(0,0,0,0.18));
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-heading, #1A1A1A);
  font-family: var(--font-body, sans-serif);
  font-weight: 600;
  transition: all 0.2s ease;
  min-height: 36px;
}
.nav-theme-toggle:hover {
  background: var(--color-cream-dark, rgba(0,0,0,0.05));
  border-color: var(--color-accent, var(--color-primary));
}
.nav-theme-toggle svg {
  width: 16px; height: 16px;
}
@media (max-width: 768px) {
  .nav-theme-toggle { margin: 14px 0 0; align-self: flex-start; }
}
/* === end nav-theme-toggle base === */

/* === auto-injected theme-toggle visibility v2 === */
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-theme-toggle {
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,0.55);
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-theme-toggle:hover,
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-theme-toggle:focus-visible {
  background: rgba(0,0,0,0.55);
  border-color: var(--color-accent, #FFD66B);
  color: #FFFFFF;
  outline: none;
}
body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-theme-toggle svg {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
/* On non-home pages and after scroll, retain default styling */
.navbar.scrolled .nav-theme-toggle {
  background: var(--color-cream, #FFF8F0);
  color: var(--color-heading, #1A1A1A);
  border-color: var(--color-border, rgba(0,0,0,0.18));
}
/* === end theme-toggle visibility v2 === */


/* === auto-injected responsive safety net === */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  min-width: 320px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
img, picture, video, svg, canvas { max-width: 100%; height: auto; }
img[width][height] { aspect-ratio: attr(width) / attr(height); }
iframe, embed, object { max-width: 100%; }

/* Long URLs / CJK words must not break layout */
a, p, h1, h2, h3, h4, h5, h6, li, blockquote, span, td, th {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Tables get horizontal scroll on small screens */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { max-width: 100%; }

/* Prevent layout breakage on edge viewport sizes */
.wrap, .wrap-wide, .container {
  max-width: 100%;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Hero text scales fluidly even at high zoom */
.hero h1, h1.fluid-text {
  font-size: clamp(1.8rem, 4.5vw + 0.5rem, 4.5rem);
  line-height: 1.05;
  word-break: normal;
}

/* Buttons keep 44px touch target at all zoom levels */
.btn, button.btn { min-height: 44px; }

/* Mobile sticky bars never overlap WhatsApp FAB or scroll-to-top */
@media (max-width: 768px) {
  body { padding-bottom: env(safe-area-inset-bottom, 0); }
  .mobile-enquiry-bar { padding-bottom: calc(10px + env(safe-area-inset-bottom, 0)); }
  .whatsapp-float { bottom: 88px !important; }
  .back-to-top    { bottom: 88px !important; }
}

/* High-zoom safety: horizontal scroll only on tables, never on body */
@media (min-resolution: 1.5dppx) {
  body { overflow-x: hidden; }
}

/* Avoid white-space: nowrap on long content */
.kinetic-marquee, .kinetic-track, .kinetic-item { white-space: nowrap; }
/* === end responsive safety net === */


/* === lodge experiences card v2 === */
.card-experience {
  display: flex;
  flex-direction: column;
  background: var(--color-cream, #FFF8F0);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-experience:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.card-experience .card-media { flex-shrink: 0; }
.card-experience .card-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column;
  flex: 1;
}
.card-experience .card-desc { font-size: 0.95rem; margin-bottom: 8px; }
.card-experience .card-desc-more {
  font-size: 0.88rem; color: var(--color-text-light, #6A5340);
  margin-bottom: 14px; line-height: 1.55;
}
.card-experience .card-cta-row { margin-top: auto; padding-top: 4px; }
.card-experience .btn-sm {
  padding: 9px 16px; font-size: 0.86rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
/* === end === */

/* === converted card variants === */
.card-grade,
.card-blend {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white, #fff);
  border: 1px solid var(--color-border, rgba(0,0,0,0.1));
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-grade:hover,
.card-blend:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.card-grade .card-body,
.card-blend .card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-grade .card-cta-row,
.card-blend .card-cta-row { margin-top: auto; padding-top: 8px; }
/* === end converted card variants === */

/* === Dark theme overrides (rule-level, appended by unifier) === */
:root[data-theme="dark"] {
  --color-heading: #F0EBE1;
  --color-text: #D8D2C2;
  --color-text-light: #ACA59A;
  --color-nav-text: #F0EBE1;
  --color-cream: #1A1813;
  --color-cream-dark: #25221C;
  --color-border: #6B5F4A;
  --color-dark: #0D0B08;
  --color-text-on-dark: #F0EBE1;
  --color-success: #4ade80;
  --color-overlay: rgba(8, 6, 4, 0.6);
  --color-surface: #25221C;
  --color-surface-elevated: #2D2920;
}
:root[data-theme="dark"] .section-cream-dark {
  background: #2D2920;
}
:root[data-theme="dark"] .btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
}
:root[data-theme="dark"] .btn-primary:hover {
  background: var(--color-primary-light);
  color: var(--color-dark);
}
:root[data-theme="dark"] .btn-outline {
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
:root[data-theme="dark"] .btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}
:root[data-theme="dark"] .btn-whatsapp {
  color: var(--color-dark);
}
:root[data-theme="dark"] .btn-whatsapp:hover {
  background: #22c55e;
  color: var(--color-dark);
}
:root[data-theme="dark"] .navbar {
  background: rgba(20, 18, 14, 0.92);
  backdrop-filter: saturate(1.1) blur(10px);
}
:root[data-theme="dark"] .navbar.scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 6px 16px -8px rgba(0,0,0,0.6);
}
:root[data-theme="dark"] .navbar.menu-open {
  background: rgba(20, 18, 14, 0.98);
  backdrop-filter: saturate(1.1) blur(10px);
}
:root[data-theme="dark"] .nav-enquire {
  background: var(--color-primary);
  color: var(--color-dark);
}
:root[data-theme="dark"] .nav-enquire:hover {
  background: var(--color-primary-light);
  color: var(--color-dark);
}
:root[data-theme="dark"] body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-enquire {
  background: var(--color-primary);
  color: var(--color-dark);
}
:root[data-theme="dark"] .card {
  background: var(--color-surface);
}
:root[data-theme="dark"] .card-badge {
  background: var(--color-primary);
  color: var(--color-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
:root[data-theme="dark"] .testi-track {
  background: var(--color-surface);
}
:root[data-theme="dark"] .testi-arrow {
  background: var(--color-surface);
}
:root[data-theme="dark"] .partner-badge {
  background: var(--color-surface);
}
:root[data-theme="dark"] .form-input, :root[data-theme="dark"] .form-select, :root[data-theme="dark"] .form-textarea {
  background: var(--color-surface-elevated);
}
:root[data-theme="dark"] .option-card {
  background: var(--color-surface);
}
:root[data-theme="dark"] .form-success, :root[data-theme="dark"] .form-error {
  background: var(--color-surface);
}
:root[data-theme="dark"] .contact-block {
  background: var(--color-surface);
}
:root[data-theme="dark"] .quick-facts {
  background: var(--color-surface);
}
:root[data-theme="dark"] .product-sidebar {
  background: var(--color-surface);
}
:root[data-theme="dark"] .filter-pill {
  background: var(--color-surface);
}
:root[data-theme="dark"] .filter-pill:hover {
  color: var(--color-primary-light);
}
:root[data-theme="dark"] .filter-pill.active {
  background: var(--color-primary);
  color: var(--color-dark);
  border-color: var(--color-primary);
}
:root[data-theme="dark"] .back-to-top {
  background: var(--color-surface);
}
:root[data-theme="dark"] .mobile-enquiry-bar {
  background: var(--color-surface-elevated);
}
:root[data-theme="dark"] .lodge-modal-inner {
  background: var(--color-surface-elevated);
}
:root[data-theme="dark"] .nav-logo .logo-mark {
  background: var(--color-primary);
  color: var(--color-dark);
  border: 1.5px solid var(--color-primary-deep);
  box-shadow: 0 2px 8px rgba(184, 149, 106, 0.25);
}
:root[data-theme="dark"] body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-logo .logo-text {
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
:root[data-theme="dark"] body.home-page .navbar:not(.scrolled):not(.menu-open) .nav-logo .logo-mark {
  background: var(--color-primary);
  color: var(--color-dark);
  border-color: var(--color-primary-light);
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
@media (min-width: 769px) {
:root[data-theme="dark"] .nav-dropdown-menu {
  background: var(--color-surface-elevated);
}
}
@media (max-width: 768px) {
:root[data-theme="dark"] .nav-menu {
  background: var(--color-surface-elevated);
}
}


/* ========== Unified toggle icon swap + theme-aware SVG dual-render ========== */
.nav-theme-toggle .theme-icon-sun,
.nav-theme-toggle .theme-label-day { display: none; }
:root[data-theme="dark"] .nav-theme-toggle .theme-icon-moon,
:root[data-theme="dark"] .nav-theme-toggle .theme-label-night { display: none; }
:root[data-theme="dark"] .nav-theme-toggle .theme-icon-sun,
:root[data-theme="dark"] .nav-theme-toggle .theme-label-day { display: inline-flex; }
.nav-theme-toggle svg { width: 16px; height: 16px; }

/* Dual-rendered theme-aware SVGs (visibility-toggled siblings) */
.theme-svg-dark { display: none !important; }
:root[data-theme="dark"] .theme-svg-light { display: none !important; }
:root[data-theme="dark"] .theme-svg-dark { display: inline-block !important; }
