/* ==========================================================================
   ABOUT — heyamychen.com
   ========================================================================== */


/* --------------------------------------------------------------------------
   PAGE FOLD
   -------------------------------------------------------------------------- */

.page-fold {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--grid-margin) 4rem;
  gap: 2.875rem;
}

.page-tagline {
  font-family: var(--font-primary);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking);
  color: var(--color-forest);
  max-width: 42rem;
}

.page-hero__headline {
  font-family: var(--font-primary);
  font-size: var(--text-hero);
  font-weight: var(--weight-regular);
  opacity: 0;
  line-height: calc(var(--leading-hero) * 0.9);
  letter-spacing: var(--tracking);
  color: var(--color-moss);
}

@media (max-width: 1023px) {
  .page-hero { padding-bottom: 3rem; }
}

@media (max-width: 639px) {
  .page-fold { min-height: 100svh; }
  .page-hero { padding-bottom: 2.5rem; gap: 1.75rem; }
  .page-hero__headline { font-size: clamp(2.5rem, 12vw, 10rem); }
}


/* --------------------------------------------------------------------------
   CONTENT — image + two stacked text blocks
   -------------------------------------------------------------------------- */

.about-content {
  padding: 0 var(--grid-margin) 4.5rem;   /* 4.5rem = 72px above the rule */
  margin-top: 2.875rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding-top: 3rem;
}

/* Left column: portrait photo spanning both text blocks */
.about-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--color-placeholder);
}

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

/* Right column: two text blocks stacked */
.about-texts {
  display: flex;
  flex-direction: column;
}

.about-text-who {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 4.5rem;
}

.about-text-what {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Section labels — "Who I am" / "What I do" */
.bio-label {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking);
  color: var(--color-moss);
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 0.25rem;
}

/* Section headline — "A creative with an architect's mind..." */
.bio-statement {
  font-family: var(--font-primary);
  font-size: var(--text-pullquote);   /* 40px */
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking);
  color: var(--color-forest);
}

/* Discipline list — "Research. Strategy. / UX. Content. / Team leadership." */
.bio-disciplines {
  font-family: var(--font-primary);
  font-size: var(--text-pullquote);   /* 40px — same weight as statement */
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking);
  color: var(--color-forest);
}

/* Body text */
.bio-body {
  font-family: var(--font-primary);
  font-size: var(--text-body-lg);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
  letter-spacing: var(--tracking);
  color: var(--color-forest);
  max-width: 36rem;
}

/* Inline link (Substack) */
.bio-body a {
  color: var(--color-clay);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
}

.bio-body a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}



/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2.5rem;
  }

  .about-image {
    aspect-ratio: 4 / 3;
  }

  .about-content {
    margin-top: 2.5rem;
  }

  .about-text-who {
    padding-bottom: 3rem;
  }
}

@media (max-width: 639px) {
  .about-content {
    margin-top: 2rem;
  }

}
