/* ─── About Us Section ─────────────────────────────────────────── */
.about-us {
  padding: 8rem 0;
  background-color: var(--color-bg-white);
}

.about-us__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-us__images {
  position: relative;
  height: 600px;
}

.about-us__image-main {
  width: 80%;
  height: 80%;
  border-radius: 40px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-us__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us__image-sub {
  width: 65%;
  height: 60%;
  border-radius: 30px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 10px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 2;
}

.about-us__image-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us__content {
  max-width: 580px;
}

.about-us__title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: #111;
  margin-bottom: 2.5rem;
  letter-spacing: -0.04em;
}

.about-us__desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.about-us__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.about-feature__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #fce7e8; /* Soft pink */
  border-radius: 6px;
  color: #111;
  padding: 4px;
}

.about-feature__check svg {
  width: 16px;
  height: 16px;
}

.about-feature__text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #333;
}

@media (max-width: 1024px) {
  .about-us {
    padding: 4rem 0;
  }

  .about-us__wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-us__images {
    height: 420px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    padding: 0 var(--container-padding);
  }
  
  .about-us__image-main {
    width: 65%;
    height: auto;
    aspect-ratio: 3 / 4;
    position: absolute;
    top: 0;
    left: var(--container-padding);
    border-radius: 60px 60px 40px 40px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .about-us__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-us__image-sub {
    width: 60%;
    height: auto;
    aspect-ratio: 4 / 3;
    position: absolute;
    bottom: 0;
    right: var(--container-padding);
    border-radius: 40px;
    z-index: 3;
    overflow: hidden;
    border: 6px solid var(--color-bg-white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }

  .about-us__image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-us__content {
    max-width: 100%;
    padding: 0 var(--container-padding) !important;
  }

  .about-us__title {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }
}
