/* ══════════════════════════════════════════
   OUR APPROACH PAGE — Styles
   ══════════════════════════════════════════ */

.page-hero {
  padding: 160px 0 80px;
  background: var(--warm-white);
}

.page-hero .section-heading {
  max-width: 800px;
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--cream);
}

.problem-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.problem-item {
  padding: 32px;
  border-left: 2px solid var(--light-gold);
}

.problem-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--deep-black);
  margin-bottom: 12px;
}

.problem-item p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── PHILOSOPHY ── */
.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.philosophy-text p {
  margin-bottom: 20px;
}

.pull-quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--soft-green);
  padding: 40px;
  border-left: 2px solid var(--light-gold);
  margin: 24px 0;
}

/* ── PROCESS TIMELINE ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--fog);
}

.timeline-step {
  position: relative;
  padding-left: 72px;
  padding-bottom: 48px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--soft-green);
  z-index: 2;
  transition: all 0.3s;
}

.timeline-step:hover .timeline-number {
  background: var(--soft-green);
  color: #fff;
  border-color: var(--soft-green);
}

.timeline-step h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--deep-black);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--soft-green);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--warm-white);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.cta-band .btn-primary {
  background: var(--warm-white);
  color: var(--soft-green);
}

.cta-band .btn-primary:hover {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .problem-items {
    grid-template-columns: 1fr;
  }

  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
