/* ========================================
   ABOUT HERO
   ======================================== */

.about-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg-deep);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(7, 12, 24, 0.6) 0%,
    rgba(7, 12, 24, 0.95) 70%
  );
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.about-hero-inner h1 {
  margin-bottom: 20px;
}

.about-hero-inner p {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ========================================
   ABOUT — COMPANY STORY
   ======================================== */

.about-story {
  padding: 100px 0;
  border-bottom: 1px solid var(--bg-border);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story-text .tag {
  margin-bottom: 12px;
}

.about-story-text h2 {
  margin-bottom: 24px;
}

.about-story-text .story-body {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-story-text .story-body p + p {
  margin-top: 16px;
}

.about-story-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
}

/* ========================================
   ABOUT — MISSION & VALUES
   ======================================== */

.about-mission {
  padding: 100px 0;
  border-bottom: 1px solid var(--bg-border);
  background-color: var(--bg-card);
}

.about-mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.about-mission-inner h2 {
  margin-bottom: 16px;
}

.about-mission-inner .mission-text {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background-color: var(--bg-deep);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s;
}

.value-card:hover {
  border-color: var(--accent);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-1);
}

.value-card p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   ABOUT — TEAM
   ======================================== */

.about-team {
  padding: 100px 0;
  border-bottom: 1px solid var(--bg-border);
}

.about-team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
}

.about-team-header h2 {
  margin-bottom: 16px;
}

.about-team-header .team-intro {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.team-culture-img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  overflow: hidden;
}

.team-culture-img img {
  width: 100%;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s;
}

.team-card:hover {
  border-color: var(--accent);
}

.team-card .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}

.team-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.team-card .bio {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ========================================
   ABOUT — LOCATIONS
   ======================================== */

.about-locations {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--bg-border);
}

.about-locations h2 {
  text-align: center;
  margin-bottom: 48px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.location-card {
  background-color: var(--bg-deep);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.location-card:hover {
  border-color: var(--accent);
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-card-body {
  padding: 24px;
}

.location-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.location-card-body .loc-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.location-card-body p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.6;
}

.location-card-body a {
  color: var(--accent);
  font-size: 0.88rem;
}

/* ========================================
   ABOUT — STATS BAR
   ======================================== */

.about-stats {
  padding: 48px 0;
  border-bottom: 1px solid var(--bg-border);
}

.about-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.about-stat-item {
  position: relative;
}

.about-stat-item + .about-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--bg-border);
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-top: 4px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 960px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-stats-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .about-stat-item + .about-stat-item::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 120px 0 60px;
  }

  .about-story,
  .about-mission,
  .about-team,
  .about-locations {
    padding: 64px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}