/* ============================================
   COACHING PAGE STYLES
   ============================================ */

/* --- Philosophy / Convergence --- */
.philosophy-section {
  padding: 96px 0;
  background: #F7F5EF;
}
.philosophy-inner {
  max-width: 768px;
  margin: 0 auto;
}
.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: #1B3326;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .philosophy-quote { font-size: 30px; }
}
.philosophy-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(27, 51, 38, 0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}
.philosophy-emphasis {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #2B6B4F;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.philosophy-bio {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(27, 51, 38, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}
.philosophy-bio-emphasis {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(27, 51, 38, 0.8);
  font-style: italic;
  line-height: 1.7;
}


/* --- Recognition Layer --- */
.recognition-section {
  padding: 96px 0;
  background: rgba(27, 51, 38, 0.03);
}
.recognition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 896px;
  margin: 48px auto 0;
}
@media (min-width: 768px) {
  .recognition-grid { grid-template-columns: 1fr 1fr; }
}
.recognition-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(27, 51, 38, 0.75);
  line-height: 1.7;
}
.recognition-closing {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(27, 51, 38, 0.7);
  line-height: 1.7;
  text-align: center;
  max-width: 768px;
  margin: 48px auto 0;
}
.recognition-tag {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #2B6B4F;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}


/* --- Soft CTA --- */
.soft-cta-section {
  padding: 64px 0;
  background: #F7F5EF;
  text-align: center;
}
.soft-cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: rgba(27, 51, 38, 0.7);
  line-height: 1.7;
  max-width: 576px;
  margin: 0 auto 24px;
}


/* --- Three Pillars --- */
.pillars-section {
  padding: 96px 0;
  background: rgba(27, 51, 38, 0.03);
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.pillar-card {
  border-radius: 12px;
  overflow: hidden;
  background: #F7F5EF;
  box-shadow: 0 4px 12px -2px rgba(27, 51, 38, 0.08);
  transition: box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  box-shadow: 0 12px 24px -4px rgba(27, 51, 38, 0.12);
}
.pillar-img-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.pillar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.pillar-card:hover .pillar-img-wrap img {
  transform: scale(1.05);
}
.pillar-body {
  padding: 24px;
  flex: 1;
}
.pillar-icon {
  width: 24px;
  height: 24px;
  color: #2B6B4F;
  margin-bottom: 12px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1B3326;
  margin-bottom: 12px;
}
.pillar-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(27, 51, 38, 0.65);
  line-height: 1.7;
}


/* --- Specialized Paths --- */
.specialized-section {
  padding: 96px 0;
  background: #F7F5EF;
}
.specialized-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .specialized-grid { grid-template-columns: 1fr 1fr; }
}
.specialized-card {
  border-radius: 12px;
  overflow: hidden;
  background: #F7F5EF;
  box-shadow: 0 4px 12px -2px rgba(27, 51, 38, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.specialized-card:hover {
  box-shadow: 0 12px 24px -4px rgba(27, 51, 38, 0.12);
}
.specialized-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.specialized-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.specialized-card:hover .specialized-img-wrap img {
  transform: scale(1.05);
}
.specialized-img-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  color: #D4A853;
}
.specialized-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.specialized-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1B3326;
  margin-bottom: 12px;
}
.specialized-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(27, 51, 38, 0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.specialized-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B6B4F;
  text-decoration: none;
  transition: color 0.2s;
}
.specialized-link:hover { color: #1B3326; }
.specialized-link svg {
  width: 16px; height: 16px;
}
.specialized-coming-soon {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(43, 107, 79, 0.5);
}


/* --- How the Work Happens --- */
.how-section {
  padding: 96px 0;
  background: rgba(27, 51, 38, 0.03);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 768px;
  margin: 48px auto 0;
}
@media (min-width: 640px) {
  .how-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.how-icon {
  width: 24px;
  height: 24px;
  color: #2B6B4F;
  margin-bottom: 12px;
}
.how-label {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: #1B3326;
  margin-bottom: 4px;
}
.how-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(27, 51, 38, 0.6);
  line-height: 1.6;
}
