/* Auto-generated from inline <style> in public/approach.html. */
/* All selectors scoped to .page-approach to prevent cross-page edit bleed. */

.page-approach .principles { background: var(--paper); padding-top: clamp(8px, 1.2vw, 16px); }
  .page-approach .principle-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
  .page-approach .principle:nth-child(1), .page-approach .principle:nth-child(2), .page-approach .principle:nth-child(3) { grid-column: span 2; }
  .page-approach .principle:nth-child(4), .page-approach .principle:nth-child(5) { grid-column: span 3; }
  @media (max-width: 1000px) {
    .page-approach .principle-grid { grid-template-columns: 1fr 1fr; }
    .page-approach .principle { grid-column: span 1 !important; }
    .page-approach .principle:nth-child(5) { grid-column: 1 / -1 !important; }
  }
  @media (max-width: 640px) {
    .page-approach .principle-grid { grid-template-columns: 1fr; }
    .page-approach .principle:nth-child(5) { grid-column: 1 !important; }
  }

  .page-approach .principle {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    padding: 36px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }
  .page-approach .principle:hover { transform: translateY(-4px); box-shadow: 0 20px 46px -26px rgba(44, 116, 68, 0.3); }
  .page-approach .principle .num {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 3.6rem;
    line-height: 1;
    color: var(--cream-deep);
    position: absolute;
    top: 24px; right: 28px;
    user-select: none;
    pointer-events: none;
    z-index: 0;
  }
  .page-approach .principle .title, .page-approach .principle .belief, .page-approach .principle .action {
    position: relative;
    z-index: 1;
  }
  .page-approach .principle .title { padding-right: 72px; }
  .page-approach .principle[data-accent="forest"] .num { color: var(--forest); opacity: 0.12; }
  .page-approach .principle[data-accent="lime"] .num { color: var(--lime); opacity: 0.4; }
  .page-approach .principle[data-accent="wheat"] .num { color: var(--wheat); opacity: 0.8; }
  .page-approach .principle[data-accent="apricot"] .num { color: var(--apricot); opacity: 0.5; }
  .page-approach .principle[data-accent="forest-deep"] .num { color: var(--forest-deep); opacity: 0.12; }

  .page-approach .principle .title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .page-approach .principle .title-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--forest);
    flex-shrink: 0;
  }
  .page-approach .principle[data-accent="lime"] .title-dot { background: var(--lime); }
  .page-approach .principle[data-accent="wheat"] .title-dot { background: var(--wheat); }
  .page-approach .principle[data-accent="apricot"] .title-dot { background: var(--apricot); }
  .page-approach .principle[data-accent="forest-deep"] .title-dot { background: var(--forest-deep); }

  .page-approach .principle h3 { margin: 0; font-size: 1.5rem; }
  .page-approach .principle .belief {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest-ink);
    margin: 0 0 14px;
    line-height: 1.4;
  }
  .page-approach .principle .action {
    color: var(--ink-soft);
    font-size: 1rem;
    margin: 0;
  }
  .page-approach .principle .action strong {
    color: var(--forest-ink);
    font-weight: 600;
  }

  /* Section divider label */
  .page-approach .divide-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    max-width: 720px;
  }
  .page-approach .divide-label .line { flex: 1; height: 1px; background: var(--rule); }

  /* Get Involved CTA band */
  .page-approach .cta-band {
    background: var(--lime);
    color: #fff;
    padding: clamp(72px, 9vw, 112px) 0;
    position: relative;
    overflow: hidden;
  }
  .page-approach .cta-band .wrap {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 860px) { .page-approach .cta-band .wrap { grid-template-columns: 1fr; text-align: left; } }
  .page-approach .cta-band .eyebrow { color: #173c22; }
  .page-approach .cta-band .eyebrow::before { background: #173c22; }
  .page-approach .cta-band h2 {
    color: #173c22;
    font-size: clamp(2rem, 3.6vw, 3rem);
    max-width: 20ch;
    margin-bottom: 12px;
  }
  .page-approach .cta-band p { color: #173c22; margin: 0; max-width: 48ch; }

/* Hero with photo (Our Approach page only) */
/* Reduce vertical padding so the Core Principles tiles peek above the fold */
.page-approach .page-hero.hero-with-photo {
  padding: clamp(24px, 3vw, 40px) 0 clamp(8px, 1.2vw, 16px);
}
.page-approach .page-hero.hero-with-photo .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.page-approach .page-hero.hero-with-photo::after { display: none; }
.page-approach .hero-photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 30px 60px -30px rgba(20, 50, 30, 0.35);
  background: var(--paper);
}
.page-approach .hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
@media (max-width: 900px) {
  .page-approach .page-hero.hero-with-photo .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
