/* ============================================================
   ABOUT PAGE — Carter & Associates
   Story, Values, Team, Timeline
   ============================================================ */

/* ================================================================
   STORY SECTION
   ================================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.story-para {
  font-size: var(--fs-md);
  color: #444;
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}

.story-awards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid #e0e0e0;
}

.story-award {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.story-award__icon {
  font-size: var(--fs-xl);
  flex-shrink: 0;
  margin-top: 2px;
}

.story-award strong {
  display: block;
  font-weight: var(--fw-semibold);
  color: var(--color-text-dark);
  font-size: var(--fs-base);
}

.story-award span {
  font-size: var(--fs-sm);
  color: #777;
}

/* Image stack */
.story-img-stack {
  position: relative;
}

.story-img-stack__main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  height: 440px;
}

.story-img-stack__accent {
  position: absolute;
  bottom: -var(--sp-6);
  right: calc(-1 * var(--sp-8));
  width: 55%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  bottom: calc(-1 * var(--sp-8));
}

/* ================================================================
   VALUES SECTION
   ================================================================ */
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: var(--transition-slow);
}

.value-card:hover {
  border-color: var(--color-border);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.value-card__title {
  font-size: var(--fs-xl);
  color: var(--color-text-light);
  margin-bottom: var(--sp-3);
}

.value-card__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-loose);
}

/* ================================================================
   TEAM SECTION
   ================================================================ */
.team-section {
  background: var(--color-bg-dark);
}

/* ================================================================
   TIMELINE
   ================================================================ */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: var(--sp-8);
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), rgba(201, 168, 76, 0.1));
}

.timeline__item {
  position: relative;
  padding-bottom: var(--sp-10);
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: calc(-1 * var(--sp-8));
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  border: 3px solid var(--color-surface);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}

.timeline__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}

.timeline__title {
  font-size: var(--fs-xl);
  color: var(--color-text-dark);
  margin-bottom: var(--sp-2);
}

.timeline__text {
  font-size: var(--fs-sm);
  color: #555;
  line-height: var(--lh-loose);
}

/* ================================================================
   RESPONSIVE — ABOUT
   ================================================================ */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .story-img-stack__accent {
    right: 0;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .story-img-stack__main {
    height: 300px;
  }

  .story-img-stack__accent {
    display: none;
  }

  .timeline {
    padding-left: var(--sp-6);
  }

  .timeline__marker {
    left: calc(-1 * var(--sp-6));
    width: 20px;
    height: 20px;
  }
}
