body.home {
  background: linear-gradient(140deg, #fff 0%, #f7f1ec 55%, #ffffff 100%);
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  background: linear-gradient(120deg, rgba(62, 204, 196, 0.18), rgba(229, 72, 120, 0.12)),
              url('/img/hero.jpg') no-repeat center center/cover;
  color: #fff;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(43, 35, 28, 0.7), rgba(44, 54, 63, 0.45));
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(43, 35, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-ink);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-width: 380px;
}

.panel-card h3 {
  margin-bottom: 12px;
}

.panel-card ul {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: #4a3f37;
}

.section-head .btn-outline-brand {
  border-color: var(--brand-pink);
  color: var(--brand-pink);
}

.section-head .btn-outline-brand:hover {
  background: var(--brand-pink);
  color: #fff;
}

.hero .btn-outline-brand {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero .btn-outline-brand:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.trust-strip {
  background: var(--brand-sand);
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-grid h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: #fff6f1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.section-head p {
  margin-bottom: 0;
  color: #5b514a;
}

.property-card--fresh {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(107, 53, 41, 0.12);
}

.property-card--fresh .property-card-body {
  gap: 12px;
}

.property-card--fresh .btn-property {
  border-radius: 999px;
}

.property-media img {
  height: 220px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-row span {
  border: 1px solid rgba(107, 53, 41, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(107, 53, 41, 0.08);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.step {
  border: 1px solid rgba(107, 53, 41, 0.2);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}

.step-number {
  font-weight: 700;
  color: var(--brand-pink);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.cta-band {
  background: linear-gradient(120deg, rgba(62, 204, 196, 0.2), rgba(229, 72, 120, 0.2));
  padding: 56px 0;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .panel-card {
    width: 100%;
  }
}
