/* =========================================================
   About Page
   Page-specific styles (loads only on /about)
   ========================================================= */

/* Shared section rhythm for this page */
.about-hero,
.about-background,
.about-approach,
.about-why,
.about-exit{
  padding: 4.5rem 0 5rem;
  border-top: 1px solid var(--color-rule);
}

/* First section doesn't need a top border */
.about-hero{
  border-top: 0;
  padding-top: 3.75rem;
}

/* Mobile rhythm */
@media (max-width: 991.98px){
  .about-hero,
  .about-background,
  .about-approach,
  .about-why,
  .about-exit{
    padding: 3.25rem 0 3.75rem;
  }

  .about-hero{
    padding-top: 2.75rem;
  }
}

/* -----------------------------------------
   Hero
   ----------------------------------------- */

.about-title{
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.5px;
  font-size: clamp(2.1rem, 3.2vw, 3.25rem);
}

.about-lede{
  margin: 0;
  max-width: 64ch;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Optional hero media (portrait / venue detail) */
.about-hero-media{
  margin: 0;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
}

.about-hero-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991.98px){
  .about-hero-media{
    height: 280px;
  }
}

/* -----------------------------------------
   Prose blocks
   ----------------------------------------- */

.about-prose{
  max-width: 72ch;
}

.about-prose p{
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
}

.about-prose p + p{
  margin-top: var(--space-md);
}

/* Optional callout note inside prose */
.about-note{
  margin-top: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 1px solid var(--color-highlight);
  color: var(--color-text-muted);
  max-width: 72ch;
}

/* -----------------------------------------
   Approach steps (3-column blocks)
   ----------------------------------------- */

.approach-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 991.98px){
  .approach-steps{
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.approach-step{
  height: 100%;
  padding-top: .25rem;
  border-top: 1px solid var(--color-accent-ink);
}

.approach-title{
  margin: .75rem 0 .35rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-teal);
}

.approach-text{
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
  max-width: 60ch;
}

/* -----------------------------------------
   Exit / CTA
   ----------------------------------------- */

.about-cta{
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Right column supporting note (optional) */
.about-exit .about-note{
  margin-top: 0;
  padding: var(--space-md);
  border-left: 1px solid var(--color-highlight);
  border-radius: var(--radius-lg);
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.about-image figcaption {
  max-width: 40ch;
}
