/* ═══════ LANDING HERO ═══════ */
.landing-hero-wrap {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.landing-hero-wrap .hero-scene {
  margin-top: auto;
}
.landing-hero {
  padding: 60px clamp(20px, 4vw, 60px) 40px;
}
.landing-hero-wrap .hero-scene {
  background: transparent;
  flex-shrink: 0;
}
.landing-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.landing-hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--stone-200);
}
.landing-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.landing-hero-text .section-heading {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}
.landing-hero-price {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 20px;
}
.landing-hero-desc {
  font-size: calc(0.95rem + 2px);
  color: var(--navy);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 28px;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 960px) {
  .landing-hero-inner { grid-template-columns: 1fr; }
  .landing-hero-photo { max-width: 500px; }
}
