*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #1A4B89;
  --brand-dark: #0f2a4f;
  --brand-light: #2466b8;
  --orange: #E07A1B;
  --orange-dark: #c9690f;
  --fg: #111827;
  --fg-muted: rgba(55,65,90,0.65);
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --border: rgba(0,0,0,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --nav-h: 68px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* HERO */
.page-hero { background: var(--brand); padding: 64px 64px 0; position: relative; overflow: hidden; }
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.page-hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--orange); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: 1.06; letter-spacing: -1.5px; color: white; margin-bottom: 16px; }
.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.6); }
.page-hero-sub { font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 520px; }
.hero-team-photo { position: relative; z-index: 1; margin-top: 40px; border-radius: 8px 8px 0 0; overflow: hidden; max-height: 300px; }
.hero-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-team-photo-dim { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, var(--bg), transparent); }

/* STATS STRIP */
.stats-strip { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 32px 64px; display: flex; gap: 0; }
.stat-item { flex: 1; padding: 0 40px; border-right: 1px solid var(--border); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 500; color: var(--brand); letter-spacing: -1px; line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-lbl { font-size: 12px; color: var(--fg-muted); margin-top: 4px; font-weight: 300; }

/* SECTION */
.team-section { padding: 72px 64px; }
.team-section:nth-child(even) { background: var(--bg-soft); }
.section-header { margin-bottom: 40px; }
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--orange); }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 500; color: var(--fg); letter-spacing: -0.5px; line-height: 1.1; }
.section-title em { font-style: italic; color: var(--brand); }
.section-count { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

/* TEAM GRID - LEADERS (4 col) */
.leaders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* TEAM GRID - STAFF (5 col) */
.staff-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

/* TEAM CARD */
.team-card {
  background: white; border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  cursor: pointer; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.1); border-color: rgba(26,75,137,0.2); }
.card-photo { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--bg-soft); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.5s; }
.team-card:hover .card-photo img { transform: scale(1.05); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,42,79,0.7) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; }
.team-card:hover .card-overlay { opacity: 1; }
.card-bio-btn { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%) translateY(4px); background: white; color: var(--brand); font-size: 11px; font-weight: 600; padding: 6px 16px; border-radius: 100px; white-space: nowrap; opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.team-card:hover .card-bio-btn { opacity: 1; transform: translateX(-50%) translateY(0); }
.card-body { padding: 16px 18px 18px; flex: 1; }
.card-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 3px; line-height: 1.2; }
.card-role { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }
.card-specialty { font-size: 12px; color: var(--fg-muted); margin-top: 6px; font-weight: 300; }

/* Compact card (smaller for large teams) */
.team-card.compact .card-photo { aspect-ratio: 1/1; }
.team-card.compact .card-name { font-size: 14px; }
.team-card.compact .card-body { padding: 12px 14px 14px; }

/* BIO MODAL */
.bio-modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(15,42,79,0.6); backdrop-filter: blur(8px); opacity: 0; pointer-events: none; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; padding: 24px; }
.bio-modal-overlay.open { opacity: 1; pointer-events: all; }
.bio-modal { background: white; border-radius: 14px; max-width: 560px; width: 100%; box-shadow: 0 24px 80px rgba(0,0,0,0.2); transform: translateY(20px); transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); overflow: hidden; max-height: 90vh; display: flex; flex-direction: column; }
.bio-modal-overlay.open .bio-modal { transform: translateY(0); }
.bio-modal-header { display: flex; align-items: center; gap: 18px; padding: 24px 28px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.bio-modal-photo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--bg-soft); }
.bio-modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.bio-modal-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--fg); line-height: 1.2; }
.bio-modal-role { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-top: 3px; }
.bio-modal-close { margin-left: auto; width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--fg-muted); flex-shrink: 0; transition: background 0.2s; }
.bio-modal-close:hover { background: var(--brand); color: white; border-color: var(--brand); }
.bio-modal-body { padding: 24px 28px; overflow-y: auto; }
.bio-modal-text { font-size: 14px; line-height: 1.85; color: var(--fg-muted); font-weight: 300; }

/* PARTNERS STRIP */
.partners-strip { padding: 56px 64px; border-top: 1px solid var(--border); }
.partners-title { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 24px; text-align: center; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.partner-logo { height: 36px; object-fit: contain; opacity: 0.6; filter: grayscale(1); transition: opacity 0.2s, filter 0.2s; }
.partner-logo:hover { opacity: 1; filter: grayscale(0); }

/* ASSOCIATIONS */
.associations { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 48px 64px; }
.assoc-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.assoc-logo { height: 44px; object-fit: contain; }

/* CTA BAND */
.cta-band { background: var(--brand); padding: 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-top: 1px solid rgba(0,0,0,0.1); }
.cta-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 500; color: white; line-height: 1.15; letter-spacing: -0.5px; }
.cta-title em { font-style: italic; color: rgba(255,255,255,0.6); }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 8px; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }
.btn-orange { padding: 14px 28px; background: var(--orange); color: white; border-radius: 4px; text-decoration: none; font-size: 14px; font-weight: 600; transition: background 0.2s; white-space: nowrap; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline-white { padding: 13px 26px; border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); background: transparent; border-radius: 4px; text-decoration: none; font-size: 14px; font-weight: 500; transition: border-color 0.2s, color 0.2s; white-space: nowrap; }
.btn-outline-white:hover { border-color: white; color: white; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .leaders-grid { grid-template-columns: repeat(3, 1fr); }
  .staff-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .page-hero { padding: 48px 24px 0; }
  .stats-strip { padding: 24px 24px; flex-wrap: wrap; }
  .stat-item { min-width: 140px; border-right: none; padding: 12px 0; }
  .team-section { padding: 52px 24px; }
  .leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band { flex-direction: column; padding: 48px 24px; }
  .partners-strip, .associations { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .leaders-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
}
