/* ============================================
   ABOUT.CSS — About Page Styles
   Urban Hustle Fitness — Andrea Chaisson
   ============================================ */

/* ---- ABOUT HERO ---- */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-primary);
  padding-top: 80px;
  overflow: hidden;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.about-hero-text {
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.about-hero-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--color-champagne);
  font-weight: 300;
}

.about-hero-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 520px;
}

.about-hero-image {
  position: relative;
  overflow: hidden;
}

.about-hero-img-frame {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.about-hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
}

.about-hero-img-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.about-hero-img-corner--tl {
  top: 20px;
  left: 20px;
  border-top: 2px solid var(--color-champagne);
  border-left: 2px solid var(--color-champagne);
}

.about-hero-img-corner--br {
  bottom: 20px;
  right: 20px;
  border-bottom: 2px solid var(--color-champagne);
  border-right: 2px solid var(--color-champagne);
}

/* ---- STORY TIMELINE ---- */
.story-section {
  overflow: hidden;
}

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

.story-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-champagne), var(--color-champagne-dark), transparent);
  opacity: 0.3;
  transform: translateX(-50%);
}

.story-block {
  width: 45%;
  margin-bottom: 60px;
  position: relative;
}

.story-block::before {
  content: '';
  position: absolute;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--color-champagne);
  border-radius: 50%;
}

.story-block--left {
  margin-right: auto;
  padding-right: 40px;
  text-align: right;
}

.story-block--left::before {
  right: -4px;
  right: calc(-5% - 4px);
}

.story-block--right {
  margin-left: auto;
  padding-left: 40px;
}

.story-block--right::before {
  left: calc(-5% - 4px);
}

.story-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.story-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-dark-secondary);
  line-height: 1.9;
  margin-bottom: 12px;
}

/* ---- PHILOSOPHY ---- */
.philosophy-quote {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 0;
}

.philosophy-quote-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-champagne);
  display: block;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 24px;
}

.philosophy-quote-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-title-dark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.pillar-desc-dark {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ---- CREDENTIALS ---- */
.credentials-headline {
  margin-bottom: 60px;
}

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

.credential-tile {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--color-border-gold);
  background: var(--color-bg-tertiary);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.credential-tile:hover {
  border-color: var(--color-border-gold-strong);
  transform: translateY(-4px);
}

.credential-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-champagne);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.credential-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 16px;
}

.credential-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ---- BEYOND SECTION ---- */
.beyond-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.beyond-text {
  text-align: left;
}

.beyond-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ---- ABOUT CTA ---- */
.about-cta-content {
  text-align: center;
  padding: 60px 0;
}

.about-cta-headline {
  margin-bottom: 16px;
}

.about-cta-sub {
  font-size: var(--text-body-lg);
  font-weight: 300;
  color: var(--color-text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-trust {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-top: 24px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-text {
    padding: 100px 24px 60px;
    text-align: center;
  }

  .about-hero-body {
    max-width: 100%;
  }

  .about-hero-img-frame {
    min-height: 400px;
  }

  .about-hero-text .gold-line--left {
    margin: 24px auto;
  }

  .story-line {
    display: none;
  }

  .story-block {
    width: 100%;
    padding: 0;
    text-align: left;
    margin-bottom: 40px;
  }

  .story-block--left {
    text-align: left;
    padding-right: 0;
  }

  .story-block::before {
    display: none;
  }

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