:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #1a1f1c;
  --muted: #5c6b64;
  --accent: #f37002;
  --border: #e5e7e2;
  --radius: 8px;
  --maxw: min(1300px, 85%);
  --header-height: 108px;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  :root {
    --maxw: min(1300px, 92%);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== CUSTOM SCROLLBAR (Minimal & Modern) ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(92, 107, 100, 0.28) transparent;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(92, 107, 100, 0.25);
  border-radius: 9999px;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(92, 107, 100, 0.5);
}

::-webkit-scrollbar-thumb:active {
  background: var(--accent, #f37002);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html.lenis,
html.lenis body {
  height: auto;
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: clip;
}

body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.875rem, 0.83rem + 0.2vw, 1rem);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--text);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== INTRO REVEAL ===== */
#intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro-mask {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  overflow: hidden;
  padding: 0.1em 0.2em;
}

.intro-logo {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.intro-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

body.intro-active {
  overflow: hidden;
}

/* ===== GLOBAL HEADER ===== */
.site-header {
  background: #fff;
  position: relative;
}

.header-mainbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-mainbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  /* 80px logo + the 14px vertical padding either side = 108px header
     (kept in sync with --header-height) */
  height: 80px;
}

/* Light (white-text) lockup only shows on dark/transparent headers */
.brand-logo--light {
  display: none;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.primary-nav>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav>ul>li {
  position: relative;
}

.primary-nav>ul>li>a,
.primary-nav>ul>li>.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  font-size: clamp(0.88rem, 0.85rem + 0.08vw, 0.92rem);
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
  line-height: 1;
  transition: color .15s;
}

.primary-nav>ul>li>.mega-trigger {
  background: none;
  border: 0;
  cursor: pointer;
}

.primary-nav>ul>li>a:hover,
.primary-nav>ul>li>.mega-trigger:hover {
  color: var(--accent);
}

.primary-nav .has-mega>.mega-trigger i:not(.nav-drawer-icon) {
  font-style: normal;
  font-size: clamp(0.8rem, 0.78rem + 0.08vw, 0.85rem);
  color: var(--muted);
  transition: color .15s, transform .25s;
}

/* These icons only exist for the mobile drawer's redesigned row layout;
   hide them on desktop where the nav is a plain inline text link list. */
.nav-drawer-icon,
.nav-drawer-arrow {
  display: none;
}

.primary-nav .has-mega>.mega-trigger:hover i:not(.nav-drawer-icon),
.primary-nav .has-mega.open>.mega-trigger {
  color: var(--accent);
}

.primary-nav .has-mega.open>.mega-trigger i:not(.nav-drawer-icon) {
  color: var(--accent);
  transform: rotate(180deg);
}

/* ===== MEGA MENU (desktop) ===== */
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: max-content;
  max-width: min(900px, 90vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  padding: 22px 26px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-mega[data-mega="themes"] .mega-menu {
  left: auto;
  right: 0;
}

@media (min-width: 1181px) {
  .has-mega[data-mega="themes"] {
    position: static;
  }

  .has-mega[data-mega="themes"] .mega-menu {
    left: 50%;
    right: auto;
    top: calc(100% + 4px);
    transform: translate(-50%, -6px);
  }

  .has-mega[data-mega="themes"].open .mega-menu {
    transform: translate(-50%, 0);
  }
}

.has-mega[data-mega="pages"] {
  position: static;
}

.has-mega[data-mega="pages"] .mega-menu {
  width: min(760px, calc(100vw - 32px));
  left: 50%;
  right: auto;
  transform: translate(-50%, -6px);
}

.has-mega[data-mega="pages"].open .mega-menu {
  transform: translate(-50%, 0);
}

.mega-pages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mega-pages .mega-eyebrow {
  margin-bottom: 10px;
}

.mega-pages .mega-link-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.mega-pages .mega-link-grid a {
  padding: 7px 0;
}

.has-mega[data-mega="destinations"] {
  position: static;
}

.has-mega[data-mega="destinations"] .mega-menu {
  left: 50%;
  right: auto;
  top: calc(100% + 4px);
  transform: translate(-50%, -6px);
}

.has-mega[data-mega="destinations"].open .mega-menu {
  transform: translate(-50%, 0);
}

.mega-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: clamp(0.68rem, 0.664rem + 0.06vw, 0.72rem);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

/* Destinations mega - tabs */
.mega-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.mega-tabs button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 8px 0;
  font-size: clamp(0.85rem, 0.83rem + 0.08vw, 0.9rem);
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}

.mega-tabs button:hover {
  color: var(--text);
}

.mega-tabs button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mega-panel {
  display: none;
}

.mega-panel.active {
  display: block;
}

.mega-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 8px 28px;
}

.mega-link-grid a {
  font-size: clamp(0.84rem, 0.824rem + 0.06vw, 0.88rem);
  color: var(--text);
  padding: 6px 0;
  transition: color .15s;
}

.mega-link-grid a:hover {
  color: var(--accent);
}

.mega-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color .2s ease;
}

.mega-view-all-text {
  position: relative;
  display: inline-block;
}

.mega-view-all-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  width: 100%;
  transition: width .2s ease;
}

.mega-view-all-link i {
  font-size: clamp(0.65rem, 0.63rem + 0.08vw, 0.7rem);
  transition: transform .2s ease;
}

.mega-view-all-link:hover,
.mega-view-all-link:focus-visible {
  color: #d96200;
}

.mega-view-all-link:hover .mega-view-all-text::after,
.mega-view-all-link:focus-visible .mega-view-all-text::after {
  width: calc(100% + 6px + .7rem);
}

.mega-view-all-link:hover i,
.mega-view-all-link:focus-visible i {
  transform: translateX(2px);
}

/* Theme Packages mega - card grid */
.mega-themes {
  width: min(820px, 90vw);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 24px;
}

.theme-card {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background .15s;
}

.theme-card:hover {
  background: #faf6ef;
}

.theme-name {
  display: block;
  font-size: clamp(0.88rem, 0.864rem + 0.06vw, 0.92rem);
  font-weight: 600;
  color: var(--text);
}

.theme-tag {
  display: block;
  font-size: clamp(0.74rem, 0.724rem + 0.06vw, 0.78rem);
  color: var(--muted);
  margin-top: 2px;
}

.theme-card:hover .theme-name {
  color: var(--accent);
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-search,
.header-menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .15s, color .15s;
}

.header-search:hover,
.header-menu-toggle:hover {
  background: #f3f1ec;
  color: var(--accent);
}

.header-search i,
.header-menu-toggle i {
  font-style: normal;
  font-size: clamp(1.05rem, 1.03rem + 0.08vw, 1.1rem);
}

.header-menu-toggle {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  line-height: normal;
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-size: clamp(0.88rem, 0.84rem + 0.1vw, 0.94rem);
  font-weight: 600;
  transition: background .15s, transform .15s;
}

.header-cta:hover {
  background: #b45309;
  transform: translateY(-1px);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 100;
  opacity: 0;
  transition: opacity .25s;
}

.nav-backdrop.visible {
  opacity: 1;
}

.nav-drawer-header,
.nav-drawer-footer {
  display: none;
}

.nav-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: background .15s, color .15s;
}

.nav-close i {
  font-style: normal;
  font-size: clamp(1.2rem, 1.18rem + 0.08vw, 1.25rem);
}

.nav-close:hover {
  background: #f3f1ec;
  color: var(--accent);
}

@media (max-width: 1100px) {
  .primary-nav>ul {
    gap: 18px;
  }

  .header-cta {
    padding: 8px 14px;
  }
}

@media (max-width: 1180px) {
  :root {
    /* logo 80px + 12px padding each side = 104px */
    --header-height: 104px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-mainbar-inner {
    max-width: none;
    padding: 12px 16px;
  }

  .header-menu-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .header-menu-toggle i {
    font-size: 1.3rem;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: #fff;
    margin-left: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 110;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
  }

  .primary-nav.open {
    transform: translateX(0);
  }

  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
  }

  .nav-drawer-brand {
    display: inline-flex;
    align-items: center;
  }

  .nav-drawer-brand img {
    display: block;
    height: 34px;
    width: auto;
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #faf8f3;
    color: var(--muted);
    flex-shrink: 0;
    transition: background .15s, color .15s, border-color .15s;
  }

  .nav-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .nav-close i {
    font-style: normal;
    font-size: 0.9rem;
  }

  .primary-nav>ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    flex: 1 0 auto;
    width: 100%;
  }

  .primary-nav>ul>li {
    border-bottom: none;
    position: static;
  }

  .primary-nav>ul>li>a,
  .primary-nav>ul>li>.mega-trigger {
    padding: 0 6px 0 14px;
    height: 52px;
    font-size: clamp(0.92rem, 0.9rem + 0.1vw, 0.96rem);
    font-weight: 500;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    transition: background .15s ease, color .15s ease;
  }

  .primary-nav>ul>li>a:hover,
  .primary-nav>ul>li>.mega-trigger:hover,
  .primary-nav>ul>li.has-mega.open>.mega-trigger {
    background: #faf3ea;
  }

  /* Groups the leading icon + label as one unit so justify-content:
     space-between on the row only pushes the trailing arrow/caret away —
     the icon stays glued to its label instead of drifting to the far left. */
  .nav-drawer-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .nav-drawer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 1rem;
    color: var(--accent);
    width: 20px;
    flex-shrink: 0;
  }

  .nav-drawer-arrow,
  .primary-nav .has-mega>.mega-trigger i.mega-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-style: normal;
    font-size: 0.78rem;
    color: var(--muted);
    background: #f3f1ec;
    flex-shrink: 0;
  }

  .primary-nav>ul>li.has-mega.open>.mega-trigger i.mega-caret {
    background: var(--accent);
    color: #fff;
  }

  .nav-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px;
    border-top: 1px solid var(--border);
    background: #faf8f3;
    width: 100%;
  }

  .nav-drawer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff !important;
    font-size: clamp(0.88rem, 0.864rem + 0.06vw, 0.92rem);
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(243, 112, 2, .25);
  }

  .nav-drawer-cta i {
    font-style: normal;
    font-size: 0.92rem;
  }

  .nav-drawer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .nav-drawer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: clamp(0.82rem, 0.808rem + 0.05vw, 0.85rem);
    font-weight: 500;
  }

  /* Same soft peach icon-badge convention used site-wide (.why-us-card__icon,
     .team-card__avatar, .sustainability-card__icon), not an invented style. */
  .nav-drawer-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #fdf1e6;
    flex-shrink: 0;
  }

  .nav-drawer-link__icon i {
    font-style: normal;
    font-size: 0.82rem;
    color: var(--accent);
  }

  .mega-menu {
    position: static;
    width: auto;
    max-width: none;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    background: #faf8f3;
    margin: 0 4px 6px;
    padding: 0 14px;
    opacity: 1;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .2s ease, visibility .2s;
  }

  .has-mega.open .mega-menu {
    visibility: visible;
    max-height: 3000px;
    padding: 12px 14px 14px;
  }

  .has-mega[data-mega="themes"] .mega-menu {
    right: auto;
  }

  .has-mega[data-mega="pages"] {
    position: static;
  }

  .has-mega[data-mega="pages"] .mega-menu,
  .has-mega[data-mega="pages"].open .mega-menu {
    width: auto;
    left: auto;
    right: auto;
    transform: none;
  }

  .mega-pages {
    display: block;
  }

  .pages-menu-group+.pages-menu-group {
    margin-top: 16px;
  }

  .mega-pages .mega-eyebrow {
    color: var(--accent);
  }

  .mega-pages .mega-link-grid a {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
  }

  .mega-pages .mega-link-grid a:last-child {
    border-bottom: none;
  }

  .has-mega[data-mega="destinations"] {
    position: static;
  }

  .has-mega[data-mega="destinations"] .mega-menu {
    left: auto;
    transform: none;
  }

  .has-mega[data-mega="destinations"].open .mega-menu {
    transform: none;
  }

  .mega-link-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mega-link-grid a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .mega-link-grid a:last-child {
    border-bottom: none;
  }

  .mega-tabs {
    flex-wrap: wrap;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 12px;
  }

  .mega-view-all-link {
    margin-top: 8px;
  }

  .theme-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .theme-card {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .theme-card:last-child {
    border-bottom: none;
  }

  .theme-card:hover {
    background: transparent;
  }

}

@media (max-width: 600px) {
  :root {
    /* 60px logo + 10px vertical padding either side = 80px header */
    --header-height: 80px;
  }

  .header-mainbar-inner {
    gap: 12px;
    padding: 10px 14px;
  }

  .header-actions {
    gap: 4px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    height: 60px;
  }

  .header-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .header-menu-toggle i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-search {
    display: none;
  }
}

@media (max-width: 360px) {
  .header-mainbar-inner {
    padding: 10px 10px;
    gap: 8px;
  }
}

h2 {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.7rem);
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -.3px;
}

h3 {
  font-size: clamp(1rem, 0.96rem + 0.16vw, 1.1rem);
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: -.2px;
}

p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: clamp(0.68rem, 0.62rem + 0.25vw, 0.85rem);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2px;
}

.section-desc {
  font-size: clamp(0.91rem, 0.894rem + 0.06vw, 0.95rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SKELETON SHIMMER & PROGRESSIVE IMAGE LOADING ===== */
@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.thumb,
.overlay-card,
.stay-hero__image,
.gallery__main,
.gallery__thumb,
.hero-banner {
  background-color: #f1f2f0;
  background-image: linear-gradient(90deg, #f1f2f0 0%, #e5e8e4 50%, #f1f2f0 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 2.2s ease-in-out infinite;
}

/* Progressive smooth ease-in for content images */
.thumb img[loading="lazy"],
.overlay-card img[loading="lazy"],
.stay-hero__image img[loading="lazy"],
.gallery__main img[loading="lazy"],
.gallery__thumb img[loading="lazy"],
.hero-banner img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.thumb img[loading="lazy"].loaded,
.overlay-card img[loading="lazy"].loaded,
.stay-hero__image img[loading="lazy"].loaded,
.gallery__main img[loading="lazy"].loaded,
.gallery__thumb img[loading="lazy"].loaded,
.hero-banner img[loading="lazy"].loaded,
.thumb img:not([loading="lazy"]),
.overlay-card img:not([loading="lazy"]) {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

  .thumb,
  .overlay-card,
  .stay-hero__image,
  .gallery__main,
  .gallery__thumb,
  .hero-banner {
    animation: none;
  }

  .thumb img[loading="lazy"],
  .overlay-card img[loading="lazy"],
  .stay-hero__image img[loading="lazy"],
  .gallery__main img[loading="lazy"],
  .gallery__thumb img[loading="lazy"],
  .hero-banner img[loading="lazy"] {
    transition: none;
    opacity: 1;
  }
}

.overlay-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.overlay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.overlay-card--wide:hover {
  box-shadow: none;
}

.tg-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.tg-panel-head>div:first-child {
  flex: 1;
  min-width: 0;
}

.section-head,
.dmc-section-head {
  margin-bottom: 40px;
}

.tg-panel-head .arrows,
.section-head .arrows {
  margin-left: auto;
}

.tg-panel-head h2,
.tg-panel-head h3,
.section-head h2,
.section-head h3,
.dmc-section-head h2,
.dmc-section-head h3 {
  font-size: clamp(1.3rem, 1.15rem + 0.75vw, 1.75rem);
  margin: 0 0 12px;
}

.tg-panel-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

.section-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.82rem, 0.8rem + 0.05vw, 0.86rem);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

.section-view-all-text {
  position: relative;
  display: inline-block;
}

.section-view-all-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  width: 100%;
  transition: width .2s ease;
}

.section-view-all i {
  font-size: clamp(0.65rem, 0.63rem + 0.08vw, 0.7rem);
  transition: transform .2s ease;
}

.section-view-all:hover,
.section-view-all:focus-visible {
  color: #d96200;
}

.section-view-all:hover .section-view-all-text::after,
.section-view-all:focus-visible .section-view-all-text::after {
  width: calc(100% + 6px + 0.7rem);
}

.section-view-all:hover i,
.section-view-all:focus-visible i {
  transform: translateX(2px);
}

.arrows {
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
}

.arrows:not(.is-visible) {
  display: none;
}

.arrows.is-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease, visibility 0s linear 0s;
}

.arrows button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #e1e4e2;
  cursor: pointer;
  font-size: clamp(1.15rem, 1.11rem + 0.16vw, 1.25rem);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.arrows button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.arrows button:active {
  transform: scale(.92);
}

.tg-tabs>li>button {
  transition: color .2s, border-color .2s;
}

.section-tabs a {
  transition: color .2s, border-color .2s;
}

/* ===== STICKY TABS ===== */
.section-tabs {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: none;
  margin-top: 36px;
  transition: box-shadow 0.2s ease;
}

.section-tabs.is-stuck {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1180px) {
  .section-tabs {
    top: var(--header-height);
    margin-top: 28px;
  }

  .section-tabs ul {
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 32px), transparent 100%);
    mask-image: linear-gradient(to right, black calc(100% - 32px), transparent 100%);
  }
}

@media (max-width: 768px) {
  .section-tabs {
    margin-top: 20px;
  }
}

.section-tabs ul {
  width: calc(100% - 48px);
  max-width: calc(var(--maxw) - 48px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 28px;
  list-style: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .section-tabs ul {
    width: calc(100% - 32px);
    max-width: 100%;
    gap: 22px;
  }
}

.section-tabs ul::-webkit-scrollbar {
  display: none;
}

.section-tabs li {
  flex-shrink: 0;
}

.section-tabs a {
  display: inline-block;
  padding: 14px 0;
  font-size: clamp(0.91rem, 0.894rem + 0.06vw, 0.95rem);
  font-weight: 500;
  color: var(--text);
  position: relative;
  white-space: nowrap;
}

.section-tabs a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background-color .15s ease;
  border-radius: 1px;
}

.section-tabs a:hover::after,
.section-tabs a.active::after {
  background: var(--accent);
}

.section-tabs a:hover,
.section-tabs a.active {
  color: var(--accent);
  border-bottom: none;
}

/* ===== MAIN ===== */
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px 24px 0;
}

body.home main {
  padding-top: 0;
}

.dest-tabs+main {
  padding-top: 48px !important;
}

section {
  margin-bottom: 96px;
  scroll-margin-top: 70px;
}

section:last-child {
  margin-bottom: 0;
}

/* ===== HERO SECTION ===== */
.hero,
.hero--plp {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__bg-img.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .55);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px 0;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== BREADCRUMBS (unified, site-wide) =====
   One component used by every page. Separators are generated in CSS (">")
   so the markup only needs the links + the current-page label. Colour adapts
   to context: light over the dark hero image, muted on the light page-head. */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(0.75rem, 0.72rem + 0.11vw, 0.82rem);
  line-height: 1.4;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs>*:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  opacity: 0.55;
  font-weight: 400;
}

/* Context: over the dark hero image */
.hero__content .breadcrumbs {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

/* Context: on the light page-head band */
.page-head__crumb .breadcrumbs {
  color: var(--muted);
}

.page-head__crumb .breadcrumbs a:hover {
  color: var(--text);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: clamp(0.75rem, 0.73rem + 0.08vw, 0.8rem);
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 3px;
}

.hero__eyebrow .hero__eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: clamp(1.3rem, 0.5rem + 2.9vw, 2.9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: -.5px;
  max-width: 720px;
}

.hero__subtitle {
  font-size: clamp(0.75rem, 0.68rem + 0.35vw, 0.98rem);
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 720px;
}

#hero-rotating {
  transition: opacity .3s ease;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-size: clamp(0.88rem, 0.817rem + 0.21vw, 1rem);
  font-weight: 600;
  transition: background .2s, transform .2s;
}

.hero__cta:hover {
  background: #d96200;
  transform: translateY(-2px);
}

.hero__cta i {
  font-style: normal;
  font-size: clamp(0.86rem, 0.844rem + 0.06vw, 0.9rem);
}

.hero__cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__cta--secondary {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff !important;
}

.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

/* ===== TRANSPARENT HEADER (for hero pages) ===== */
body.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
}

body.home .header-mainbar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

body.home .brand-logo--dark {
  display: none;
}

body.home .brand-logo--light {
  display: block;
}

body.home .primary-nav>ul>li>a,
body.home .primary-nav>ul>li>.mega-trigger {
  color: #fff;
}

body.home .primary-nav>ul>li>a:hover,
body.home .primary-nav>ul>li>.mega-trigger:hover {
  color: var(--accent);
}

body.home .primary-nav .has-mega>.mega-trigger i:not(.nav-drawer-icon) {
  color: rgba(255, 255, 255, .7);
}

body.home .primary-nav .has-mega>.mega-trigger:hover i:not(.nav-drawer-icon) {
  color: var(--accent);
}

body.home .primary-nav .has-mega.open>.mega-trigger {
  color: var(--accent);
}

body.home .primary-nav .has-mega.open>.mega-trigger i:not(.nav-drawer-icon) {
  color: var(--accent);
}

body.home .header-search,
body.home .header-menu-toggle {
  color: #fff;
}

body.home .header-search:hover,
body.home .header-menu-toggle:hover {
  background: rgba(255, 255, 255, .12);
  color: var(--accent);
}

@media (max-width: 1180px) {

  body.home .primary-nav>ul>li>a,
  body.home .primary-nav>ul>li>.mega-trigger {
    color: var(--text);
  }

  body.home .primary-nav>ul>li>a:hover,
  body.home .primary-nav>ul>li>.mega-trigger:hover {
    color: var(--accent);
  }

  body.home .primary-nav .has-mega>.mega-trigger i:not(.nav-drawer-icon) {
    color: var(--muted);
  }

  body.home .primary-nav .has-mega>.mega-trigger:hover i:not(.nav-drawer-icon) {
    color: var(--accent);
  }

  body.home .header-menu-toggle {
    color: #fff;
  }

  body.home .header-menu-toggle:hover {
    background: rgba(255, 255, 255, .12);
    color: var(--accent);
  }
}

.hero__trust-bar {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 2;
  flex-shrink: 0;
  background: rgba(20, 20, 20, .38);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, .25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero__trust-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  text-align: left;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: clamp(0.7rem, 0.643rem + 0.19vw, 0.75rem);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}

.hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  flex-shrink: 0;
}

.hero__trust-icon i {
  font-style: normal;
  font-size: clamp(1.05rem, 1.03rem + 0.08vw, 1.1rem);
  color: var(--accent);
}

.hero__trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.hero__trust-text strong {
  font-size: clamp(0.95rem, 0.93rem + 0.08vw, 1rem);
  font-weight: 600;
  color: #fff;
}

.hero__trust-text span {
  font-size: clamp(0.76rem, 0.744rem + 0.06vw, 0.8rem);
  color: rgba(255, 255, 255, .85);
}

.hero__trust-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .25);
}

@media (max-width: 960px) {
  body.home .header-mainbar {
    border-bottom-color: rgba(255, 255, 255, .1);
  }
}

@media (max-width: 900px) {
  .hero__trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
  }

  .hero__trust-item {
    flex: none;
  }

  .hero__trust-text strong {
    white-space: normal;
  }

  .hero__trust-divider {
    display: none;
  }
}

@media (max-width: 768px) {

  .hero,
  .hero--plp {
    height: auto;
    min-height: 580px;
    overflow: visible;
    margin-bottom: 32px;
  }

  .hero__content {
    max-width: 100%;
    min-height: 580px;
    flex: 0 0 auto;
    padding: 100px 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 640px) {
  .hero__eyebrow {
    font-size: 0.85rem;
  }

  .hero__eyebrow .hero__eyebrow-line {
    display: none;
  }

  .hero__title {
    line-height: 1.3;
  }

  .hero__subtitle {
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .hero__cta-group {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .hero__cta {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 12px 12px;
    font-size: 0.85rem;
    gap: 6px;
    line-height: 1.2;
  }

  .hero__cta--secondary {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .hero__trust-bar-inner {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    padding: 20px 16px 28px;
  }

  .hero__trust-item {
    white-space: normal;
  }

  .hero__trust-divider {
    display: none;
  }
}

@media (max-width: 480px) {

  .hero,
  .hero--plp {
    min-height: 580px;
  }

  .hero__subtitle {
    margin-bottom: 20px;
  }

  .hero__cta-group {
    gap: 6px;
  }

  .hero__cta {
    padding: 10px 6px;
    font-size: 0.72rem;
    white-space: normal;
    gap: 4px;
    line-height: 1.2;
  }

  .hero__cta--secondary {
    padding: 10px 4px;
    gap: 0;
  }

  .hero__cta i {
    font-size: 0.65rem;
  }

  .hero__trust-bar-inner {
    padding: 18px 16px 26px;
  }
}

/* ===== FLAGSHIP STAYS (two-column hero) ===== */
.stay-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.stay-hero__title {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 16px;
}

.stay-hero__accent {
  color: var(--accent);
}

.stay-hero__text .section-desc {
  margin-bottom: 20px;
}

.stay-hero__subtext {
  font-size: clamp(0.92rem, 0.9rem + 0.06vw, 0.96rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  margin-top: 20px;
}

.stay-hero__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  aspect-ratio: 16 / 9;
}

.stay-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.stay-hero__img.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .stay-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding: 32px 0;
}

.logo-marquee--bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* Two track structures are supported:
   1. Legacy flat `.logo-track` — logos listed twice inline, animates -50%.
   2. Group-based `.logo-marquee__track` — logos authored once inside a
      `.logo-marquee__group`, with one aria-hidden duplicate group. The gap
      lives inside each group (internal gap + trailing padding) so two groups
      tile seamlessly and -50% loops perfectly. No per-logo duplication. */
.logo-track,
.logo-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.logo-track {
  gap: 110px;
}

.logo-marquee__track {
  gap: 0;
}

.logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 110px;
  padding-right: 110px;
  flex-shrink: 0;
}

/* Wrappers shrink to the logo so spacing is driven by each logo's natural
   width, not a fixed box. */
.logo-track picture,
.logo-marquee__group picture {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Fixed HEIGHT, natural WIDTH — every logo reads as the same visual size and
   gaps stay even regardless of each logo's aspect ratio.
   brightness(0) flattens every logo (dark, colored, or white-on-transparent)
   to the same solid tone, then opacity sets a uniform grey — so all logos have
   identical contrast and white logos become visible on the light strip. */
.logo-track img,
.logo-marquee__group img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0);
  opacity: .55;
  flex-shrink: 0;
  transition: opacity .25s;
}

.logo-track img:hover,
.logo-marquee__group img:hover {
  opacity: .85;
}

/* Logos delivered on an OPAQUE dark background can't be flattened with
   brightness(0) (the whole rectangle would go black), so invert instead. */
.logo-track img.logo-dark-bg,
.logo-marquee__group img.logo-dark-bg {
  filter: invert(1) grayscale(1);
  opacity: .85;
}

/* Filled/colored emblem badges (not flat wordmarks) would become a solid
   black blob under brightness(0), so keep their detail with grayscale only. */
.logo-track img.logo-badge,
.logo-marquee__group img.logo-badge {
  filter: grayscale(1);
  opacity: .75;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-marquee--reverse .logo-track {
  animation-direction: reverse;
}

.affiliations__desc {
  margin-top: 24px;
}

/* Affiliation/accreditation badges keep their original colors and natural
   proportions instead of the flattened grayscale wordmark treatment used
   for hotel partner logos, since fine print and color contrast matter here. */
#affiliations {
  display: none !important;
}

#affiliations .logo-track {
  gap: 56px;
  animation-duration: 20s;
}

#affiliations .logo-track img {
  height: 80px;
  width: 140px;
  max-width: none;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

#affiliations .logo-track img:hover {
  opacity: .8;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {

  /* Logo marquee mobile overrides */
  .logo-marquee {
    padding: 28px 0;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 48px;
  }

  .logo-track {
    gap: 56px;
  }

  .logo-marquee__group {
    gap: 56px;
    padding-right: 56px;
  }

  .logo-track img,
  .logo-marquee__group img {
    height: 32px;
    max-width: 150px;
  }
}

/* ===== BEYOND WILDLIFE / DMC PROMO ===== */
.dmc-promo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  gap: 0;
  background: #faf8f4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.dmc-promo__image {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.dmc-promo__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dmc-promo__content {
  padding: 48px 56px;
}

.dmc-promo__title {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin: 8px 0 16px;
}

.dmc-promo__content .section-desc {
  margin-bottom: 20px;
}

.dmc-promo__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.dmc-promo__list li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(0.86rem, 0.844rem + 0.06vw, 0.9rem);
  color: var(--text);
}

.dmc-promo__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.dmc-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-size: clamp(0.86rem, 0.844rem + 0.06vw, 0.9rem);
  font-weight: 600;
  transition: background .15s, transform .15s;
}

.dmc-promo__cta:hover {
  background: #b45309;
  transform: translateY(-1px);
}

.dmc-promo__cta i {
  font-style: normal;
  font-size: clamp(0.86rem, 0.844rem + 0.06vw, 0.9rem);
}

@media (max-width: 900px) {
  .dmc-promo {
    grid-template-columns: 1fr;
  }

  .dmc-promo__image {
    aspect-ratio: 16 / 10;
  }

  .dmc-promo__content {
    padding: 32px 24px;
  }

  .dmc-promo__list {
    grid-template-columns: 1fr;
  }
}

/* ===== SLIDER UTILITIES ===== */
.slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 14px 0 24px;
  margin: -14px 0 -24px;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform .4s ease;
  cursor: grab;
}

.slider-track.grabbing {
  cursor: grabbing;
}

.slider-track.cols-3>.img-card,
.slider-track.cols-3>.park-card,
.slider-track.cols-3>.overlay-card {
  min-width: calc(33.333% - 11px);
  max-width: calc(33.333% - 11px);
  flex: 0 0 calc(33.333% - 11px);
}

.slider-track.cols-4>.img-card,
.slider-track.cols-4>.park-card,
.slider-track.cols-4>.overlay-card {
  min-width: calc(25% - 12px);
  max-width: calc(25% - 12px);
  flex: 0 0 calc(25% - 12px);
}

.img-card .body {
  padding: 14px 16px 18px;
}

.img-card .dist {
  font-size: clamp(0.76rem, 0.744rem + 0.06vw, 0.8rem);
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.img-card .dist i {
  font-size: clamp(0.79rem, 0.774rem + 0.06vw, 0.83rem);
  color: var(--accent);
  font-style: normal;
}

/* ===== OVERLAY CARDS ===== */
.overlay-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
  flex: 0 0 calc(25% - 12px);
  min-width: calc(25% - 12px);
  max-width: calc(25% - 12px);
  aspect-ratio: 5 / 6;
}

.overlay-card picture {
  display: contents;
}

.overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.overlay-card:hover img {
  transform: scale(1.04);
}

.overlay-card .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .85) 35%, rgba(0, 0, 0, .55) 70%, transparent 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.overlay-card .overlay-tag,
.img-card .overlay-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: clamp(0.6rem, 0.58rem + 0.05vw, 0.65rem);
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  margin: 0;
  line-height: normal;
  font-family: inherit;
  text-shadow: none;
  opacity: 1;
  letter-spacing: normal;
}

.overlay-card .overlay-tag i,
.img-card .overlay-tag i {
  font-style: normal;
  font-size: clamp(0.66rem, 0.64rem + 0.05vw, 0.7rem);
}

.overlay-card .overlay-title,
.overlay-card a.overlay-title,
a.overlay-card .overlay-title {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: clamp(0.8rem, 0.77rem + 0.1vw, 0.87rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: normal;
  color: #ffffff !important;
}

#other-parks .overlay-card,
#biodiversity .overlay-card,
#destinations .overlay-card,
#destinations-by-city .overlay-card {
  aspect-ratio: 3 / 4.15;
  border-radius: 8px;
}

#packages .overlay-card,
#where-we-operate .overlay-card {
  aspect-ratio: 3 / 3.25;
  border-radius: 8px;
}

/* Removed duplicate #packages and #where-we-operate .overlay-tag rules */

#packages .overlay-text,
#where-we-operate .overlay-text {
  padding: 60px 16px 18px;
}

#packages .overlay-title,
#where-we-operate .overlay-title {
  margin-bottom: 10px;
}

/* Experiences cards — text inside as overlay, moderate horizontal ratio, scoped independently from #packages */
#experiences .overlay-card--wide {
  flex: 0 0 calc(33.333% - 12px);
  min-width: calc(33.333% - 12px);
  max-width: calc(33.333% - 12px);
  aspect-ratio: 4 / 3;
  background: #222;
  box-shadow: none;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

#experiences .overlay-card--wide picture {
  display: contents;
}

#experiences .overlay-card--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#experiences .overlay-card--wide .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .85) 35%, rgba(0, 0, 0, .55) 70%, transparent 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

#experiences .overlay-card--wide .overlay-desc,
#experiences .overlay-card--wide .overlay-tag {
  position: static;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 0;
  border-radius: 0;
  font-size: clamp(0.75rem, 0.73rem + 0.08vw, 0.8rem);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.4;
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#experiences .overlay-card--wide .overlay-title {
  color: inherit;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  #experiences .overlay-card--wide {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 600px) {
  #experiences .overlay-card--wide {
    flex: 0 0 78%;
    min-width: 78%;
    max-width: 78%;
  }
}

/* Removed duplicate #other-parks .overlay-tag rule */

#other-parks .overlay-text {
  padding: 60px 16px 18px;
}

#other-parks .overlay-title {
  margin-bottom: 10px;
}

.overlay-view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.77rem, 0.75rem + 0.08vw, 0.82rem);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s ease;
}

.overlay-view-text {
  position: relative;
  display: inline-block;
}

.overlay-view-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  width: 100%;
  transition: width .2s ease;
}

.overlay-view-link i {
  font-style: normal;
  font-size: clamp(0.69rem, 0.674rem + 0.06vw, 0.73rem);
  transition: transform .2s ease, color .2s ease;
}

.overlay-view-link:hover,
.overlay-view-link:focus-visible {
  color: var(--accent);
}

.overlay-view-link:hover .overlay-view-text::after,
.overlay-view-link:focus-visible .overlay-view-text::after {
  width: calc(100% + 6px + 0.73rem);
}

.overlay-view-link:hover i,
.overlay-view-link:focus-visible i {
  transform: translateX(2px);
}

@media (max-width: 900px) {

  .overlay-card,
  .slider-track.cols-3>.overlay-card,
  .slider-track.cols-4>.overlay-card {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}

@media (max-width: 600px) {

  .overlay-card,
  .slider-track.cols-3>.overlay-card,
  .slider-track.cols-4>.overlay-card {
    flex: 0 0 78%;
    min-width: 78%;
    max-width: 78%;
    aspect-ratio: 3 / 3.85;
  }

  #packages .overlay-card {
    aspect-ratio: 3 / 3.05;
  }

  /* Increase font sizes for mobile card badge and button */
  .overlay-card .overlay-tag,
  .img-card .overlay-tag {
    font-size: 0.8rem;
  }

  .overlay-card .overlay-tag i,
  .img-card .overlay-tag i {
    font-size: 0.88rem;
  }

  .overlay-title {
    font-size: 0.92rem;
  }

  .overlay-view-link {
    font-size: 0.8rem;
  }

  .overlay-view-link i {
    font-size: 0.72rem;
  }
}

/* ===== FAQ ===== */
.faq-list {
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.faq-list details {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 18px 0;
  margin: 0;
  background: transparent;
  transition: background .2s;
}

.faq-list details:hover {
  background: #f8f9f7;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.9rem, 0.88rem + 0.08vw, 0.98rem);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-list summary h1,
.faq-list summary h2,
.faq-list summary h3,
.faq-list summary h4,
.faq-list summary h5,
.faq-list summary h6 {
  display: inline;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: clamp(1.3rem, 1.26rem + 0.16vw, 1.4rem);
  color: var(--muted);
  font-weight: 400;
  transition: transform .3s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list details .faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease, padding .3s ease;
  padding-top: 0;
}

.faq-list details[open] .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 12px;
}

.faq-list details p {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(0.85rem, 0.818rem + 0.13vw, 0.93rem);
  line-height: 1.6;
}


/* ===== SAFARI CTA PREFOOTER ===== */
.safari-cta {
  position: relative;
  z-index: 1;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 96px;
  margin-bottom: 0;
  background: #141414;
  padding: 72px 0 40px;
  color: #fff;
}

/* Remove gap between last section and this CTA, and kill main's bottom padding */

body.home main {
  padding-bottom: 0;
}

.safari-cta__main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.safari-cta__left .eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}

.safari-cta__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.safari-cta__desc {
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  max-width: 460px;
}

.safari-cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.safari-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: clamp(0.88rem, 0.9vw, 0.95rem);
  font-weight: 600;
  transition: background .2s, transform .2s, border-color .2s;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.safari-cta__btn i {
  font-style: normal;
}

.safari-cta__btn--primary {
  background: var(--accent);
  color: #fff;
}

.safari-cta__btn--primary:hover {
  background: #d96200;
  transform: translateY(-2px);
  color: #fff;
}

.safari-cta__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

.safari-cta__btn--ghost:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.safari-cta__btn--whatsapp {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

.safari-cta__btn--whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
  background: rgba(37, 211, 102, .06);
}

.safari-cta__note {
  font-size: clamp(0.75rem, 0.8vw, 0.82rem);
  color: rgba(255, 255, 255, .45);
  font-style: italic;
  text-align: center;
  width: 100%;
  margin-top: 2px;
}

.safari-cta__divider {
  max-width: var(--maxw);
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.safari-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.86rem, 0.844rem + 0.06vw, 0.9rem);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

.safari-cta__link-text {
  position: relative;
  display: inline-block;
}

.safari-cta__link-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  width: 100%;
  transition: width .2s ease;
}

.safari-cta__link i {
  font-size: clamp(0.65rem, 0.63rem + 0.08vw, 0.7rem);
  color: var(--accent);
  transition: transform .2s ease;
}

.safari-cta__link:hover,
.safari-cta__link:focus-visible {
  color: var(--accent);
}

.safari-cta__link:hover .safari-cta__link-text::after,
.safari-cta__link:focus-visible .safari-cta__link-text::after {
  width: calc(100% + 6px + 0.75rem);
}

.safari-cta__link:hover i,
.safari-cta__link:focus-visible i {
  transform: translateX(2px);
}

.safari-cta__footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.safari-cta__footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.safari-cta__footer-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}

.safari-cta__footer-icon i {
  font-style: normal;
}

.safari-cta__footer-left strong {
  display: block;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #fff;
  margin-bottom: 3px;
}

.safari-cta__footer-left p {
  font-size: clamp(0.78rem, 0.85vw, 0.85rem);
  color: rgba(255, 255, 255, .55);
  margin: 0;
}

@media (max-width: 900px) {
  .safari-cta__main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px 48px;
  }

  .safari-cta__desc {
    max-width: 100%;
  }

  .safari-cta__footer {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 16px;
  }

  .safari-cta__footer-icon {
    display: none;
  }

  .safari-cta__footer-left {
    gap: 0;
  }

  .safari-cta__footer .safari-cta__link {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .safari-cta {
    max-width: 100%;
    padding: 48px 0 0;
    margin-top: 48px;
  }

  .safari-cta__main {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 36px;
  }

  .safari-cta__desc {
    max-width: 100%;
  }

  .safari-cta__divider {
    max-width: 100%;
    margin: 0 20px;
  }

  .safari-cta__footer {
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px;
    gap: 16px;
  }

  .safari-cta__footer-icon {
    display: none;
  }

  .safari-cta__footer-left {
    gap: 0;
  }

  .safari-cta__footer .safari-cta__link {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .safari-cta {
    padding: 36px 0 0;
  }

  .safari-cta__main {
    padding: 0 16px 28px;
  }

  .safari-cta__footer {
    padding: 16px 16px;
  }
}

/* ===== GLOBAL FOOTER ===== */
.site-footer {
  background: #141414;
  color: #c9c9c9;
  font-size: clamp(0.86rem, 0.844rem + 0.06vw, 0.9rem);
  margin-top: 0;
}

.site-footer a {
  color: #c9c9c9;
  transition: color .15s;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px 28px;
}

/* Package tabs */
.fp-tabs {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  border-bottom: 1px solid #2e2e2e;
  flex-wrap: wrap;
}

.fp-tabs button {
  background: none;
  border: none;
  font: inherit;
  padding: 10px 0;
  cursor: pointer;
  color: #9a9a9a;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-size: clamp(0.9rem, 0.88rem + 0.08vw, 0.95rem);
  font-weight: 600;
  transition: color .2s, border-color .2s;
}

.fp-tabs button:hover {
  color: #fff;
}

.fp-tabs button.active {
  color: #fff;
  border-bottom-color: #fff;
}

.fp-panel {
  display: none;
  padding: 18px 0 28px;
}

.fp-panel.active {
  display: block;
  columns: 200px 4;
  column-gap: 28px;
}

.fp-panel.active a {
  display: block;
  break-inside: avoid;
}

.fp-panel a {
  font-size: clamp(0.81rem, 0.794rem + 0.06vw, 0.85rem);
  color: #b8b8b8;
  line-height: 2;
  text-decoration: none;
  transition: color .2s ease;
}

.fp-link-text {
  position: relative;
  display: inline-block;
}

.fp-link-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.fp-panel a:not(.fp-panel-view-all):hover,
.fp-panel a:not(.fp-panel-view-all):focus-visible {
  color: var(--accent);
}

.fp-panel a:not(.fp-panel-view-all):hover .fp-link-text::after,
.fp-panel a:not(.fp-panel-view-all):focus-visible .fp-link-text::after {
  transform: scaleX(1);
}

.fp-panel a.fp-panel-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.78rem, 0.764rem + 0.06vw, 0.82rem);
  font-weight: 600;
  line-height: 1.2;
  padding: 4px 0;
  text-decoration: none;
  color: var(--accent);
  transition: color .2s ease;
}

.fp-view-all-text {
  position: relative;
  display: inline-block;
}

.fp-view-all-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  width: 100%;
  transition: width .2s ease;
}

.fp-panel a.fp-panel-view-all i {
  font-size: clamp(0.67rem, 0.658rem + 0.05vw, 0.7rem);
  transition: transform .2s ease;
}

.fp-panel a.fp-panel-view-all:hover,
.fp-panel a.fp-panel-view-all:focus-visible {
  color: #d96200;
}

.fp-panel a.fp-panel-view-all:hover .fp-view-all-text::after,
.fp-panel a.fp-panel-view-all:focus-visible .fp-view-all-text::after {
  width: calc(100% + 6px + .7rem);
}

.fp-panel a.fp-panel-view-all:hover i,
.fp-panel a.fp-panel-view-all:focus-visible i {
  transform: translateX(2px);
}

/* Link columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 24px 0 32px;
  border-top: 1px solid #2e2e2e;
}

.footer-col h4 {
  color: #fff;
  font-size: clamp(0.91rem, 0.894rem + 0.06vw, 0.95rem);
  font-weight: 700;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: clamp(0.81rem, 0.794rem + 0.06vw, 0.85rem);
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-right: 14px;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-col a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-2px, -50%) rotate(-45deg);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-link-text {
  position: relative;
  display: inline-block;
}

.footer-link-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-col a:hover .footer-link-text::after,
.footer-col a:focus-visible .footer-link-text::after {
  transform: scaleX(1);
}

.footer-col a:hover::after {
  opacity: 1;
  transform: translate(2px, -50%) rotate(-45deg);
}

.footer-col a i {
  font-style: normal;
  font-size: clamp(0.95rem, 0.93rem + 0.08vw, 1rem);
  color: #9a9a9a;
}

.footer-col a:hover i {
  color: var(--accent);
}

.footer-col a.warn {
  color: var(--accent);
}

.footer-col a.warn i {
  color: var(--accent);
}

.footer-col a.warn:hover {
  color: #ff8a3d;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #2e2e2e;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 48px;
  max-width: 100%;
}

.footer-copy {
  color: #8a8a8a;
  font-size: clamp(0.75rem, 0.722rem + 0.11vw, 0.82rem);
}

/* Mobile */
@media (max-width: 900px) {
  .footer-cols {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    max-width: 100%;
    padding: 32px 16px 24px;
  }

  .footer-packages {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }

  .fp-tabs {
    display: contents;
  }

  .fp-tabs li {
    display: contents;
  }

  .fp-tabs button[data-fp="wildlife"] {
    order: 1;
  }

  #fp-wildlife {
    order: 2;
  }

  .fp-tabs button[data-fp="theme"] {
    order: 3;
  }

  #fp-theme {
    order: 4;
  }

  .fp-tabs button {
    width: 100%;
    text-align: left;
    white-space: normal;
    padding: 14px 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid #2e2e2e;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .fp-tabs button.active {
    border-bottom-color: #2e2e2e;
  }

  .fp-tabs button::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 4px;
    transition: transform .2s;
  }

  .fp-tabs button.active::after {
    transform: rotate(-135deg);
    margin-bottom: 4px;
  }

  .fp-panel {
    padding: 0;
    border-bottom: 1px solid #2e2e2e;
  }

  .fp-panel.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    padding: 10px 0 14px;
  }

  .fp-panel a {
    line-height: 1.9;
    padding: 4px 0;
  }

  .fp-panel a.fp-panel-view-all {
    grid-column: 1 / -1;
    justify-self: start;
    width: auto;
    margin-top: 10px;
  }

  .footer-cols {
    border-top: none;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px 16px;
  }

  .footer-bottom .footer-copy {
    text-align: right;
  }
}

@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 20px 16px;
  }
}

@media (max-width: 400px) {
  .footer-inner {
    padding: 28px 12px 20px;
  }

  .fp-panel.active {
    gap: 4px 10px;
  }

  .footer-bottom {
    gap: 10px 12px;
  }
}

/* ===== KEYBOARD ACCESSIBILITY ===== */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-tabs a:focus-visible,
.tg-tabs>li>button:focus-visible {
  outline-offset: -2px;
}

.arrows button:focus-visible {
  outline-offset: 2px;
}

/* ===== TABLET OPTIMIZATION ===== */
@media (max-width: 1024px) {
  section {
    margin-bottom: 80px;
  }

  .tg-panel-head {
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 28px;
  }

  .tg-panel-head>div:first-child {
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  main {
    padding: 36px 0 0;
    max-width: 100%;
  }

  body.home main {
    padding-top: 0;
  }

  section {
    margin-bottom: 64px;
    padding: 0 16px;
  }

  /* Panel heads */
  .tg-panel-head {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .tg-panel-head>div:first-child {
    max-width: 100%;
  }

  .tg-panel-actions {
    margin-left: 0;
  }

  /* Arrows are desktop-only; remove them from the layout on mobile so they
     don't reserve empty space inside the panel head. */
  .arrows {
    display: none;
  }

  /* Collapse panel heads that exist only to hold the (now removed) arrows. */
  .tg-panel-head:not(:has(h2, h3, .eyebrow, p)) {
    display: none;
  }

  /* Slider container native horizontal scroll on mobile */
  .slider-wrap {
    overflow: auto !important;
    overflow-y: clip !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 16px;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -8px;
    margin-bottom: -16px;
    width: calc(100% + 32px);
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
  }

  .slider-wrap::-webkit-scrollbar {
    display: none;
  }

  .slider-track {
    cursor: auto;
    gap: 14px;
    padding: 0 16px;
  }

  .slider-track>* {
    scroll-snap-align: start;
  }

  .overlay-card {
    aspect-ratio: 1/1;
  }

  #other-parks .overlay-card,
  #other-parks-secondary .overlay-card {
    aspect-ratio: 3/4;
  }


}

/* Small phones */
@media (max-width: 400px) {
  main {
    padding: 28px 0 0;
  }

  section {
    padding: 0 12px;
  }

  .overlay-card .overlay-text {
    padding: 16px 16px 18px;
  }

  .slider-wrap {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
    scroll-padding-left: 12px;
  }

  .slider-track {
    padding: 0 12px;
  }
}

/* Removed duplicated other-parks-small-variant overlay-tag rules */

.other-parks-small-variant .overlay-view-link,
#packages .overlay-view-link {
  font-size: clamp(0.66rem, 0.64rem + 0.05vw, 0.72rem) !important;
  gap: 4px !important;
}

.other-parks-small-variant .overlay-view-link i,
#packages .overlay-view-link i {
  font-size: clamp(0.58rem, 0.56rem + 0.04vw, 0.62rem) !important;
}

.other-parks-small-variant .overlay-view-link:hover .overlay-view-text::after,
.other-parks-small-variant .overlay-view-link:focus-visible .overlay-view-text::after,
#packages .overlay-view-link:hover .overlay-view-text::after,
#packages .overlay-view-link:focus-visible .overlay-view-text::after {
  width: calc(100% + 4px + 0.6rem) !important;
}

@media (max-width: 600px) {

  .overlay-card .overlay-tag,
  .img-card .overlay-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .overlay-card .overlay-tag i,
  .img-card .overlay-tag i {
    font-size: 0.88rem;
  }

  .other-parks-small-variant .overlay-title,
  #packages .overlay-title {
    font-size: 0.92rem !important;
  }

  .other-parks-small-variant .overlay-view-link,
  #packages .overlay-view-link {
    font-size: 0.8rem !important;
  }

  .other-parks-small-variant .overlay-view-link i,
  #packages .overlay-view-link i {
    font-size: 0.72rem !important;
  }
}

/* ===== PRINT ===== */
@media print {

  .section-tabs,
  .arrows,
  .gallery-btn {
    display: none !important;
  }

  .slider-wrap {
    overflow: visible;
  }

  .slider-track {
    flex-wrap: wrap;
    transform: none !important;
    cursor: auto;
  }

  .slider-track .img-card,
  .slider-track .overlay-card {
    min-width: 48% !important;
    max-width: 48% !important;
    margin-bottom: 12px;
  }

  .tg-panel {
    display: block !important;
  }

  .reveal {
    opacity: 1 !important;
    margin-left: 0;
  }

  .logo-marquee {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }
}

/* ===== RESPONSIVE SLIDER & OVERLAYS ===== */
@media (max-width: 768px) {

  /* Arrows are desktop-only; remove them from the layout on mobile so they
     don't reserve empty space inside the panel head. */
  .arrows {
    display: none;
  }

  /* Collapse panel heads that exist only to hold the (now removed) arrows. */
  .tg-panel-head:not(:has(h2, h3, .eyebrow, p)) {
    display: none;
  }

  /* Slider container native horizontal scroll on mobile */
  .slider-wrap {
    overflow: auto !important;
    overflow-y: clip !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 16px;
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -8px;
    margin-bottom: -16px;
    width: calc(100% + 32px);
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
  }

  .slider-wrap::-webkit-scrollbar {
    display: none;
  }

  .slider-track {
    cursor: auto;
    gap: 14px;
    padding: 0 16px;
  }

  .slider-track>* {
    scroll-snap-align: start;
  }

  .overlay-card {
    aspect-ratio: 1/1;
  }

  #other-parks .overlay-card,
  #other-parks-secondary .overlay-card {
    aspect-ratio: 3/4;
  }


}

/* Small phones */
@media (max-width: 400px) {
  main {
    padding: 28px 0 0;
  }

  section {
    padding: 0 12px;
  }

  .overlay-card .overlay-text {
    padding: 16px 16px 18px;
  }

  .slider-wrap {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
    scroll-padding-left: 12px;
  }

  .slider-track {
    padding: 0 12px;
  }
}

/* ===== REGION & STATE INTERNAL LINKS ===== */
.region-links-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.region-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #ffffff;
  color: var(--text);
  font-size: clamp(0.88rem, 0.82rem + 0.18vw, 0.95rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #e1e6e2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center;
  white-space: nowrap;
}

.region-link-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 112, 2, 0.22);
}

.region-links-heading {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}

@media (max-width: 992px) {
  .region-links-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .region-link-btn {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .region-links-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .region-link-btn {
    padding: 13px 16px;
    font-size: 0.88rem;
    line-height: 1.3;
    border-radius: 10px;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    white-space: normal;
  }

  .region-links-heading {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTON (EXPANDED PILL -> ROUND ICON ON SCROLL)
   ========================================================================== */

/* ==========================================================================
   WILD ENTHUSIAST — 3-OPTION FLOATING ACTION POPUP WIDGET
   ========================================================================== */

.we-floating-widget {
  position: fixed;
  bottom: 48px;
  right: 26px;
  z-index: 995;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

.we-floating-widget * {
  box-sizing: border-box;
}

/* 1. The Popup Action Card */
.we-floating-card {
  pointer-events: none;
  width: 350px;
  max-width: calc(100vw - 36px);
  background: #ffffff;
  border: 1px solid #e5e7e2;
  border-radius: 18px;
  box-shadow:
    0 18px 44px -6px rgba(0, 0, 0, 0.16),
    0 4px 14px -2px rgba(0, 0, 0, 0.06);
  padding: 6px 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition:
    opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.28s;
}

.we-floating-card.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Option Rows */
.we-floating-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  text-decoration: none;
  border-bottom: 1px solid #f1f4f0;
  transition: background 0.2s ease;
  cursor: pointer;
  color: inherit;
}

.we-floating-item:last-child {
  border-bottom: none;
}

.we-floating-item:hover {
  background: #fafbf9;
}

/* Icon Badges */
.we-floating-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  transition: transform 0.22s ease;
}

.we-floating-item:hover .we-floating-item__icon {
  transform: scale(1.08);
}

.we-floating-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.we-floating-item__icon--call,
.we-floating-item__icon--expert {
  background: #1a1f1c;
  box-shadow: 0 4px 12px -2px rgba(26, 31, 28, 0.35);
}

.we-floating-item__icon--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 12px -2px rgba(37, 211, 102, 0.35);
}

.we-floating-item__icon--request {
  background: linear-gradient(135deg, #ff7e1d 0%, #f37002 100%);
  box-shadow: 0 4px 12px -2px rgba(243, 112, 2, 0.4);
}

/* Text Content */
.we-floating-item__content {
  flex: 1;
  min-width: 0;
}

.we-floating-item__title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #1a1f1c;
  margin-bottom: 2px;
  line-height: 1.25;
}

.we-floating-item__desc {
  font-size: 0.75rem;
  line-height: 1.35;
  color: #5c6b64;
  white-space: normal;
}

/* Arrow Chevron */
.we-floating-item__arrow {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), color 0.22s ease;
}

.we-floating-item__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.we-floating-item:hover .we-floating-item__arrow {
  transform: translateX(4px);
  color: #f37002;
}

/* 2. Floating Trigger Button */
.we-floating-trigger {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  min-width: 48px;
  padding: 0 20px 0 16px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ff7e1d 0%, #f37002 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 22px -3px rgba(243, 112, 2, 0.45),
    0 3px 8px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  outline: none;
  user-select: none;
  overflow: hidden;
  transition:
    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    gap 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease,
    background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.we-floating-trigger:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px -3px rgba(243, 112, 2, 0.55),
    0 4px 12px -1px rgba(0, 0, 0, 0.12);
}

.we-floating-trigger__icon-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-floating-trigger__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.we-floating-trigger__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.we-floating-trigger__icon--open {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.we-floating-trigger__icon--close {
  opacity: 0;
  transform: scale(0.4) rotate(-90deg);
}

.we-floating-trigger__text {
  display: inline-block;
  white-space: nowrap;
  max-width: 160px;
  opacity: 1;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
  overflow: hidden;
  transform-origin: left center;
  transform: scaleX(1);
  transition:
    max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Open State of Trigger (Morphs into Dark Close Button) */
.we-floating-trigger.is-open {
  padding: 0 14px;
  gap: 0;
  border-radius: 50%;
  background: #1a1f1c;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.we-floating-trigger.is-open .we-floating-trigger__text {
  max-width: 0;
  opacity: 0;
  transform: scaleX(0.3);
}

.we-floating-trigger.is-open .we-floating-trigger__icon--open {
  opacity: 0;
  transform: scale(0.4) rotate(90deg);
}

.we-floating-trigger.is-open .we-floating-trigger__icon--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Mobile Scroll Contraction (Smooth pill -> circle morph) */
@media (max-width: 768px) {
  .we-floating-widget {
    bottom: 38px;
    right: 20px;
  }

  .we-floating-card {
    width: calc(100vw - 40px);
  }

  .we-floating-trigger.is-contracted:not(.is-open) {
    padding: 0 14px;
    gap: 0;
    border-radius: 50%;
  }

  .we-floating-trigger.is-contracted:not(.is-open) .we-floating-trigger__text {
    max-width: 0;
    opacity: 0;
    transform: scaleX(0.3);
  }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes floatBtnFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes safariBtnRipple {
  to {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  .floating-safari-btn {
    bottom: 20px;
    right: 18px;
    height: 42px;
    min-width: 42px;
    padding: 0 16px 0 12px;
    font-size: 0.8125rem;
  }

  .floating-safari-btn.is-scrolled {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .floating-btn__icon {
    width: 18px;
    height: 18px;
  }

  .floating-btn__icon svg {
    width: 18px;
    height: 18px;
  }
}