/* ============ ABOUT US PAGE ============ */

/* Hero */
.about-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 48px;
}

.about-hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* Story Sections */
.about-story {
  position: relative;
  background: var(--dark);
}

.about-story > .container {
  position: relative;
  z-index: 1;
}

/* Narrative blocks */
.story-chapter {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.story-chapter:last-of-type {
  border-bottom: none;
}

.story-chapter .chapter-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
  margin-bottom: 16px;
  display: block;
}

.story-chapter h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.story-chapter p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-chapter p:last-child {
  margin-bottom: 0;
}

/* Pull quote */
.story-pullquote {
  border-left: 3px solid var(--terra);
  padding: 12px 0 12px 24px;
  margin: 32px 0;
}

.story-pullquote p {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Image break between chapters */
.story-image {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 0;
}

.story-image img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-image figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

/* Stats / quick facts row */
.story-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 40px auto 0;
}

.story-fact {
  text-align: center;
}

.story-fact-value {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--terra);
  display: block;
}

.story-fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* Trail info callout */
.story-callout {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-callout h3 {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}

.story-callout p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Active nav link */
.nav-links a.active {
  color: var(--terra);
}

.nav-links a.active::after {
  width: 100%;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
  }

  .story-chapter {
    padding: 48px 0;
  }

  .story-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .story-callout {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .story-chapter h2 {
    font-size: 1.4rem;
  }

  .story-chapter p {
    font-size: 0.95rem;
  }

  .story-pullquote p {
    font-size: 1.1rem;
  }
}
