/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ---- Hero with subtle video background ---- */
.about-hero {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero-title-over {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.hero-title-over .page-label {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-title-over h1 {
  font-size: clamp(3.5rem, 9vw, 10rem);
  color: var(--text);
}

/* ---- About Split Layout ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-bottom: 1px solid var(--border);
}

.about-photo-col {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  min-width: 0;
}

.about-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.85);
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.4) 0%, transparent 60%);
}

.about-text-col {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
  gap: 1.75rem;
  min-width: 0;
}

.about-name {
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 0.88;
  color: var(--text);
}

.about-divider {
  border: none;
  border-top: 1px solid var(--border-mid);
  width: 100%;
}

.about-role {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
}

.about-bio {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.85;
  font-style: italic;
  max-width: 440px;
}

.about-specialties {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-specialties li {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.about-specialties li::before {
  content: '— ';
  color: var(--text-dim);
}

/* ---- Gear / Kit Section ---- */
.gear-section {
  padding: var(--section-pad) var(--pad-x);
  border-bottom: 1px solid var(--border);
}

.gear-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  margin-top: 3rem;
}

.gear-category-block {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.gear-category-label {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.gear-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.gear-row:last-child {
  border-bottom: none;
}

.gear-item-name {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 100px;
}

.gear-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--border-mid) 0,
    var(--border-mid) 2px,
    transparent 2px,
    transparent 6px
  );
  margin: 0 0.75rem;
  position: relative;
  top: -0.25em;
}

.gear-value {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text);
  flex-shrink: 0;
  text-align: right;
}

/* ---- CTA Strip ---- */
.about-cta {
  padding: clamp(4rem, 8vw, 8rem) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.about-cta-headline {
  font-size: clamp(2.5rem, 6vw, 7rem);
  line-height: 0.9;
  color: var(--text);
}

.about-cta-link {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-blue);
  border-bottom: 1px solid var(--accent-blue);
  padding-bottom: 0.3rem;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.about-cta-link:hover {
  color: var(--text);
  border-color: var(--text);
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-photo-col {
    height: 50vw;
  }

  .about-text-col {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .gear-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}
