/* ============================================
   About page styles — pages#about
   Mobile-first, single breakpoint at 600px.
   Uses design tokens from application.css :root.
   ============================================ */

/* ============================================
   Navigation (shared with landing — will
   extract to partial when landing is updated)
   ============================================ */
.landing-nav {
  display: flex;
  gap: var(--spacing-md);
  margin-left: auto;
}

.landing-nav a {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-muted);
  text-decoration: none;
  transition: color 150ms ease;
}

.landing-nav a:hover,
.landing-nav a.active {
  color: var(--color-accent);
}

.landing-header .landing-container {
  display: flex;
  align-items: center;
}

/* ============================================
   About hero
   ============================================ */
.about-hero {
  padding: var(--spacing-3xl) 0;
  background: var(--color-surface);
  border-bottom: 3px solid var(--color-gold);
}

.about-hero h1 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-accent);
  margin: 0 0 var(--spacing-lg);
  max-width: 40rem;
}

.about-hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
  max-width: 36rem;
}

/* ============================================
   Story section — past work
   ============================================ */
.about-story {
  padding: var(--spacing-3xl) 0;
}

.about-story h2,
.about-why h2,
.about-process h2,
.about-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: 0 0 var(--spacing-xl);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
}

.story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  padding: var(--spacing-xl);
}

.story-card h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin: 0 0 var(--spacing-md);
}

.story-card p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0 0 var(--spacing-md);
  line-height: 1.7;
}

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

.story-lesson {
  font-style: italic;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding-top: var(--spacing-md);
}

/* ============================================
   Why section
   ============================================ */
.about-why {
  padding: var(--spacing-3xl) 0;
  background: var(--color-accent);
}

.about-why h2 {
  color: #ffffff;
}

.why-content p {
  font-size: 1.0625rem;
  color: var(--color-accent-light);
  margin: 0 0 var(--spacing-lg);
  line-height: 1.7;
  max-width: 36rem;
}

.why-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Process steps
   ============================================ */
.about-process {
  padding: var(--spacing-3xl) 0;
  background: var(--color-surface);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.process-step {
  display: flex;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--color-border);
}

.process-step:last-child {
  border-bottom: none;
}

/* ============================================
   CTA section
   ============================================ */
.about-cta {
  padding: var(--spacing-3xl) 0;
  background: var(--color-accent);
  text-align: center;
}

.about-cta h2 {
  color: #ffffff;
}

.about-cta p {
  font-size: 1.0625rem;
  color: var(--color-accent-light);
  margin: 0 auto var(--spacing-xl);
  max-width: 32rem;
  line-height: 1.7;
}

.btn-book {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background: var(--color-gold);
  color: #ffffff;
  font-size: 1rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 150ms ease, transform 150ms ease;
}

.btn-book:hover {
  background: var(--color-gold-hover, #7a5710);
  transform: translateY(-1px);
}

.btn-book:active {
  transform: translateY(0);
}

/* ============================================
   Desktop breakpoint (600px+)
   ============================================ */
@media (min-width: 600px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero-sub {
    font-size: 1.25rem;
  }

  .about-story h2,
  .about-why h2,
  .about-process h2,
  .about-cta h2 {
    font-size: 1.75rem;
  }

  .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 var(--spacing-2xl);
  }

  .process-step:nth-child(odd) {
    border-right: 1px solid var(--color-border);
    padding-right: var(--spacing-2xl);
  }

  .process-step:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
