/* ============================================================
   ABOUT — VERSION 2 (no profile images)
   ============================================================ */

/* HEADER */
.ab-header {
  padding: 14rem 2.5rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.ab-header > * {
  position: relative;
  z-index: 1;
}

.ab-waveform {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ab-header__label {
  grid-column: 1 / -1;
}

.ab-header__title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.ab-header__title em {
  font-style: italic;
  display: block;
}

.ab-header__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.65);
  align-self: end;
}

/* INTRO */
.ab-intro {
  padding: 6rem 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ab-intro__video {
  width: 100%;
  height: auto;
  display: block;
}

.ab-intro p {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
}

/* PARALLAX IMAGE */
.ab-parallax {
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.ab-parallax__img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transition: transform 0.05s linear;
}

/* BODY SECTIONS */
.ab-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 6rem;
  padding: 6rem 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
}

.ab-section__label {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 6rem;
}

.ab-section__body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.ab-section__body p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
}

/* BELIEFS */
.ab-beliefs {
  padding: 6rem 2.5rem 5rem;
  border-bottom: 1px solid var(--border-subtle);
  background-color: #111111;
}

.ab-beliefs__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4rem;
}

.ab-beliefs__list {
  list-style: none;
}

.ab-beliefs__item {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
  padding: 2rem 0 2rem 3rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  transition: color 0.3s ease;
}

.ab-beliefs__item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.ab-beliefs__item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ab-header {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 12rem 2.5rem 6rem;
  }

  .ab-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ab-section__label {
    position: static;
  }
}

@media (max-width: 768px) {
  .ab-parallax {
    height: 50vw;
    min-height: 280px;
  }

  .ab-header {
    padding: 10rem 1.5rem 5rem;
  }

  .ab-intro {
    padding: 4rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ab-section {
    padding: 4rem 1.5rem;
  }

  .ab-beliefs {
    padding: 4rem 1.5rem;
  }

  .ab-beliefs__item {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    padding-left: 2rem;
  }
}
