.map-section {
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
}

.site-header .brand,
footer .brand {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  gap: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  line-height: 0;
  overflow: visible;
  background: transparent;
}

.site-header .brand-logo {
  display: block;
  width: auto;
  height: 48px;
  max-height: 48px;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  padding: 0;
  margin: 0;
  vertical-align: middle;
}

.logo-raster-blend .site-header .brand-logo {
  mix-blend-mode: multiply;
}

footer .brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1rem;
}

footer .brand-logo-wrap,
.brand-logo-wrap--light,
.brand-logo-wrap--footer {
  display: block;
  height: auto;
  width: auto;
  line-height: 0;
  overflow: visible;
  background: transparent !important;
  border: 0;
  box-shadow: none;
  margin: 0 0 1rem;
  padding: 0;
}

footer .brand-logo,
.brand-logo-wrap--light .brand-logo,
.brand-logo--footer {
  display: block !important;
  width: auto !important;
  min-width: 160px;
  height: 56px !important;
  max-height: 56px !important;
  max-width: 240px !important;
  object-fit: contain !important;
  object-position: left center;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  mix-blend-mode: normal;
  filter: none;
}

.nav-shell {
  min-height: 68px;
}

@media (max-width: 700px) {
  .site-header .brand-logo {
    height: 40px;
    max-height: 40px;
    max-width: 160px;
  }

  .brand-logo-wrap {
    height: 40px;
  }

  footer .brand-logo,
  .brand-logo--footer {
    height: 48px !important;
    max-height: 48px !important;
    min-width: 140px;
    max-width: 200px !important;
  }
}

@media (max-width: 1100px) {
  .map-section {
    grid-template-columns: 1fr;
  }
}

/* A.R. Green City site plan map */
.site-plan-stage {
  position: relative;
  background: #081422;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
}

.site-plan-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  z-index: 2;
  padding: 1rem;
  text-align: center;
}

.site-plan-loading.hidden {
  display: none;
}

.site-plan-viewport-wrap {
  overflow: auto;
  max-height: 620px;
  padding: 12px;
}

.site-plan-viewport {
  position: relative;
  transform-origin: top left;
  width: max-content;
  margin: 0 auto;
}

.site-plan-canvas,
.site-plan-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.map-view-toggle {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.map-view-toggle button {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
}

.map-view-toggle button.active {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
}

.map-legend i.acquired {
  background: rgba(59, 130, 246, 0.85);
}

.site-plan-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plot-hotspot {
  position: absolute;
  pointer-events: auto;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.42);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 2px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  min-width: 0;
  overflow: hidden;
}

.plot-hotspot span {
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.plot-hotspot:hover {
  transform: scale(1.04);
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.plot-hotspot--reserved {
  background: rgba(234, 179, 8, 0.48);
}

.plot-hotspot--sold,
.plot-hotspot--booked {
  background: rgba(239, 68, 68, 0.48);
}

.plot-hotspot--acquired {
  background: rgba(59, 130, 246, 0.48);
}

.plot-hotspot--mine {
  border-color: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.35);
}

.plot-hotspot--hidden {
  opacity: 0;
  pointer-events: none;
}

.map-plan-download {
  margin-top: 1rem;
  display: inline-flex;
}

.map-filters button {
  cursor: pointer;
}

/* Mobile navigation drawer */
.nav-menu-toggle {
  display: none;
}

.landing-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 17, 31, 0.55);
  backdrop-filter: blur(4px);
}

.landing-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 320px);
  height: 100vh;
  z-index: 90;
  padding: 1rem 1rem 1.5rem;
  background: rgba(247, 249, 252, 0.98);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform: translateX(105%);
  transition: transform 0.25s ease;
}

body.landing.is-nav-open .landing-nav-drawer {
  transform: translateX(0);
}

.landing-nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.landing-nav-drawer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.landing-nav-drawer a:hover {
  background: rgba(18, 99, 255, 0.08);
}

@media (max-width: 1100px) {
  .nav-menu-toggle {
    display: inline-grid;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    line-height: 1.05;
  }

  .hero-proof {
    grid-template-columns: 1fr !important;
  }

  .trust-grid,
  .property-track,
  .ticker {
    grid-template-columns: 1fr !important;
  }

  .property-track .property-card:last-child {
    grid-column: auto !important;
  }

  .site-plan-viewport-wrap {
    max-height: 52vh;
  }
}

body.shell-nav-open {
  overflow: hidden;
}
