.about-page {
  background:
    linear-gradient(
      180deg,
      #f5f2ee 0%,
      #f7f4ef 45%,
      #f3eee8 100%
    );
}

.about-section {
  padding: 9rem 0 5rem;
}

.about__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about__intro {
  max-width: 48rem;
}

.about__eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--color-primary-variant);
  margin-bottom: 0.9rem;
}

.about__title {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  line-height: 1.05;
  color: var(--color-primary);
  margin: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
}

.about__left {
  position: relative;
}

.about__image-wrap {
  position: sticky;
  top: 7.5rem;
  width: 100%;
}

.about__image-accent {
  position: absolute;
  inset: 1.5rem -1.2rem -1.5rem 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(166, 124, 82, 0.18) 0%,
    rgba(17, 17, 17, 0.08) 100%
  );
  border-radius: 1.8rem;
}

/* IMAGE CARD */

.about__image-card {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0 1.4rem 3rem rgba(0,0,0,0.12);
}

/* blurred fill background */

.about__image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/70.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(35px) brightness(0.85);
  transform: scale(1.15);
}

/* main image */

.about__image-card img {
  position: relative;
  width: 100%;
  height: min(44rem, 70vh);
  object-fit: contain;
  object-position: center;
  z-index: 2;
}

/* RIGHT CONTENT */

.about__right {
  min-width: 0;
}

.about__content-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 1.6rem;
  padding: 2rem 2rem 2.1rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}

.about__content-card p {
  font-size: 1.04rem;
  line-height: 1.95;
  color: #333333;
  margin: 0 0 1.35rem;
}

.about__content-card p:last-child {
  margin-bottom: 0;
}

/* TABLET */

@media screen and (max-width: 1100px) {

  .about-section {
    padding: 8rem 0 4.5rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-wrap {
    position: relative;
    top: auto;
    max-width: 42rem;
  }

  .about__image-card img {
    height: 32rem;
  }

  .about__content-card {
    padding: 1.8rem 1.6rem 1.9rem;
  }

}

/* MOBILE */

@media screen and (max-width: 768px) {

  .about-section {
    padding: 7.4rem 0 4rem;
  }

  .about__container {
    gap: 2.2rem;
  }

  .about__eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .about__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .about__grid {
    gap: 2rem;
  }

  .about__image-accent {
    inset: 1rem -0.7rem -1rem 0.7rem;
    border-radius: 1.3rem;
  }

  .about__image-card {
    border-radius: 1.3rem;
  }

  .about__image-card img {
    height: 24rem;
  }

  .about__content-card {
    border-radius: 1.2rem;
    padding: 1.4rem 1.2rem 1.5rem;
  }

  .about__content-card p {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1.1rem;
  }

}

@media screen and (max-width: 520px) {

  .about__image-card img {
    height: 21rem;
  }

  .about__content-card p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

}
