@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,500;0,8..60,600;0,8..60,700&display=swap");

:root {
  --gold: #C1121F;
  --gold-dark: #8F0D17;
  --dark: #111827;
  --text: #111827;
  --muted: #5B6472;
  --bg: #F8F9FB;
  --card: #ffffff;
  --border: #E5E7EB;
  --wa: #25D366;
  --wa-hover: #1DA851;
  --nav-height: 76px;
  --ipk-navy: #111827;
  --ipk-navy-mid: #1f2937;
  --ipk-slate: #374151;
  --ipk-charcoal: #111827;
  --ipk-text: #111827;
  --ipk-text-muted: #5B6472;
  --ipk-border: #E5E7EB;
  --ipk-accent: #C1121F;
  --ipk-accent-hover: #8F0D17;
  --ipk-gold: #D4AF37;
  --ipk-gold-hover: #E6C75A;
  --ipk-gold-text: #B8860B;
  --ipk-gold-light: #FFF8E7;
  --ipk-gold-soft: rgba(212, 175, 55, 0.08);
  --ipk-red-light: #FFF8E7;
  --ipk-ring: rgba(212, 175, 55, 0.22);
  --ipk-radius: 16px;
  --ipk-radius-sm: 10px;
  --ipk-shadow: 0 4px 24px rgba(12, 25, 41, 0.07);
  --ipk-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  overflow-y: auto;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

iframe,
video,
canvas,
svg {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.mobile-menu-backdrop {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
  background: transparent;
}

/* HEADER — flex layout; hamburger below 1180px */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: var(--font-sans);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--ipk-border);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.25s var(--ipk-ease);
}

.topbar.is-scrolled {
  box-shadow: var(--ipk-shadow);
}

.header-inner,
.topbar .container.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 24px;
  width: min(1320px, calc(100% - 32px));
  max-width: 1320px;
  min-height: 72px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.nav {
  min-height: 0;
}

.logo-wrap,
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  flex: 0 0 250px;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  text-decoration: none;
  color: inherit;
  z-index: 2;
  overflow: hidden;
}

.brand-mark {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

.site-logo,
.brand-mark img {
  width: auto !important;
  height: auto !important;
  max-width: 96px !important;
  max-height: 48px !important;
  object-fit: contain;
  border-radius: 0 !important;
  background: transparent !important;
}

.brand-text {
  line-height: 1.05;
  min-width: 0;
}

.brand-subtitle,
.brand-text small {
  display: none;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ipk-text-muted);
}

.brand-title,
.brand-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ipk-navy);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar .mobile-toggle,
.mobile-menu-toggle {
  display: none;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.main-nav,
.nav-shell,
.desktop-nav {
  display: none;
  flex: 1 1 0;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.header-actions,
.topbar .nav-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  flex-shrink: 0;
  gap: 10px;
  margin-left: auto;
  white-space: nowrap;
}

.topbar .nav-actions .btn-outline,
.topbar .nav-actions .btn-primary,
.header-actions .btn-outline,
.header-actions .btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 9px 14px;
  font-size: 0.8125rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-link,
.drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--ipk-charcoal);
  font-size: 0.875rem;
  white-space: nowrap;
  border-radius: var(--ipk-radius-sm);
  transition: background 0.2s var(--ipk-ease), color 0.2s var(--ipk-ease);
  font-family: var(--font-sans);
}

.nav-link:hover,
.drop-btn:hover {
  background: var(--ipk-gold-light);
  color: var(--ipk-gold-text);
}

.nav-link.is-active,
.drop-btn.is-active,
.nav-link[aria-current="page"],
.drop-btn[aria-current="page"],
.dropdown.open > .drop-btn {
  background: var(--ipk-gold-light);
  color: var(--ipk-gold-text);
}

/* Gold-highlight nav CTAs: Properties + Industrial Map */
.nav-cta,
.drop-btn.nav-cta {
  background: #fff4cc;
  border: 1px solid #e5b800;
  color: #111827;
  font-weight: 700;
  border-radius: 12px;
}

.nav-link.nav-cta:hover,
.drop-btn.nav-cta:hover {
  background: #ffe89a;
  color: #111827;
}

.nav-link.nav-cta.is-active,
.drop-btn.nav-cta.is-active,
.nav-link.nav-cta[aria-current="page"],
.drop-btn.nav-cta[aria-current="page"],
.dropdown.open > .drop-btn.nav-cta {
  background: #ffe89a;
  border-color: #e5b800;
  color: #111827;
}

.nav-cta--map {
  box-shadow: 0 2px 10px rgba(229, 184, 0, 0.28);
  gap: 8px;
}

.nav-cta--map:hover {
  box-shadow: 0 4px 14px rgba(229, 184, 0, 0.38);
  transform: translateY(-1px);
}

.nav-cta__icon {
  flex-shrink: 0;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta--map:hover {
    transform: none;
  }
}

.drop-btn::after {
  content: "▾";
  font-size: 11px;
  color: var(--ipk-text-muted);
  margin-left: 4px;
  font-weight: 700;
  transition: transform 0.2s var(--ipk-ease);
}

.dropdown.open .drop-btn::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  min-width: 268px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--ipk-border);
  border-radius: var(--ipk-radius-sm);
  box-shadow: 0 12px 40px rgba(12, 25, 41, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ipk-ease), transform 0.2s var(--ipk-ease),
    visibility 0.2s;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  border-bottom: none;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ipk-charcoal);
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-menu a:hover {
  background: var(--ipk-red-light);
  color: var(--ipk-accent);
}

.dropdown-menu a.is-active,
.dropdown-menu a[aria-current="page"] {
  background: var(--ipk-gold-light);
  color: var(--ipk-gold-text);
  border-radius: 10px;
}

.dropdown-menu__index-link {
  margin-top: 6px;
  padding-top: 12px !important;
  border-top: 1px solid var(--ipk-border);
  color: var(--ipk-accent) !important;
}

.dropdown-menu .dropdown-placeholder {
  margin: 0;
  padding: 12px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ipk-text-muted);
  line-height: 1.45;
}

/* Properties mega-menu (three columns desktop, stacked mobile) */
.dropdown-menu--properties {
  min-width: min(680px, calc(100vw - 40px));
  max-width: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 16px;
  padding: 12px 14px 14px;
}

.dropdown-menu--properties .dropdown-menu__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dropdown-menu__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ipk-text-muted);
  padding: 6px 14px 8px;
  margin: 0;
  pointer-events: none;
  line-height: 1.3;
}

.dropdown-menu--properties .dropdown-menu__group:first-child .dropdown-menu__label {
  padding-top: 4px;
}

/* Resources menu (Market Reports, Compare, Guides, Blog) */
.dropdown-menu--resources {
  min-width: min(560px, calc(100vw - 40px));
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  padding: 12px 14px 14px;
}

.dropdown-menu--resources .dropdown-menu__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dropdown-menu--areas .dropdown-menu__group--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
  min-width: min(320px, calc(100vw - 40px));
  padding: 8px 4px;
}

.nav-links__mobile-actions,
.header-actions-mobile {
  display: none;
}

/* Desktop: full horizontal nav (1251px+) */
@media (min-width: 1251px) {
  .topbar .mobile-toggle,
  .mobile-menu-toggle {
    display: none !important;
  }

  .main-nav,
  .desktop-nav,
  .topbar .nav-shell {
    display: flex !important;
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }

  .header-actions,
  .topbar .nav-actions {
    display: flex !important;
    flex: 0 0 auto;
    flex-shrink: 0;
    margin-left: 0;
  }

  .logo-wrap,
  .topbar .brand {
    flex: 0 0 250px;
    width: 250px;
    min-width: 250px;
    max-width: 250px;
  }

  .nav-links__mobile-actions,
  .header-actions-mobile {
    display: none !important;
  }

  .nav-links {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  .nav-link,
  .drop-btn {
    padding: 10px 11px;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}

@media (min-width: 1251px) and (max-width: 1380px) {
  .nav-link,
  .drop-btn {
    padding: 10px 8px;
    font-size: 0.75rem;
  }

  .logo-wrap,
  .topbar .brand {
    flex: 0 0 220px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }
}

/* New Projects + developers directory */
.dropdown-menu--projects {
  min-width: min(580px, calc(100vw - 40px));
  max-width: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 22px;
  padding: 12px 14px 14px;
}

.dropdown-menu--projects .dropdown-menu__group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.dropdown-menu--projects .dropdown-menu__group--recent {
  grid-column: 1 / -1;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--ipk-border);
}

.dropdown-menu--projects .dropdown-menu__group--recent[hidden] {
  display: none !important;
}

.dropdown-menu--projects #projectsDropdownRecentLinks {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 0;
}

.btn-primary,
.btn-outline,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ipk-radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: background 0.2s var(--ipk-ease), color 0.2s var(--ipk-ease),
    border-color 0.2s var(--ipk-ease), box-shadow 0.2s var(--ipk-ease),
    transform 0.2s var(--ipk-ease);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-wa {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
}

.btn-wa:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* WhatsApp CTAs — always green on public pages */
a[href*="wa.me"].btn-outline,
a[href*="wa.me"].btn-wa,
a[href*="wa.me"].ipk-btn--wa,
a[href*="wa.me"].ipk-stock-map-panel__wa,
a[href*="wa.me"].detail-btn--wa,
a[href*="wa.me"].btn-list-outline {
  background: #25d366 !important;
  color: #fff !important;
  border: 1px solid #25d366 !important;
}

a[href*="wa.me"].btn-outline:hover,
a[href*="wa.me"].btn-wa:hover,
a[href*="wa.me"].ipk-btn--wa:hover,
a[href*="wa.me"].ipk-stock-map-panel__wa:hover,
a[href*="wa.me"].detail-btn--wa:hover,
a[href*="wa.me"].btn-list-outline:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
  color: #fff !important;
}

.ipk-btn--wa {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
  text-decoration: none;
}

.ipk-btn--wa:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

.ipk-stock-map-panel {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 3fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.ipk-stock-map-panel__map,
.ipk-stock-map-panel__agent {
  min-width: 0;
}

.ipk-stock-map-panel__agent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: clamp(22px, 2.4vw, 28px);
  border: 1px solid var(--ipk-border);
  border-radius: var(--ipk-radius);
  background: #fff;
  box-shadow: var(--ipk-shadow);
}

.ipk-stock-map-panel__photo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.18);
  background: var(--ipk-red-light);
}

.ipk-stock-map-panel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ipk-stock-map-panel__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ipk-accent);
}

.ipk-stock-map-panel__agent h2,
.ipk-stock-map-panel__agent h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.15;
  color: var(--ipk-navy);
}

.ipk-stock-map-panel__role,
.ipk-stock-map-panel__copy {
  margin: 0;
  color: var(--ipk-text-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.ipk-stock-map-panel__role strong {
  color: var(--ipk-charcoal);
}

.ipk-stock-map-panel__areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ipk-stock-map-panel__areas li {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ipk-red-light);
  color: var(--ipk-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.ipk-stock-map-panel__actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.ipk-stock-map-panel__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--ipk-radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}

.ipk-stock-map-panel__wa {
  background: #25d366;
  color: #fff;
  border: 1px solid #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.ipk-stock-map-panel__wa:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

.ipk-stock-map-panel__contact {
  border: 1px solid rgba(193, 18, 31, 0.24);
  background: #fff;
  color: var(--ipk-accent);
}

.ipk-stock-map-panel__contact:hover {
  background: var(--ipk-red-light);
}

.ipk-map-shell {
  overflow: hidden;
  border: 1px solid var(--ipk-border);
  border-radius: var(--ipk-radius);
  background: #fff;
  box-shadow: var(--ipk-shadow);
}

.ipk-map-shell__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: 68px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ipk-border);
  background: linear-gradient(180deg, #fff 0%, var(--ipk-gold-light) 100%);
}

/* FilterBar architecture: FilterBar → FilterGroup → FilterPill */
.ipk-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  border-bottom: 1px solid var(--ipk-border);
  background: #fff;
}

.ipk-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.ipk-filter-group__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ipk-text-muted);
  margin: 0;
}

.ipk-filter-group__pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ipk-filter-group__pills::-webkit-scrollbar {
  display: none;
}

.ipk-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s var(--ipk-ease), color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ipk-filter-pill:hover {
  border-color: #c1121f;
  background: #fff;
  color: #c1121f;
}

.ipk-filter-pill.is-active {
  background: #c1121f;
  border-color: #c1121f;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(193, 18, 31, 0.12);
}

.ipk-filter-bar__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem;
  min-height: 36px;
}

.ipk-filter-count {
  color: var(--ipk-text-muted);
  font-size: 0.8125rem;
  font-weight: 800;
}

.ipk-filter-clear {
  border: 0;
  background: transparent;
  color: var(--ipk-accent);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 800;
  cursor: pointer;
  padding: 6px 0;
}

.ipk-filter-clear:hover {
  color: var(--ipk-accent-hover);
}

.ipk-map-shell__bar label {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--ipk-charcoal);
}

.ipk-map-shell__bar select {
  min-width: min(100%, 220px);
  flex: 1 1 200px;
  max-width: 320px;
  font: inherit;
  font-size: 0.9375rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--ipk-radius-sm);
  border: 1px solid var(--ipk-border);
  background: #fff;
  color: var(--ipk-text);
}

.ipk-map-pin {
  background: transparent;
  border: none;
}

.ipk-map-pin__dot {
  display: block;
  width: 18px;
  height: 18px;
  margin: 5px;
  border-radius: 999px;
  background: var(--pin-color, var(--ipk-accent));
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.22), 0 0 0 4px color-mix(in srgb, var(--pin-color, var(--ipk-accent)) 24%, transparent);
}

.leaflet-marker-icon.ipk-map-pin:hover .ipk-map-pin__dot {
  background: var(--pin-color, var(--ipk-accent-hover));
  transform: scale(1.08);
}

.leaflet-marker-icon.listing-marker {
  pointer-events: auto !important;
  cursor: pointer;
  z-index: 999 !important;
}

.leaflet-div-icon {
  background: transparent;
  border: none;
}

.focus-area-billboard-icon {
  background: transparent;
  border: 0;
  width: max-content !important;
  min-width: max-content !important;
  height: auto !important;
  overflow: visible !important;
  pointer-events: none !important;
}

.focus-area-billboard {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  min-width: max-content;
  padding: 8px 12px;
  border-left: 4px solid #C1121F;
  border-radius: 10px;
  background: rgba(17, 24, 39, 0.88);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
  animation: none !important;
  pointer-events: none !important;
}

.focus-area-billboard__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--ipk-accent, #C1121F);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.is-billboard-compact .focus-area-billboard {
  gap: 6px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.is-billboard-hidden .focus-area-billboard-icon {
  display: none;
}

.ipk-map-legend {
  display: grid;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.16);
  color: var(--ipk-text);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.ipk-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.ipk-map-legend__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--legend-color);
  box-shadow: 0 0 0 2px rgba(17, 24, 39, 0.08);
}

.ipk-map-pin.pin-drop .ipk-map-pin__dot {
  animation: pinDrop 0.35s ease-out both;
  animation-delay: var(--pin-delay, 0ms);
}

.ipk-map-fullscreen-wrap,
.ipk-map-basemap-toggle {
  margin-top: 6px;
}

.ipk-map-fullscreen-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--ipk-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ipk-navy);
  box-shadow: 0 2px 10px rgba(12, 25, 41, 0.12);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.ipk-map-fullscreen-btn:hover {
  color: var(--ipk-accent);
  background: var(--ipk-red-light);
}

.ipk-map-basemap-toggle {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--ipk-border);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(12, 25, 41, 0.12);
  overflow: hidden;
}

.ipk-map-basemap-toggle__btn {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: var(--ipk-text-muted);
  cursor: pointer;
  line-height: 1.2;
}

.ipk-map-basemap-toggle__btn + .ipk-map-basemap-toggle__btn {
  border-left: 1px solid var(--ipk-border);
}

.ipk-map-basemap-toggle__btn:hover {
  background: var(--ipk-red-light);
  color: var(--ipk-accent);
}

.ipk-map-basemap-toggle__btn.is-active {
  background: var(--ipk-accent);
  color: #fff;
}

.ipk-map-popup__title {
  display: block;
  margin: 0 0 6px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ipk-navy);
}
.listing-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.15);
}

.ipk-map-popup-wrap .leaflet-popup-content,
.listing-popup .leaflet-popup-content {
  margin: 0;
  min-width: 200px;
}

.ipk-map-popup {
  font-family: var(--font-sans);
  padding: 12px 14px 14px;
}

.ipk-map-popup__img {
  width: calc(100% + 28px);
  max-width: none;
  height: 110px;
  object-fit: cover;
  margin: -12px -14px 10px;
  display: block;
}

.ipk-map-popup__price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ipk-text);
  margin-bottom: 4px;
}

.ipk-map-popup__meta,
.ipk-map-popup__type {
  font-size: 0.75rem;
  color: var(--ipk-text-muted);
  margin-bottom: 4px;
}

.ipk-map-popup__btn {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--ipk-accent);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.ipk-map-popup__btn:hover {
  background: var(--ipk-accent-hover);
}

.map-wrapper,
.map-card,
.ipk-home-map__map-col {
  position: relative;
}

.map-wrapper:fullscreen,
.map-wrapper:-webkit-full-screen,
.map-card:fullscreen,
.map-card:-webkit-full-screen,
.ipk-home-map__map-col:fullscreen,
.ipk-home-map__map-col:-webkit-full-screen,
.map-wrapper.is-fullscreen,
.map-card.is-fullscreen,
.ipk-home-map__map-col.is-fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  background: #000;
}

.map-wrapper:fullscreen .leaflet-container,
.map-wrapper:fullscreen #industrialListingsAreaMap,
.map-wrapper:fullscreen #industrialHomeAreaMap,
.map-wrapper:fullscreen #industrialExploreMap,
.map-card:fullscreen .leaflet-container,
.map-card:fullscreen #industrialListingsAreaMap,
.map-card:fullscreen #industrialHomeAreaMap,
.ipk-home-map__map-col:fullscreen .leaflet-container,
.ipk-home-map__map-col:fullscreen #industrialListingsAreaMap,
.ipk-home-map__map-col:fullscreen #industrialHomeAreaMap {
  width: 100vw !important;
  height: 100vh !important;
  min-height: 100% !important;
  max-height: none !important;
}

@media (max-width: 900px) {
  .ipk-stock-map-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .focus-area-billboard {
    gap: 5px;
    padding: 5px 8px;
    border-left-width: 3px;
    border-radius: 8px;
    font-size: 10px;
  }

  .focus-area-billboard__dot {
    width: 6px;
    height: 6px;
  }
}

/* Header CTAs — Login outline, WhatsApp green */
.topbar .nav-actions .btn-primary,
.header-actions .btn-primary {
  background: #fff;
  border: 2px solid #c1121f;
  color: #c1121f;
  box-shadow: none;
}

.topbar .nav-actions .btn-primary:hover,
.header-actions .btn-primary:hover {
  background: #c1121f;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.topbar .nav-actions .btn-outline:not([href*="wa.me"]) {
  background: #fff;
  border: 1px solid rgba(16, 42, 67, 0.14);
  color: var(--ipk-charcoal);
}

.topbar .nav-actions .btn-outline:not([href*="wa.me"]):hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: var(--ipk-gold-light);
  color: var(--ipk-gold-text);
}

.topbar .nav-actions .btn-outline[href*="wa.me"] {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.topbar .nav-actions .btn-outline[href*="wa.me"]:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--ipk-radius-sm);
  border: 1px solid var(--ipk-border);
  background: #fff;
  color: var(--ipk-navy);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 0.2s var(--ipk-ease), border-color 0.2s var(--ipk-ease);
}

.mobile-toggle:hover {
  background: rgba(16, 42, 67, 0.04);
  border-color: rgba(16, 42, 67, 0.16);
}

.mobile-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-toggle__icon {
  width: 22px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
}

.mobile-toggle__icon::before,
.mobile-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ipk-navy);
  border-radius: 1px;
  transition: transform 0.3s var(--ipk-ease), box-shadow 0.3s var(--ipk-ease),
    top 0.3s var(--ipk-ease), bottom 0.3s var(--ipk-ease);
}

.mobile-toggle__icon::before {
  top: 0;
  box-shadow: 0 7px 0 var(--ipk-navy);
}

.mobile-toggle__icon::after {
  bottom: 0;
}

.topbar.menu-open .mobile-toggle__icon::before {
  top: 7px;
  transform: rotate(45deg);
  box-shadow: none;
}

.topbar.menu-open .mobile-toggle__icon::after {
  bottom: auto;
  top: 7px;
  transform: rotate(-45deg);
}

/* SAFETY OVERFLOW FIXES */
.hero,
.banner,
.section,
.search-box,
.search-card,
.search-wrap,
.hero-content,
.hero-inner,
.swiper,
.swiper-wrapper,
.swiper-slide {
  max-width: 100%;
}

.hero *,
.banner *,
.section *,
.search-box *,
.search-card *,
.search-wrap *,
.hero-content *,
.hero-inner * {
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

/* FOOTER */
.site-footer {
  background: #111827;
  color: #FFFFFF;
  margin-top: 48px;
  padding-top: 32px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 36px;
  align-items: start;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-contact p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #FFFFFF;
  margin: 10px 0 14px;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: 14px;
}

.footer-col a:hover {
  color: #D4AF37;
}

.footer-map-col iframe {
  width: 100%;
  min-height: 230px;
  border: 0;
}

.footer-bottom {
  padding: 18px 0 22px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.back-to-top {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.agent-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: 14px;
  color: #666;
  min-width: 0;
}

.agent-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-name {
  font-weight: 500;
  color: #222;
}

.agent-dot {
  color: #aaa;
}

.brand-mark {
  background: transparent !important;
  border-radius: 0 !important;   /* 🔥 THIS removes the curve */
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

.brand-mark img {
  border-radius: 0 !important;   /* 🔥 remove curve from image */
}

/* FOOTER */
.site-footer {
  background: #111827;
  color: #FFFFFF;
  margin-top: 48px;
  padding-top: 32px;
  position: relative;
}

/* Compact footer links (SEO links) */
.footer-links-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin-top: 8px;
}

.footer-links-compact a {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Hamburger mode: 769px–1250px (768px and below: industrial-mobile.css) */
@media (min-width: 769px) and (max-width: 1250px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .container {
    width: calc(100% - 24px);
    max-width: 100%;
  }

  body.ipk-nav-lock {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .mobile-toggle,
  .mobile-menu-toggle {
    display: inline-flex !important;
    min-height: 44px;
    min-width: 44px;
    z-index: 1002;
    flex: 0 0 auto;
  }

  .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--ipk-border);
  }

  :root {
    --ipk-mobile-header-height: calc(env(safe-area-inset-top, 0px) + 72px);
    --ipk-mobile-topbar-clearance: var(--ipk-mobile-header-height);
  }

  html {
    scroll-padding-top: var(--ipk-mobile-header-height);
  }

  body {
    padding-top: var(--ipk-mobile-header-height);
  }

  body.page-home .hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .header-inner,
  .topbar .container.nav {
    width: calc(100% - 24px);
    max-width: 100%;
    padding: 0 12px;
    min-height: 72px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .logo-wrap,
  .topbar .brand {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 220px) !important;
  }

  .header-actions,
  .topbar .nav-actions {
    flex: 0 0 auto;
    display: flex !important;
    gap: 6px;
  }

  .desktop-nav,
  .main-nav,
  .topbar .nav-shell {
    display: none;
  }

  .topbar.menu-open .nav-shell {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: min(75vh, calc(100dvh - var(--ipk-mobile-header-height)));
    overflow-x: clip;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--ipk-border);
    box-shadow: var(--ipk-shadow-lg);
    padding: 10px;
    z-index: 1001;
  }

  .header-inner {
    position: relative;
  }

  .topbar .dropdown-menu,
  .topbar .dropdown-menu--properties,
  .topbar .dropdown-menu--projects,
  .topbar .dropdown-menu--resources {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .topbar .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    width: 100%;
  }

  .topbar .nav-links > li {
    width: 100%;
    border: none;
  }

  .topbar .nav-link,
  .topbar .drop-btn {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 0.9375rem !important;
    color: var(--ipk-charcoal) !important;
    background: transparent !important;
    border-radius: var(--ipk-radius-sm);
    white-space: normal;
  }

  .topbar .nav-link:hover,
  .topbar .drop-btn:hover {
    background: rgba(16, 42, 67, 0.06) !important;
  }

  .topbar .dropdown .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--ipk-bg) !important;
    margin: 4px 0 8px;
    padding: 8px !important;
    border-radius: var(--ipk-radius-sm);
  }

  .topbar .dropdown.open .dropdown-menu {
    display: flex !important;
    flex-direction: column;
  }

  .topbar .dropdown:hover .dropdown-menu {
    display: none !important;
  }

  .topbar .dropdown.open:hover .dropdown-menu {
    display: flex !important;
  }

  .dropdown-menu--properties {
    grid-template-columns: 1fr !important;
    max-width: none;
  }

  .dropdown-menu--resources {
    grid-template-columns: 1fr !important;
    max-width: none;
  }

  .topbar .nav-link.nav-cta,
  .topbar .drop-btn.nav-cta {
    background: #fff4cc !important;
    border: 1px solid #e5b800 !important;
    color: #111827 !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
  }

  .topbar .nav-link.nav-cta:hover,
  .topbar .drop-btn.nav-cta:hover {
    background: #ffe89a !important;
    color: #111827 !important;
  }

  .dropdown-menu--areas .dropdown-menu__group--cols {
    grid-template-columns: 1fr;
  }

  .topbar .dropdown-menu a {
    color: var(--ipk-charcoal) !important;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links__mobile-actions,
  .header-actions-mobile {
    display: none !important;
    flex-direction: column;
    gap: 10px;
    padding: 12px 8px 8px;
    margin-top: 8px;
    border-top: 1px solid var(--ipk-border);
    list-style: none;
  }

  .nav-links__mobile-actions .btn-outline,
  .nav-links__mobile-actions .btn-primary,
  .header-actions-mobile .btn-outline,
  .header-actions-mobile .btn-primary {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .banner,
  .section,
  .search-box,
  .search-card,
  .search-wrap,
  .hero-content,
  .hero-inner,
  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet hamburger: show mobile menu CTAs when open */
@media (min-width: 769px) and (max-width: 1250px) {
  .topbar.menu-open .nav-links__mobile-actions,
  .topbar.menu-open .header-actions-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }
}
/* milestone a reached - website functional */
/* mile stone b reached - before AI implement admin */
/*milestone before armani bizcore*/
