/* About Page Styles */

/* ── Page Hero Banner ── */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-behind);
  overflow: hidden;
}

.about-hero__bg .placeholder-img {
  width: 100%;
  height: 120%; /* extra height for parallax travel */
  object-fit: cover;
  will-change: transform;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.15) 0%,
    rgba(26, 26, 26, 0.45) 100%
  );
  z-index: var(--z-base);
}

.about-hero__content {
  position: relative;
  z-index: var(--z-above);
  padding-inline: var(--container-px);
}

.about-hero__overline {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-4);
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--weight-light);
  color: var(--color-white);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

/* ── Story Section ── */
.about-story {
  background-color: var(--color-white);
}

.about-story__portrait {
  position: relative;
  overflow: hidden;
}

.about-story__portrait .placeholder-img {
  width: 100%;
  aspect-ratio: 3 / 4;
}

.about-story__content {
  padding-block: var(--space-4);
}

.about-story__name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-regular);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.about-story__role {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.about-story__text {
  font-size: var(--text-base);
  color: var(--color-text-body);
  line-height: var(--leading-relaxed);
  max-width: 55ch;
}

.about-story__signature {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-text);
  margin-top: var(--space-6);
}

/* ── Core Values Section ── */
.about-values {
  background-color: var(--color-cream-light);
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.about-value {
  text-align: center;
  padding: var(--space-6);
}

.about-value__icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
}

.about-value__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.about-value__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 35ch;
  margin-inline: auto;
}

/* ── Press / Awards Section ── */
.about-press {
  padding-block: var(--section-py);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-white);
}

.about-press__heading {
  text-align: center;
  margin-bottom: var(--space-4);
}

.about-press__subtext {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}

.about-press__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  align-items: center;
  justify-items: center;
}

@media (min-width: 768px) {
  .about-press__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .about-press__logos {
    grid-template-columns: repeat(6, 1fr);
  }
}

.about-press__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  opacity: 0.5;
  white-space: nowrap;
  font-style: italic;
  text-align: center;
  padding: var(--space-4);
  transition: opacity var(--duration-base) var(--ease-out);
}

.about-press__logo:hover {
  opacity: 0.85;
}
