/* ==========================================================================
   SCOUT PHOTOGRAPHY — ABOUT PAGE
   Cairo Atelier, Lead Artists, Equipment Vault, and Timeline
   ========================================================================== */

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}

.story-visual {
  position: relative;
}

.story-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
}

.story-img-sub {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-xs);
  border: 2px solid var(--bg-primary);
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-lead {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 18px;
}

.story-text {
  font-size: 0.92rem;
  color: var(--foxgloves);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 90px;
}

.value-card {
  padding: 30px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  transition: border-color var(--transition-fast);
}

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

.value-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: rgba(127, 49, 196, 0.15);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vega-violet);
  margin-bottom: 18px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--foxgloves);
  line-height: 1.7;
}

/* Team / Lead Artists */
.team-section {
  margin-bottom: 90px;
}

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

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

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

.team-photo-wrap {
  height: 340px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.team-card:hover .team-photo {
  transform: scale(1.03);
}

.team-info {
  padding: 22px;
}

.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vega-violet);
  margin-bottom: 4px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.team-bio {
  font-size: 0.86rem;
  color: var(--foxgloves);
  line-height: 1.6;
  margin-bottom: 14px;
}

.team-gear-tag {
  display: inline-block;
  font-size: 0.74rem;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--foxgloves);
}

/* Gear Vault */
.gear-vault-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 50px 40px;
  margin-bottom: 90px;
}

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

.gear-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 22px;
  transition: border-color var(--transition-fast);
}

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

.gear-icon-box {
  width: 36px;
  height: 36px;
  color: var(--vega-violet);
  margin-bottom: 12px;
}

.gear-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 6px;
}

.gear-card p {
  font-size: 0.82rem;
  color: var(--foxgloves);
  line-height: 1.5;
}

/* Timeline */
.timeline-section {
  margin-bottom: 70px;
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 30px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 16px 36px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vega-violet);
  border: 2px solid var(--bg-primary);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -5px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -5px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vega-violet);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.84rem;
  color: var(--foxgloves);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .gear-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .timeline::before {
    left: 18px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 42px;
  }
  .timeline-item .timeline-dot {
    left: 13px !important;
  }
  .gear-vault-section {
    padding: 32px 20px;
  }
  .gear-grid {
    grid-template-columns: 1fr;
  }
}
