﻿/* ── About Hero ── */
.about-hero {
  background: var(--dark);
  border-bottom: 3px solid var(--yellow);
  padding: 5rem 0;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-hero .hero-label {
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}

.about-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
}

/* ── About Section ── */
.about-section {
  padding: 5rem 0;
}

.about-section-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 3rem 0;
  border-bottom: var(--border);
}

.about-block:first-child {
  padding-top: 0;
}

.about-block:last-child {
  border-bottom: none;
}

.about-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  flex-shrink: 0;
  padding-top: 0.4rem;
  width: 2rem;
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  max-width: 560px;
}

.about-text p:last-of-type {
  margin-bottom: 1.5rem;
}

.about-text .btn {
  margin-top: 0.5rem;
}

/* ── Active nav link ── */
.nav-active {
  color: var(--yellow) !important;
  opacity: 1 !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .about-block {
    flex-direction: column;
    gap: 0.75rem;
  }
}

