/* Section 08: preserve the entire photo, including the phone and armchair. */
.home-lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
  max-width: none;
  margin: 75px 0 75px max(48px, calc((100vw - var(--max)) / 2));
  background: var(--bg);
}
.home-lifestyle-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 40px 0;
}
.home-lifestyle h2 {
  font-size: clamp(32px, 3.6vw, 58px);
  overflow-wrap: break-word;
}
.home-lifestyle-logo {
  display: block;
  width: 100%;
  margin-block: 24px;
}
.home-lifestyle-logo img { width: 100%; height: auto; }
.home-lifestyle-status {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 20px;
}
.home-lifestyle-right {
  flex: 0 0 14px;
  height: 22px;
  background: var(--mint);
  mask: url('/assets/chevron-right-heavy.png') center / contain no-repeat;
  -webkit-mask: url('/assets/chevron-right-heavy.png') center / contain no-repeat;
}
.home-lifestyle-status + p { margin-left: 28px; }
.home-lifestyle-photo {
  width: 112%;
  max-width: none;
  height: auto;
  margin-left: -12%;
  mask-image: linear-gradient(to right, transparent, #000 25%);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 25%);
}
@media (max-width: 900px) {
  .home-lifestyle {
    grid-template-columns: minmax(0, 1fr);
    margin: 75px 0;
  }
  .home-lifestyle-copy { padding: 0 48px 32px; max-width: 620px; }
  .home-lifestyle h2 { font-size: clamp(36px, 6vw, 52px); }
  .home-lifestyle-photo {
    width: 100%;
    margin: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
@media (max-width: 620px) {
  .home-lifestyle-copy { padding-inline: 20px; }
}
