/* ==========================================================================
   AKSO — About Page
   Personal, premium and understated. Large whitespace, editorial
   typography, no rounded corners or heavy shadows — matches the
   language established on Home, Photos, Videos and Projects.
   ========================================================================== */

/* ---------------------------------------------------------------------
   1. HERO
   Large cinematic header — heading + short introduction.
   --------------------------------------------------------------------- */
.about-hero {
  padding-bottom: var(--space-7);
}

.about-hero__eyebrow {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.about-hero__heading {
  max-width: 18ch;
}

.about-hero__intro {
  margin-top: var(--space-4);
  max-width: 48ch;
}

/* ---------------------------------------------------------------------
   2. PORTRAIT
   A single, isolated, generously-spaced portrait — the "strong
   portrait image section" on its own, not sharing a row with text.
   --------------------------------------------------------------------- */
.about-portrait-section {
  display: flex;
  justify-content: center;
  padding-bottom: var(--space-8);
}

.about-portrait {
  width: min(100%, 640px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--color-bg-elevated);
}

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

/* ---------------------------------------------------------------------
   3. BIOGRAPHY
   Kept short on purpose — a pull-quote accent line, then a handful of
   short paragraphs with generous space between them rather than one
   dense block.
   --------------------------------------------------------------------- */
.about-bio {
  padding-bottom: var(--space-8);
}

.about-bio__inner {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}

.about-bio__eyebrow {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.about-bio__quote {
  font-size: clamp(1.75rem, 1.2vw + 1.6rem, 2.75rem);
  margin-bottom: var(--space-6);
}

.about-bio__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: left;
}

.about-bio__paragraph {
  color: var(--color-text-secondary);
  font-size: var(--text-lead);
  line-height: var(--leading-relaxed);
}

/* ---------------------------------------------------------------------
   4. SERVICES
   A minimal, premium text list — no icons.
   --------------------------------------------------------------------- */
.about-services {
  padding-bottom: var(--space-8);
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-5);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-border);
  transition: border-color var(--duration-base) var(--ease-standard);
}

.service-item:first-child {
  border-top: 1px solid var(--color-border);
}

.service-item:hover {
  border-color: var(--color-border-hover);
}

.service-item__title {
  font-size: var(--text-h3);
  font-weight: var(--weight-medium);
}

.service-item__description {
  max-width: 48ch;
  align-self: center;
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}

/* ---------------------------------------------------------------------
   5. SELECTED CLIENTS / ARTISTS
   Plain text grid, intentionally not logos — see about-data.js.
   --------------------------------------------------------------------- */
.about-clients {
  padding-bottom: var(--space-8);
}

.clients-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5) var(--space-4);
}

.client-item {
  padding-block: var(--space-3);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-nav);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

@media (max-width: 900px) {
  .clients-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .clients-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------------------------------------------------------------
   6. CALL TO ACTION
   Same inverted full-width treatment as the Home CTA band, duplicated
   here per the established page-scoped CSS convention.
   --------------------------------------------------------------------- */
.about-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.about-cta__heading {
  max-width: 18ch;
}

.about-cta .btn-outline {
  border-color: var(--color-inverse-text);
  color: var(--color-inverse-text);
}

.about-cta .btn-outline:hover {
  background-color: var(--color-inverse-text);
  color: var(--color-inverse-bg);
}
