/* ═══════════════════════════════════════════════════════
   KRIDHA PRODUCTIONS — About Page Styles
   ═══════════════════════════════════════════════════════ */

/* ── Studio Story ── */
.studio-story {
  background: var(--black);
}

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

.story-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}

.story-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* ── Mission & Vision ── */
.mission-vision {
  background: var(--surface);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  padding: 48px 36px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.mv-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 166, 147, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.mv-card h3 {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--gold);
}

.mv-card p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Team ── */
.team-section {
  background: var(--black);
}

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

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--green-glow);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 166, 147, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

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

.team-card h3 {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.team-linkedin:hover,
.team-linkedin:focus-visible {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 15px var(--green-glow);
}

/* ── Awards Timeline ── */
.awards-section {
  background: var(--surface);
}

.awards-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 40px;
}

.awards-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--gold));
}

.award-item {
  position: relative;
  padding: 0 0 40px 32px;
}

.award-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--black);
  box-shadow: 0 0 15px var(--gold-glow);
}

.award-year {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-radius: 20px;
  margin-bottom: 10px;
}

.award-title {
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* ── Tools ── */
.tools-section {
  background: var(--black);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.tool-badge {
  padding: 20px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.tool-badge:hover {
  border-color: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
  transform: translateY(-3px);
}

.tool-icon-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 8px;
  font-weight: 700;
}

.tool-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

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

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
