/* ============================================
   VALUMO DIGITAL — About Page Styles
   ============================================ */

/* --- HERO --- */
.about-hero {
  background: #111;
  padding: calc(88px + 48px) 0 80px;
}

.about-hero-inner {
  max-width: 720px;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}

.about-hero-headline {
  font-family: var(--font-main);
  font-size: var(--size-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #ffffff;
}

/* --- SECTIONS --- */
.about-section {
  padding: 96px 0;
}

.about-section--light {
  background: #fafaf8;
  color: #1a1a1a;
}

.about-section--dark {
  background: #111;
  color: #f5f5f0;
}

/* --- SPLIT LAYOUT --- */
.about-split {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.about-split-label {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-label {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.6;
}

.about-section--dark .about-label {
  color: #ffffff;
}

.about-section-heading {
  font-family: var(--font-main);
  font-size: var(--size-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000;
}

/* --- BODY TEXT --- */
.about-lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-split-body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-section--light .about-split-body p {
  color: #1a1a1a;
}

.about-section--light .about-lead {
  color: #1a1a1a;
}

.about-section--dark .about-split-body p,
.about-section--dark .about-lead {
  color: #ffffff;
  opacity: 1;
}

.about-split-body .btn-primary {
  margin-top: 16px;
}

/* --- PERSON --- */
.about-person-name {
  font-family: var(--font-main);
  font-size: var(--size-h2);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.about-inline-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-section--light .about-inline-link {
  color: #000;
}

.about-person-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 32px;
}

/* --- PHOTO --- */
.about-photo-wrap {
  width: 100%;
  max-width: 360px;
  margin-top: 8px;
}

.about-photo {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-hero {
    padding: calc(88px + 80px) 0 64px;
  }

  .about-section {
    padding: 64px 0;
  }

  .about-photo-wrap {
    max-width: 100%;
  }

  .about-person-role {
    font-size: 0.85rem;
  }
}
