.ig-landing{
  background:#f8f6f0;
  min-height:60vh;
}

.ig-hero{
  background:linear-gradient(135deg,#173f30 0%,#245b47 100%);
  color:#fff;
  padding:72px 0 66px;
}

.ig-hero-inner{
  max-width:850px;
  text-align:center;
}

.ig-hero .eyebrow{
  color:#f0d68f;
  margin-bottom:12px;
}

.ig-hero h1{
  color:#fff;
  margin:0;
  font-size:clamp(38px,6vw,68px);
  line-height:1.02;
}

.ig-hero-copy{
  max-width:720px;
  margin:20px auto 0;
  font-size:18px;
  line-height:1.65;
  color:rgba(255,255,255,.9);
}

.ig-properties{
  padding:56px 0 76px;
}

.ig-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:28px;
}

.ig-section-head h2{
  margin:4px 0 0;
}

.ig-all-link{
  color:#173f30;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}

.ig-all-link:hover{
  text-decoration:underline;
}

.ig-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.ig-card{
  background:#fff;
  border:1px solid rgba(23,63,48,.11);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(26,42,34,.08);
  display:flex;
  flex-direction:column;
  min-width:0;
}

.ig-card-image{
  position:relative;
  display:block;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#e8e3d7;
}

.ig-card-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .25s ease;
}

.ig-card:hover .ig-card-image img{
  transform:scale(1.025);
}

.ig-card-badge{
  position:absolute;
  left:14px;
  bottom:14px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:8px 12px;
  background:rgba(16,31,24,.86);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  backdrop-filter:blur(7px);
}

.ig-card-body{
  display:flex;
  flex:1;
  flex-direction:column;
  padding:20px;
}

.ig-card h3{
  margin:0;
  font-size:22px;
  line-height:1.2;
}

.ig-card h3 a{
  color:#173f30;
  text-decoration:none;
}

.ig-card h3 a:hover{
  text-decoration:underline;
}

.ig-location{
  margin:10px 0 0;
  color:#5f675f;
  line-height:1.45;
}

.ig-details{
  margin:8px 0 0;
  color:#353b36;
  font-size:14px;
  font-weight:650;
}

.ig-view-button{
  width:100%;
  margin-top:20px;
  text-align:center;
}

.ig-empty{
  max-width:720px;
  margin:0 auto;
  padding:42px;
  text-align:center;
  background:#fff;
  border:1px solid rgba(23,63,48,.11);
  border-radius:18px;
  box-shadow:0 12px 34px rgba(26,42,34,.07);
}

.ig-empty h3{
  margin-top:0;
}

@media (max-width:900px){
  .ig-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .ig-section-head{
    align-items:flex-start;
    flex-direction:column;
  }
  .ig-all-link{
    white-space:normal;
  }
}

@media (max-width:620px){
  .ig-hero{
    padding:48px 0 44px;
  }
  .ig-hero-copy{
    font-size:16px;
  }
  .ig-properties{
    padding:36px 0 52px;
  }
  .ig-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .ig-card-body{
    padding:18px;
  }
  .ig-empty{
    padding:28px 20px;
  }
}
