/* ─── HERO ───────────────────────────────────────────────────── */
.shs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.shs-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,22,40,.9) 0%, rgba(10,22,40,.72) 50%, rgba(17,34,64,.88) 100%),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
  z-index: 0;
}
.shs-hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.shs-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
}
.shs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}
.shs-hero__eyebrow::before,
.shs-hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.shs-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .35s forwards;
}
.shs-hero__title em { font-style: italic; color: var(--gold); }
.shs-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}
.shs-hero__search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  opacity: 0;
  animation: fadeUp .9s var(--ease) .65s forwards;
}
.shs-hero__search svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  stroke: var(--gold);
}
.shs-hero__search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: .95rem;
  color: #fff;
}
.shs-hero__search input::placeholder { color: rgba(255,255,255,.4); }
.shs-hero__search-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.shs-hero__search-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.shs-hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 56px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .8s forwards;
}
.shs-hero__stat { text-align: center; }
.shs-hero__stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.shs-hero__stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  display: block;
}
.shs-hero__stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* ─── IDX ────────────────────────────────────────────────────── */
.shs-idx__wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10,22,40,.12);
  border: 1px solid rgba(10,22,40,.08);
}

/* ─── NEIGHBORHOODS ──────────────────────────────────────────── */
.shs-nbhd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.shs-nbhd-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.shs-nbhd-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.shs-nbhd-card:hover img { transform: scale(1.06); }
.shs-nbhd-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.88) 0%, rgba(10,22,40,.2) 60%, transparent 100%);
}
.shs-nbhd-card__content {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
}
.shs-nbhd-card__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.shs-nbhd-card__count {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-light);
}
.shs-nbhd-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ─── WHY SPRING ─────────────────────────────────────────────── */
.shs-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.shs-why__images { position: relative; }
.shs-why__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(10,22,40,.18);
}
.shs-why__img-accent {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--cream);
  bottom: -32px; right: -32px;
  box-shadow: 0 20px 60px rgba(10,22,40,.2);
}
.shs-why__badge {
  position: absolute;
  top: 32px; left: -24px;
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10,22,40,.25);
}
.shs-why__badge-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.shs-why__badge-label {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.shs-why__features { display: flex; flex-direction: column; gap: 20px; }
.shs-why__feature { display: flex; align-items: flex-start; gap: 16px; }
.shs-why__feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.shs-why__feature-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.shs-why__feature-title { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.shs-why__feature-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.6; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.shs-testimonials { position: relative; overflow: hidden; }
.shs-testimonials::after {
  content: '"';
  position: absolute;
  top: -20px; left: 40px;
  font-family: var(--serif);
  font-size: 300px;
  color: rgba(201,168,76,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.shs-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.shs-testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 20px;
  padding: 36px;
  transition: background .3s, border-color .3s, transform .3s;
}
.shs-testi-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
}
.shs-testi-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }
.shs-testi-card__text { font-size: .93rem; line-height: 1.75; color: rgba(255,255,255,.82); margin-bottom: 28px; font-style: italic; }
.shs-testi-card__author { display: flex; align-items: center; gap: 12px; }
.shs-testi-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.shs-testi-card__name { font-size: .88rem; font-weight: 600; color: #fff; }
.shs-testi-card__detail { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.shs-cta { background: var(--cream); }
.shs-cta__inner {
  background: var(--navy);
  border-radius: 28px;
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.shs-cta__inner::before {
  content: '';
  position: absolute;
  top: -80px; right: 200px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
}
.shs-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shs-why__grid { grid-template-columns: 1fr; gap: 48px; }
  .shs-why__img-accent { right: -16px; bottom: -16px; }
  .shs-testimonials__grid { grid-template-columns: 1fr 1fr; }
  .shs-cta__inner { padding: 48px 40px; }
}
@media (max-width: 768px) {
  .shs-hero__stats { flex-direction: column; gap: 24px; align-items: center; }
  .shs-hero__stat-divider { display: none; }
  .shs-hero__search { flex-direction: column; padding: 16px; }
  .shs-hero__search input { width: 100%; }
  .shs-hero__search-btn { width: 100%; text-align: center; }
  .shs-testimonials__grid { grid-template-columns: 1fr; }
  .shs-cta__inner { grid-template-columns: 1fr; padding: 48px 32px; }
  .shs-cta__buttons { flex-direction: row; flex-wrap: wrap; }
}
