/* ============================================
   SKULL INK - About Page Styles
   ============================================ */

/* ============================================
   ABOUT HERO
   ============================================ */
.about-hero {
  min-height: 100vh;
  padding-top: 100px;
  background: var(--bg-base);
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 100px);
}

.about-hero__content {
  position: sticky;
  top: 120px;
  padding: 48px 0;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 32px;
}

.about-hero__divider {
  width: 80px;
  height: 2px;
  background: var(--text-primary);
  margin-bottom: 32px;
}

.about-hero__text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-hero__image {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
  padding: 96px 0;
  background: var(--bg-surface);
}

.timeline-section__title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 64px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--text-primary);
}

.timeline-item {
  padding-left: 48px;
  padding-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateX(-32px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--text-primary);
  border-radius: 50%;
}

.timeline-item__year {
  font-family: var(--font-accent);
  font-size: var(--text-h2);
  color: var(--text-ghost);
  line-height: 1;
  margin-bottom: 8px;
}

.timeline-item__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-item__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   STUDIO GALLERY STRIP
   ============================================ */
.gallery-strip {
  padding: 64px 0;
  background: var(--bg-base);
  overflow: hidden;
}

.gallery-strip__inner {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-strip__inner::-webkit-scrollbar {
  display: none;
}

.gallery-strip__item {
  flex: 0 0 400px;
  height: 300px;
  scroll-snap-align: start;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 96px 0;
  background: var(--bg-deep);
}

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

.value-card {
  text-align: center;
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--accent-red);
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.value-card__divider {
  width: 40px;
  height: 1px;
  background: var(--border-strong);
  margin: 0 auto 16px;
}

.value-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
  }

  .about-hero__content {
    position: relative;
    top: 0;
    padding: 48px 0;
  }

  .about-hero__image {
    height: 50vh;
  }

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

@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    padding-left: 40px;
  }

  .timeline-item::before {
    left: 3px;
  }

  .gallery-strip__item {
    flex: 0 0 300px;
    height: 225px;
  }
}
