.care-deep-dive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 72px;
}

.contact-card .email-link {
  font-size: clamp(.92rem, 1.8vw, 1.35rem);
  white-space: nowrap;
  overflow-wrap: normal;
  letter-spacing: -.01em;
}

.contact-phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 18px 0 22px;
}

.contact-phones a {
  display: flex;
  flex-direction: column;
  padding: 14px 15px;
  border-radius: 14px;
  background: #eee4f6;
  color: #51227b;
  text-decoration: none;
}

.contact-phones span {
  margin-bottom: 3px;
  color: #665e6b;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-phones strong {
  font-size: 1rem;
  white-space: nowrap;
}

.site-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo {
  width: 116px;
  height: 116px;
}

.care-detail {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid #ded8e2;
  border-radius: 26px;
  background: #fff;
}

.care-detail h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
}

.care-detail > p:not(.eyebrow) {
  color: #665e6b;
}

.live-in-detail {
  background: #51227b;
  color: #fff;
  border-color: #51227b;
}

.live-in-detail > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.care-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.care-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid rgba(81, 34, 123, .14);
}

.care-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: #743ca0;
  font-weight: 700;
}

.live-in-detail .care-list li {
  border-color: rgba(255, 255, 255, .16);
}

.live-in-detail .care-list li::before {
  color: #dbc3ef;
}

.text-link {
  color: #51227b;
  font-weight: 700;
  text-decoration: none;
}

.light-link {
  color: #fff;
}

.area-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 65px;
  align-items: end;
  padding: 46px;
  margin-top: 22px;
  border-radius: 26px;
  background: #dbeaf2;
}

.area-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.area-band > p {
  margin-bottom: 0;
  color: #49424d;
}

@media (max-width: 900px) {
  .care-deep-dive,
  .area-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .contact-phones {
    grid-template-columns: 1fr;
  }

  .site-logo {
    width: 60px;
    height: 60px;
  }

  .footer-logo {
    width: 100px;
    height: 100px;
  }

  .care-deep-dive {
    margin-top: 52px;
  }

  .care-detail,
  .area-band {
    padding: 28px 24px;
  }
}
