/* ABOUT PAGE CSS */
.about-hero {
  height: 50vh;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding-top: 80px; /* offset navbar */
}

.about-hero__breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-hero__breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-hero__breadcrumb a:hover {
  color: var(--white);
}

.about-hero__breadcrumb-sep {
  margin: 0 8px;
  color: var(--gold);
}

.about-hero__breadcrumb-current {
  color: var(--white);
}

.about-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

/* ABOUT STORY */
.about-story {
  background-color: var(--white-cream);
}

.about-story__row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
}

.about-story__row:last-child {
  margin-bottom: 0;
}

.about-story__row--reverse {
  flex-direction: row-reverse;
}

.about-story__content {
  flex: 1;
}

.about-story__image {
  flex: 1;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story__title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--black);
  margin: 24px 0;
  line-height: 1.2;
}

.about-story__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.about-story__desc:last-child {
  margin-bottom: 0;
}

/* MISSION VISION VALUES */
.about-mvv {
  background-color: var(--black-soft);
}

.about-mvv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-mvv__item {
  display: flex;
  flex-direction: column;
}

.about-mvv__number {
  font-family: 'DM Mono', monospace;
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1;
}

.about-mvv__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
}

.about-mvv__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* WHY YIWU */
.about-why {
  background-color: var(--white-cream);
  text-align: center;
}

.about-why__header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-why__title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--black);
  margin-bottom: 24px;
}

.about-why__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
}

.about-why__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--gold);
  padding-top: 60px;
}

.about-why__stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--black);
  margin-bottom: 16px;
}

.about-why__stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CERTIFICATIONS */
.about-cert {
  background-color: var(--white-cream);
}

.about-cert__row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-cert__image {
  flex: 1;
}

.about-cert__image-frame {
  padding: 8px;
  border: 2px solid var(--gold);
  position: relative;
}

.about-cert__image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.about-cert__content {
  flex: 1;
}

.about-cert__title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--black);
  margin: 24px 0;
  line-height: 1.2;
}

.about-cert__desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-cert__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-cert__list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.about-cert__list li strong {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

/* CTA BANNER */
.about-cta {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.about-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.about-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.6);
  z-index: -1;
}

.about-cta__container {
  position: relative;
  z-index: 1;
}

.about-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 40px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-story__row,
  .about-story__row--reverse {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-mvv__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-why__stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-cert__row {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero__title {
    font-size: 42px;
  }
  
  .about-story__title,
  .about-cert__title {
    font-size: 32px;
  }
  
  .about-why__title,
  .about-cta__title {
    font-size: 36px;
  }
  
  .about-why__stat-val {
    font-size: 42px;
  }
}

/* Full text inclusion layout */
.about-story__content-block {
  max-width: 1200px;
  margin: 0 auto;
}
.about-story__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 30px;
  margin-top: -10px;
}
.about-story__text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about-story__text-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-story__col h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--black);
}
.about-story__col p {
  margin-bottom: 16px;
  color: var(--charcoal);
  line-height: 1.8;
}
.about-story__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.about-story__list li {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.about-story__list strong {
  display: block;
  font-family: var(--font-body);
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}
.about-story__list p {
  margin: 0;
  font-size: 15px;
}
