.elementor-958 .elementor-element.elementor-element-38e09eb{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-03e928d */:root {
  --accent:      #d98a3d;
  --accent-soft: #f0a85a;
  --bg:          #ffffff;
  --text:        #1a1a1a;
  --muted:       #8a8a8a;
  --shadow:      0 2px 12px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.18);
  --radius:      14px;
  --header-h:    54px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; height: 100%;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/*#map {*/
/*  position: absolute;*/
/*  top: var(--header-h); left: 0; right: 0; bottom: 0;*/
/*  z-index: 21;*/
/*}*/

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
/*.site-header {*/
/*  position: absolute;*/
/*  top: 0; left: 0; right: 0;*/
/*  z-index: 20;*/
/*  background: #1D252C;*/
/*}*/

/* Categories row */
.site-header__cats {
  display: flex; align-items: center; gap: 8px;
  height: 54px;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-header__cats::-webkit-scrollbar { display: none; }

.cat-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  border-radius: 5px;
  padding: 8px 20px;
  font-size: 13px; font-weight: 500; font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s, background .15s, color .15s;
}
.cat-btn:hover { border-color: rgba(255,255,255,.7); }
.cat-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff; font-weight: 600;
}

/* ─────────────────────────────────────────
   CLUSTER MARKER
───────────────────────────────────────── */
.cluster {
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cluster:hover {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
}
.cluster--sm { width: 36px; height: 36px; font-size: 13px; }
.cluster--md { width: 46px; height: 46px; font-size: 15px; }
.cluster--lg { width: 56px; height: 56px; font-size: 17px; }

/* ─────────────────────────────────────────
   MARKER
───────────────────────────────────────── */
.marker {
  display: flex; align-items: flex-start; gap: 0;
  cursor: pointer;
  transition: transform .12s ease;
}
.marker:hover {
  transform: scale(1.05);
  z-index: 100 !important;
}
.marker--active {
  z-index: 101 !important;
}
.marker--active .marker__dot {
  background: #1D252C;
}
.marker--active .marker__info {
  background: #1D252C;
  border-color: #1D252C;
}
.marker--active .marker__name {
  color: #fff;
}

.marker__dot {
  width: 19px; height: 19px;
  border-radius: 5px;
  background: #C97D31;
  flex: 0 0 auto;
}

.marker__info {
  display: flex; align-items: center; gap: 8px;
  padding: 10px;
  border: 1px solid #C97D31;
  border-radius: 5px;
  background: #FFFFFF1A;
  margin-left: -1px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.marker__logo {
  width: 28px; height: 28px;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.marker__logo img { width: 100%; height: 100%; object-fit: contain; }

.marker__name {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
}

/* Prevent Mapbox marker containers from animating position during zoom */
.mapboxgl-marker {
  transition: none !important;
  will-change: transform;
}

/* ─────────────────────────────────────────
   HUB
───────────────────────────────────────── */
.hub {
  position: relative;
  width: 54px; height: 54px; border-radius: 12px;
  background: #1c1c1c; color: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.hub .marker__info {
  position: absolute;
  top: 0;
  left: 54px;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   MODAL
───────────────────────────────────────── */
.modal {
  position: absolute;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  z-index: 15;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity .2s ease;
}
.modal.is-open { pointer-events: all; opacity: 1; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(3px);
}

.modal__card {
  position: relative; z-index: 1;
  background: var(--bg); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 28px 28px; width: 300px;
  text-align: center;
  transform: translateY(14px) scale(.96);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1);
}
.modal.is-open .modal__card { transform: none; }

.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 0; background: #f0f0f0; cursor: pointer;
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .12s;
}
.modal__close:hover { background: #e0e0e0; color: var(--text); }

.modal__logo {
  width: 80px; height: 80px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; letter-spacing: .5px;
  color: #fff; margin: 0 auto 20px; overflow: hidden;
}
.modal__logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

.modal__title { margin: 0 0 6px; font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.3; }
.modal__subtitle { margin: 0 0 12px; font-size: 13px; color: var(--muted); }

.modal__meta {
  margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
}
.modal__meta-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--muted); line-height: 1.4;
}
.modal__meta-icon { flex: 0 0 14px; margin-top: 1px; opacity: .6; }
.modal__meta-row a { color: var(--text); text-decoration: none; }
.modal__meta-row a:hover { text-decoration: underline; }

.modal__btn {
  display: block; background: var(--text); color: #fff;
  text-decoration: none; border-radius: 10px;
  padding: 14px; font-size: 14px; font-weight: 600;
  transition: background .15s;
}
.modal__btn:hover { background: #333; }

/* ─────────────────────────────────────────
   POI POPUP (above/below marker)
───────────────────────────────────────── */
.mapboxgl-popup {
  z-index: 12;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip { border-top-color: #FFFFFF80; }
.mapboxgl-popup-anchor-top .mapboxgl-popup-tip { border-bottom-color: #FFFFFF80; }

.mapboxgl-popup-content {
  border-radius: 12px !important;
  background: #FFFFFF80 !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0px 0px 15px 0px #00000033 !important;
  padding: 16px !important;
  width: 280px !important;
  box-sizing: border-box;
}
.mapboxgl-popup-close-button {
  font-size: 18px;
  padding: 4px 10px;
  color: var(--muted);
}
.mapboxgl-popup-close-button:hover { color: var(--text); }

.poi-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.poi-popup__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.poi-popup__logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; letter-spacing: .5px;
  color: var(--text);
  flex: 0 0 auto;
  background: transparent !important;
}
.poi-popup__logo img {
  width: 100%; height: 100%; object-fit: contain;
}

.poi-popup__subtitle {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
}

.poi-popup__meta {
  display: flex; flex-direction: column; gap: 5px;
  margin: 0 0 12px;
}
.poi-popup__meta-row {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 11px; color: var(--muted); line-height: 1.4;
}
.poi-popup__meta-row a { color: var(--text); text-decoration: none; }
.poi-popup__meta-row a:hover { text-decoration: underline; }

.poi-popup__btn {
  display: block; background: var(--text); color: #fff;
  text-decoration: none; border-radius: 8px;
  padding: 10px; font-size: 12px; font-weight: 600;
  text-align: center;
  width: 152px;
  margin: 0 auto;
  transition: background .15s;
}
.poi-popup__btn:hover { background: #333; }

/* ─────────────────────────────────────────
   PILLS (bottom controls)
───────────────────────────────────────── */
.pill {
  position: absolute; bottom: 22px;
  display: flex; align-items: center;
  border-radius: 999px;
  padding: 0;
  z-index: 10;
}
.pill--right { right: 22px; }

.pill button {
  border: 0; background: transparent; cursor: pointer;
  padding: 10px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 400; font-family: inherit;
  transition: background .12s, color .12s;
}

/* viewPill — gold border, transparent bg, active = gold bg + dark text */
.pill--right {
  background: transparent;
  border: 1.5px solid #C97D31;
  box-shadow: none;
}
.pill--right button {
  color: #C97D31;
  padding: 10px 20px;
}
.pill--right button.is-active {
  background: #C97D31;
  color: #1D252C;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   LIST VIEW
───────────────────────────────────────── */
#listView {
  position: absolute;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: #1D252C;
  padding: 48px 56px;
  overflow: auto; z-index: 8; display: none;
}
#listView.is-visible { display: block; }

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 56px;
  align-items: start;
}

.list-col__title {
  font-size: 14px; font-weight: 700; letter-spacing: .2px;
  color: var(--accent);
  margin: 0 0 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.list-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: opacity .15s;
}
.list-item:hover { opacity: .7; }
.list-item:last-child { border-bottom: none; }

.list-item__logo {
  width: 25px; height: 25px; border-radius: 5px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px; letter-spacing: .3px;
  color: #fff; overflow: hidden; background: #fff;
}
.list-item__logo img { width: 100%; height: 100%; object-fit: contain; }

.list-item__info { flex: 1; min-width: 0; }
.list-item__name { font-size: 18px; font-weight: 600; line-height: 1.25; color: #fff; margin: 0 0 4px; }
.list-item__subtitle { font-size: 13px; color: rgba(255,255,255,.4); margin: 0; }/* End custom CSS */