/* ============================================
   LUEN – ABOUT PAGE
   ============================================ */

.about-page {
  background-color: var(--color-cream, #FAF7F4);
  padding-top: 8rem;
  padding-bottom: 5rem;
}

/* ================= HERO ================= */

.about-hero {
  max-width: 64rem;
  margin: 0 auto 6rem;
  text-align: center;
}

.about-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: #7A3451;
  display: block;
  margin-bottom: 1rem;
}

.about-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.2;
  color: #391B26;
  margin-bottom: 2rem;
}

.about-title-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #7A3451;
}

.about-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555;
  max-width: 42rem;
  margin: 0 auto;
}

/* ================= SECTIONS ================= */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #D6C8D0;
  aspect-ratio: 4 / 5;
  background-color: var(--color-rose-quartz);
  overflow: hidden;
}

.about-image-rounded {
  border-radius: 50% 50% 0 0;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 1s ease;
}

.about-image-grayscale {
  filter: grayscale(100%);
}

.about-image-wrapper:hover .about-image-grayscale {
  filter: grayscale(0%);
}

.about-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.about-label-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.25rem;
}

/* ================= LIST ================= */

.about-list {
  list-style: none;
  padding: 0;
}

.about-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.about-list-dot {
  width: 6px;
  height: 6px;
  background: #7A3451;
  border-radius: 50%;
}

/* ================= VALUES ================= */

.about-values {
  margin-bottom: 8rem;
}

.about-values-title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: #fff;
  border: 1px solid rgba(214,200,208,.6);
  padding: 2rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.value-icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: #FAF7F4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1;
}

/* ================= FOUNDER ================= */

.founder-note {
  background: #fff;
  border: 1px solid #D6C8D0;
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
}

.founder-note-border {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: #391B26;
}

.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2rem;
}

.founder-quote {
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.founder-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #7A3451;
}

/* ================= MOBILE ================= */

@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 2.5rem;
  }
  .about-page {
    padding-left: 15px;
    padding-right 15px;
  }

}
