/* ============================================
   OUR APPROACH — Page-specific styles
   ============================================ */

/* --- Hero --- */
.app-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.app-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.app-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.app-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(45, 49, 66, 0.80) 0%,
    rgba(45, 49, 66, 0.55) 55%,
    rgba(74, 124, 89, 0.25) 100%
  );
}
.app-hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 600px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.app-hero__content h1 { color: var(--white); margin-bottom: 16px; }
.app-hero__content p  {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 0;
}

/* --- Philosophy --- */
.app-philosophy {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.app-philosophy__label .eyebrow { display: block; }
.app-philosophy__content h2 { margin-bottom: 20px; }
.app-philosophy__lead {
  font-size: 1.08rem !important;
  color: var(--charcoal) !important;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.app-philosophy__content p { color: var(--charcoal-light); font-size: 0.97rem; }

/* --- Ecosystem --- */
.app-ecosystem__header {
  max-width: 640px;
  margin-bottom: 52px;
}
.app-ecosystem__header h2 { margin-bottom: 4px; }
.app-ecosystem__header p  { color: var(--charcoal-light); font-size: 0.97rem; margin-top: 8px; }

.app-ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}
.app-eco-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--sage);
  transition: transform var(--transition), box-shadow var(--transition);
}
.app-eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(45,49,66,0.13);
}
.app-eco-card--featured {
  border-top-color: var(--amber);
  background: linear-gradient(135deg, #fff 70%, rgba(200,135,74,0.06) 100%);
}
.app-eco-card__icon { font-size: 1.8rem; margin-bottom: 14px; line-height: 1; }
.app-eco-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.app-eco-card p  { font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.75; margin-bottom: 0; }

.app-ecosystem__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16/6;
  object-position: center 40%;
  box-shadow: 0 16px 48px rgba(45,49,66,0.14);
}

/* --- Values --- */
.app-values__header { margin-bottom: 56px; }
.app-values__header h2 { color: var(--white); margin-bottom: 4px; }

.app-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.app-value {
  border-left: 3px solid rgba(255,255,255,0.15);
  padding-left: 28px;
}
.app-value__number {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 10px;
}
.app-value h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.app-value p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  margin-bottom: 0;
}

/* --- Team --- */
.app-team__inner { max-width: 760px; }
.app-team__inner h2 { margin-bottom: 4px; }
.app-team__intro {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.app-team__placeholder {
  background: var(--cream);
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.app-team__placeholder p {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-light);
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .app-philosophy        { grid-template-columns: 1fr; gap: 8px; }
  .app-philosophy__label { display: flex; align-items: center; gap: 16px; }
  .app-philosophy__label .divider { margin: 0; }
  .app-ecosystem__grid   { grid-template-columns: 1fr; }
  .app-values__grid      { grid-template-columns: 1fr; gap: 28px; }
  .app-hero              { min-height: 44vh; }
  .app-ecosystem__image img { aspect-ratio: 16/7; }
}
@media (max-width: 640px) {
  .app-hero { min-height: 40vh; }
  .app-value { padding-left: 20px; }
  .app-ecosystem__image img { aspect-ratio: 4/3; }
}
