/* ══════════════════════════════
   LEADERSHIP PAGE — leadership.css
══════════════════════════════ */

/* ── INTRO ── */
.leadership-intro {
  background: white;
}

.leadership-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.leadership-intro p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ── PROFILES ── */
.profiles {
  background: var(--cream);
  padding: 80px var(--page-pad) 96px;
}

.profiles-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.profile-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: stretch;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 43, 30, 0.07);
  transition: box-shadow .3s;
}

.profile-card:hover {
  box-shadow: 0 12px 40px rgba(13, 43, 30, 0.12);
}

/* Even cards — flip photo right */
.profile-card:nth-child(even) {
  grid-template-columns: 1fr 380px;
}

.profile-card:nth-child(even) .profile-photo {
  order: 2;
}

.profile-card:nth-child(even) .profile-info {
  order: 1;
}

.profile-photo {
  position: relative;
}

.profile-photo-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.profile-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.profile-role-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13, 43, 30, 0.92));
  padding: 40px 22px 18px;
}

.profile-role-tag {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.profile-photo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.profile-info {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-card:nth-child(even) .profile-info {
  padding: 40px 40px;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 4px;
  line-height: 1.1;
}

.profile-title {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 18px;
}

.profile-divider {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 20px;
}

.profile-bio p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.82;
  margin-bottom: 14px;
}

.profile-highlights {
  margin-top: 20px;
}

.profile-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.profile-highlight:last-child {
  border-bottom: none;
}

.ph-dot {
  width: 6px;
  height: 6px;
  background: var(--green-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── QUOTE ── */
.quote-section {
  background: var(--green-deep);
  padding: 88px var(--page-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 300px;
  color: rgba(255, 255, 255, 0.03);
  top: -60px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}

.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 22px;
}

.quote-attr {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  padding: 88px var(--page-pad);
  text-align: center;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 12px;
}

.cta p {
  color: rgba(245, 240, 232, 0.68);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* ════════════════════════════
   RESPONSIVE — LEADERSHIP
════════════════════════════ */

@media (max-width: 1024px) {

  .profile-card,
  .profile-card:nth-child(even) {
    grid-template-columns: 320px 1fr;
  }

  .profile-photo-img {
    min-height: 380px;
  }
}

@media (max-width: 860px) {

  /* Stack to single column — photo on top, info below */
  .profile-card,
  .profile-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .profile-card:nth-child(even) .profile-photo {
    order: 0;
  }

  .profile-card:nth-child(even) .profile-info {
    order: 0;
  }

  .profile-photo-img {
    min-height: 0;
    aspect-ratio: 4/3;
    max-height: 360px;
  }

  .profile-photo-img img {
    height: 100%;
    object-position: bottom center;
  }

  .profile-info,
  .profile-card:nth-child(even) .profile-info {
    padding: 28px 28px 32px;
  }

  .profiles {
    padding: 60px var(--page-pad) 72px;
  }

  .profiles-container {
    gap: 48px;
  }

  .quote-section {
    padding: 64px var(--page-pad);
  }

  .cta {
    padding: 60px var(--page-pad);
  }
}

@media (max-width: 600px) {
  .profile-photo-img {
    max-height: 280px;
  }

  .profile-info,
  .profile-card:nth-child(even) .profile-info {
    padding: 22px 20px 26px;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .profiles-container {
    gap: 36px;
  }

  .quote-section::before {
    display: none;
  }

  .quote-text {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
}

@media (max-width: 480px) {
  .profile-photo-img {
    max-height: 240px;
  }

  .profiles {
    padding: 44px var(--page-pad) 56px;
  }

  .cta {
    padding: 48px var(--page-pad);
  }
}