:root {
  --brand-red: #ff2424;
  --brand-red-dark: #f02524;

  --brand-black: #0b0b0b;
  --brand-charcoal: #111827;

  --brand-gray: #dedbda;
  --brand-gray-2: #f3f4f6;

  --white: #ffffff;

  --radius: 18px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --container: 1240px;
  --hero-title: clamp(32px, 4vw, 48px);
  --page-title: clamp(26px, 3.1vw, 40px);
  --section-title: clamp(22px, 2.3vw, 30px);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--brand-charcoal);
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.topbar {
  background: #0f131a;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.topbarRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.topbarRow a {
  color: rgba(255, 255, 255, 0.85);
}
.topbarRow a:hover {
  color: #fff;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.headerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brandText {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brandText strong {
  letter-spacing: 0.2px;
}
.brandText span {
  font-size: 12px;
  color: rgba(17, 24, 39, 0.65);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  font-weight: 800;
  font-size: 14px;
  color: rgba(17, 24, 39, 0.78);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover {
  background: rgba(17, 24, 39, 0.05);
}
.nav a.active {
  color: var(--brand-charcoal);
  background: rgba(17, 24, 39, 0.06);
}

.menuBtn {
  display: none;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}
.mobileNav {
  display: none;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding: 10px 0;
}
.mobileNav a {
  display: block;
  padding: 12px 0;
  font-weight: 800;
  color: rgba(17, 24, 39, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn.primary {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.btn.primary:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}
.btn.ghost {
  background: #fff;
}
.btn.dark {
  background: var(--brand-charcoal);
  color: #fff;
  border-color: var(--brand-charcoal);
}
.btn.whatsapp {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
}
.btn.full {
  width: 100%;
}
.btn.small {
  padding: 10px 12px;
  font-size: 13px;
}

.kicker {
  letter-spacing: 0.16em;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.6);
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 34px;
  background:
    radial-gradient(900px 420px at 12% 10%, rgba(255, 36, 36, 0.10), transparent 60%),
    radial-gradient(720px 360px at 88% 0%, rgba(17, 24, 39, 0.06), transparent 55%),
    linear-gradient(180deg, #fff, #fff);
}

.hero::before{
  display:none;
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.92) 46%, rgba(255,255,255,0.75) 62%, rgba(255,255,255,0.68) 100%),
    url("../img/misc/img1.jpeg");
  background-size:cover;
  background-position:center right;
  opacity:1;
  pointer-events:none;
}
@media (max-width: 980px){
  .hero::before{
  display:none;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 50%, rgba(255,255,255,0.90) 100%),
      url("../img/misc/img1.jpeg");
    background-position:center;
  }
}

.heroGrid {
  display:none;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.hero h1 {
  margin: 10px 0 12px;
  font-size: var(--hero-title);
  line-height: 1.08;
  text-wrap: balance;
  max-width: 11ch;
}
.muted {
  color: rgba(17, 24, 39, 0.68);
}
.heroCta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.heroCard {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  overflow: hidden;
}
.heroCardTop {
  padding: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}
.heroCardTop h3 {
  margin: 0 0 6px;
}
.heroCardForm {
  padding: 16px 18px 18px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(17, 24, 39, 0.6);
  margin: 10px 0 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  outline: none;
  font-weight: 700;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.section {
  padding: 40px 0;
}
.sectionAlt {
  background: rgba(17, 24, 39, 0.03);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}
.sectionHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.sectionHead h2 {
  margin: 0;
  font-size: var(--section-title);
  line-height: 1.18;
  text-wrap: balance;
}
.sectionHead p {
  margin: 6px 0 0;
}
.link {
  color: var(--brand-red);
  font-weight: 900;
}
.link:hover {
  text-decoration: underline;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.14s ease,
    border-color 0.14s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 36, 36, 0.32);
}
.cardMedia {
  height: 170px;
  background: linear-gradient(
    135deg,
    rgba(255, 36, 36, 0.16),
    rgba(17, 24, 39, 0.1)
  );
}
.cardBody {
  padding: 14px;
}
.pill {
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  color: rgba(17, 24, 39, 0.66);
  border: 1px solid rgba(17, 24, 39, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}
.price {
  font-weight: 1000;
  margin: 8px 0 10px;
}
.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(17, 24, 39, 0.62);
  font-weight: 800;
  font-size: 13px;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.feature h3 {
  margin: 0 0 8px;
}
.feature p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.box {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.ticks {
  padding-left: 18px;
  margin: 12px 0 0;
}
.ticks li {
  margin: 8px 0;
}

.banner {
  padding: 52px 0 26px;
  background:
    radial-gradient(
      900px 380px at 15% 20%,
      rgba(255, 36, 36, 0.14),
      transparent 60%
    ),
    radial-gradient(
      720px 360px at 90% 0%,
      rgba(17, 24, 39, 0.1),
      transparent 55%
    );
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}
.banner h1 {
  margin: 8px 0 10px;
  font-size: var(--page-title);
  line-height: 1.12;
  text-wrap: balance;
  max-width: 20ch;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.stat {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.stat strong {
  display: block;
  font-size: 18px;
}
.stat span {
  color: rgba(17, 24, 39, 0.6);
  font-weight: 800;
  font-size: 13px;
}

.filterBar {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}

.miniList {
  margin: 0;
  padding-left: 18px;
  color: rgba(17, 24, 39, 0.68);
  font-weight: 700;
  font-size: 13px;
}
.cardActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ctaStrip {
  padding: 22px 0;
  background: var(--brand-charcoal);
  color: rgba(255, 255, 255, 0.92);
}
.ctaRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.ctaRow p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer {
  background: #0f131a;
  color: rgba(255, 255, 255, 0.85);
  padding: 26px 0 18px;
  margin-top: 0;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1.1fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footerGrid a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin: 8px 0;
}
.footerGrid a:hover {
  color: #fff;
}
.footerBottom {
  padding-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.footerBrand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footerBrand img {
  width: 42px;
  height: 42px;
}

.badgeRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.badge {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: rgba(17, 24, 39, 0.7);
  font-weight: 900;
  font-size: 12px;
}

.mapPlaceholder {
  height: 260px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: linear-gradient(
    135deg,
    rgba(17, 24, 39, 0.08),
    rgba(255, 36, 36, 0.1)
  );
  box-shadow: var(--shadow-soft);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .menuBtn {
    display: inline-flex;
  }
  .mobileNav.open {
    display: block;
  }
  .heroGrid {
  display:none;
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .featureGrid {
    grid-template-columns: 1fr 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .filterBar {
    grid-template-columns: 1fr;
  }
  .footerGrid {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
}
/* Fix: ghost buttons inside dark sections */
.ctaStrip .btn.ghost,
.topbar .btn.ghost {
  color: var(--brand-charcoal);
}

.ctaStrip .btn.ghost:hover,
.topbar .btn.ghost:hover {
  background: var(--brand-gray-2);
}

.brandLogo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}


/* =========================
   Site Locations (Abuja)
   ========================= */
.locationsCard{
  margin-top: 18px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(17,24,39,0.12);
  box-shadow: var(--shadow-soft);
}
.locationsHeader{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.locationsHeader strong{
  font-size: 14px;
  letter-spacing: .2px;
  color: var(--brand-charcoal);
}
.mutedSmall{
  font-size: 12px;
  color: rgba(17,24,39,0.62);
}
.locationsGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}
.locChip{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.10);
  font-weight: 700;
  letter-spacing: .3px;
  color: rgba(17,24,39,0.82);
}
@media (max-width: 720px){
  .locationsGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}


/* ===== Estate visuals upgrade ===== */
.heroStrip{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.heroStripItem{
  position:relative;
  height:120px;
  border-radius:18px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(17,24,39,0.08);
}
.heroStripItem::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.55));
}
.heroStripLabel{
  position:absolute;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:2;
  color:#fff;
}
.heroStripLabel strong{
  display:block;
  font-size:14px;
  letter-spacing:0.2px;
}
.heroStripLabel span{
  display:block;
  opacity:0.88;
  font-size:12px;
}
@media (max-width: 900px){
  .heroStrip{ grid-template-columns:1fr; }
  .heroStripItem{ height:150px; }
}

.galleryGrid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap:12px;
  margin-top:14px;
}
.galleryBig{
  grid-row: 1 / span 2;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(17,24,39,0.08);
}
.gallerySmall{
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(17,24,39,0.08);
}
@media (max-width: 900px){
  .galleryGrid{
    grid-template-columns:1fr;
    grid-template-rows: 200px 160px 160px 160px 160px;
  }
  .galleryBig{ grid-row:auto; }
}


/* ===== Featured Estates (Home) ===== */
.featuredEstates{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(17,24,39,0.12);
  box-shadow: var(--shadow-soft);
}
.featuredEstatesHead{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.featuredEstatesHead strong{
  font-size: 14px;
  letter-spacing: .2px;
  color: var(--brand-charcoal);
}
.estateCards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.estateCard{
  position:relative;
  display:block;
  height: 170px;
  border-radius: 18px;
  overflow:hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
.estateCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(17,24,39,0.14);
}
.estateCardOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.70) 100%);
}
.estateCardContent{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color:#fff;
  z-index:1;
}
.estateBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 12px;
  font-weight: 700;
}
.estateCardContent h4{
  margin: 8px 0 4px;
  font-size: 16px;
  letter-spacing: .2px;
}
.estateCardContent p{
  margin: 0;
  font-size: 12px;
  opacity: .92;
}
@media (max-width: 900px){
  .estateCards{ grid-template-columns:1fr; }
  .estateCard{ height: 190px; }
}

/* Hero aside image header (fills visual space and boosts real-estate feel) */
.heroAsideMedia{
  border-radius: 18px;
  overflow:hidden;
  height: 170px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.heroAsideMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(17,24,39,0.05) 0%, rgba(17,24,39,0.60) 100%);
}
.heroAsideMedia .label{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:1;
  color:#fff;
}
.heroAsideMedia .label strong{
  display:block;
  font-size: 15px;
  letter-spacing:0.2px;
}
.heroAsideMedia .label span{
  display:inline-flex;
  margin-top:6px;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}
.heroAsideStack{
  display:grid;
  gap: 14px;
}

/* Footer: keep key lines on one line on desktop */
.footerNoWrap{ white-space: nowrap; }
@media (max-width: 820px){
  .footerNoWrap{ white-space: normal; }
}


/* ===== 2026 refinement: hero redesign + map panel ===== */
.heroTopGrid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 26px;
  align-items:center;
}
.heroBottomGrid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 26px;
  align-items:start;
  margin-top: 22px;
}
.heroCopyWrap{
  max-width: 640px;
}
.heroLead{
  font-size: 17px;
  max-width: 58ch;
}
.heroBadgeRow .badge{
  background: rgba(255,255,255,0.92);
}
.heroTrustBar{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.heroTrustBar span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(17,24,39,0.1);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 800;
  color: rgba(17,24,39,0.78);
}
.heroVisualWrap{
  display:grid;
  gap: 14px;
}
.heroVisualMain{
  min-height: 430px;
  border-radius: 28px;
  overflow:hidden;
  position:relative;
  background-size: cover;
  background-position: center center;
  border: 1px solid rgba(17,24,39,0.10);
  box-shadow: var(--shadow);
}
.heroVisualOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,19,26,0.08) 0%, rgba(15,19,26,0.15) 34%, rgba(15,19,26,0.68) 100%);
}
.heroVisualContent{
  position:absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index:1;
  color:#fff;
}
.heroVisualContent h3{
  margin: 10px 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
  max-width: 17ch;
  text-wrap: balance;
}
.heroVisualContent p{
  margin:0;
  max-width: 38ch;
  color: rgba(255,255,255,0.86);
}
.visualPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
}
.heroMetaGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.heroMetaCard{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(17,24,39,0.10);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-soft);
}
.heroMetaCard strong{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
}
.heroMetaCard span{
  display:block;
  color: rgba(17,24,39,0.66);
  font-size: 13px;
  font-weight: 700;
}
.heroMetaCard.accent{
  background: linear-gradient(135deg, rgba(255,36,36,0.08), rgba(255,255,255,0.96));
}
.mapPanel{
  padding: 18px;
}
.mapImage{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 20px;
  margin-top: 12px;
  border: 1px solid rgba(17,24,39,0.08);
  box-shadow: var(--shadow-soft);
  background:#fff;
}
.footerGrid strong{
  display:inline-block;
  margin-bottom: 6px;
}
.footerGrid > div:last-child a{
  margin: 6px 0;
}
@media (max-width: 1100px){
  .heroTopGrid, .heroBottomGrid{
    grid-template-columns: 1fr;
  }
  .heroVisualMain{ min-height: 360px; }
}
@media (max-width: 700px){
  .hero h1{ max-width: none; }
  .heroLead{ font-size: 16px; }
  .heroMetaGrid{ grid-template-columns: 1fr; }
  .heroVisualMain{ min-height: 300px; }
}

.box h2, .box h3, .ctaRow h2 {
  text-wrap: balance;
}
.box h2 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}
.ctaRow h2 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

/* ===== Polish: typography + spacing ===== */
.hero h1{
  letter-spacing: -0.6px;
}
.heroLead{
  margin-top: 6px;
}
.sectionHead{
  margin-bottom: 14px;
}
.sectionHead p{
  max-width: 72ch;
}
.feature{
  border-radius: 20px;
}
.card, .box, .heroCard{
  border-radius: 20px;
}

/* ===== Polish: floating CTAs ===== */
.floatingCtas{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 10px;
}
.floatBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,24,39,0.14);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  font-size: 13px;
  color: rgba(17,24,39,0.86);
}
.floatBtn.primary{
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.floatIcon{
  display:inline-flex;
  width: 22px;
  height: 22px;
  align-items:center;
  justify-content:center;
}
.floatText{ line-height: 1; }
@media (max-width: 520px){
  .floatText{ display:none; }
  .floatBtn{ padding: 12px; border-radius: 16px; }
}

/* Keep footer lines clean */
.footerGrid .muted{ margin-top: 10px; }


/* ===== Sticky Header Fix (Topbar + Main Header) ===== */
:root{
  --topbar-h: 44px;
  --header-h: 78px;
}

/* Make both bars fixed so they always stay visible */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.siteHeader{
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 9998;
}

/* Push page content down so it doesn't hide under the fixed header */
body{
  padding-top: calc(var(--topbar-h) + var(--header-h));
}



/* Contact form: hidden spam trap and response messages */
.spamTrap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.formStatus {
  display: none;
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.formStatus.success {
  display: block;
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.formStatus.error {
  display: block;
  color: #7f1d1d;
  background: #fee2e2;
  border: 1px solid #fecaca;
}
