/* ============================================
   ABOUT US PAGE STYLES
   Forever Ronghua Foundation
   ============================================ */

/* ---- About Page Hero ---- */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.about-hero:hover .about-hero__bg {
  transform: scale(1.03);
}

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

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45, 41, 38, 0.85) 0%,
    rgba(45, 41, 38, 0.4) 50%,
    rgba(45, 41, 38, 0.2) 100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-margin);
  padding-bottom: 80px;
}

.about-hero__pretitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(247, 245, 240, 0.8);
  margin-bottom: 12px;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.about-hero__subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 245, 240, 0.7);
  max-width: 600px;
}

/* ---- Story Section ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-image:hover img {
  transform: scale(1.03);
}

.story-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.story-lead {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-charcoal) !important;
  margin-bottom: 24px;
}

/* ---- Quote Section ---- */
.quote-section {
  padding: 120px 0;
  background-color: var(--color-bg-dark);
}

.quote-deco {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-clay);
  margin-bottom: 8px;
  opacity: 0.6;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-cream);
  max-width: 800px;
  margin: 0 auto 32px;
}

.quote-source {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 245, 240, 0.5);
}

/* ---- Founder Cards ---- */
.founder-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border);
}

.founder-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.founder-card--reversed {
  grid-template-columns: 3fr 2fr;
}

.founder-card--reversed .founder-card__image {
  order: 2;
}

.founder-card--reversed .founder-card__content {
  order: 1;
}

.founder-card__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
}

.founder-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.founder-card__image:hover img {
  transform: scale(1.03);
}

.founder-card__content {
  padding: 16px 0;
}

.founder-card__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-clay);
  margin-bottom: 8px;
}

.founder-card__name {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-charcoal);
  margin-bottom: 24px;
}

.founder-card__bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.founder-card__favorites {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.founder-card__fav-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  margin-right: 8px;
}

.founder-card__fav-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--color-clay);
}

/* ---- Vision Cards ---- */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.vision-card {
  padding: 40px 32px;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vision-card:hover {
  box-shadow: 0 8px 32px rgba(45, 41, 38, 0.08);
  transform: translateY(-4px);
}

.vision-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-clay);
  opacity: 0.4;
  margin-bottom: 20px;
}

.vision-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.vision-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(45, 41, 38, 0.75);
}

.cta-section__content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: 24px;
}

.cta-section__text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(247, 245, 240, 0.85);
  margin-bottom: 40px;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about-hero__title {
    font-size: 56px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-image {
    max-height: 400px;
  }

  .founder-card,
  .founder-card--reversed {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .founder-card--reversed .founder-card__image,
  .founder-card--reversed .founder-card__content {
    order: unset;
  }

  .founder-card__name {
    font-size: 36px;
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section__title {
    font-size: 48px;
  }

  .quote-text {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    height: 60vh;
    min-height: 400px;
  }

  .about-hero__content {
    padding-bottom: 48px;
  }

  .about-hero__title {
    font-size: 40px;
  }

  .about-hero__subtitle {
    font-size: 12px;
  }

  .story-grid {
    gap: 32px;
  }

  .story-lead {
    font-size: 18px !important;
  }

  .founder-card,
  .founder-card--reversed {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .founder-card__image {
    aspect-ratio: 4/3;
    max-height: 350px;
  }

  .founder-card__name {
    font-size: 32px;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .quote-section {
    padding: 80px 0;
  }

  .quote-deco {
    font-size: 80px;
  }

  .quote-text {
    font-size: 20px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .cta-section__title {
    font-size: 36px;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
