/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Arial', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 1100px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.logo img { height: 54px; width: 120px; }

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.45; }

.nav-cta {
  background: #000;
  color: #fff;
  padding: 11px 28px;
  font-size: 20px;
  text-decoration: none;
}

.nav-cta:hover { opacity: 0.75; }

/* ── TEAM SECTION ── */
.team {
  margin-top: 100px;
  padding: 60px 48px;
  display: flex;
  justify-content: center;
  background: #f5f5f5;
}

.team-inner { width: 1100px; }

.team-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* ── CEO ── */
.team-ceo {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.team-ceo .team-card {
  flex: 0 0 280px;
  max-width: 280px;
  padding: 20px;
}

.team-ceo .team-card img { height: 300px; }

.team-ceo .team-card h3 { font-size: 16px; }

.team-ceo .team-card p { font-size: 14px; }

/* ── LEADERS SECTION ── */
.team-leaders-section { margin-bottom: 180px; }

.team-leaders-section .team-card {
  flex: 0 0 280px;
  max-width: 280px;
  padding: 20px;
}

.team-leaders-section .team-card img { height: 260px; }

.team-leaders-section .team-card h3 { font-size: 16px; }

.team-leaders-section .team-card p { font-size: 14px; }

/* ── MEMBERS SECTION ── */
.team-members-section { margin-top: 50px; }

/* ── GRID ── */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: stretch;
}

/* ── CARD — default (members) ── */
.team-card {
  flex: 0 0 180px;
  max-width: 180px;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ── IMAGE — default (members) ── */
.team-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-bottom: 12px;
  filter: grayscale(100%);
  transition: filter 0.3s;
  flex-shrink: 0;
}

.team-card:hover img { filter: grayscale(0%); }

/* ── TEXT — default (members) ── */
.team-card h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card p {
  font-size: 12px;
  color: #666;
  margin-top: auto;
}

/* ── FOOTER ── */
footer { background: #000; padding: 32px 48px; }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-social { display: flex; gap: 16px; }

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, opacity 0.2s;
}

.footer-social a:hover { border-color: #fff; opacity: 0.75; }

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .team-inner, .nav-inner { width: 90%; }
  .team-grid { gap: 16px; }
  .team-members-section .team-card { flex: 0 0 150px; max-width: 150px; }
  .team-members-section .team-card img { height: 150px; }
}

@media (max-width: 700px) {
  .team-members-section .team-card { flex: 0 0 140px; max-width: 140px; }
}

@media (max-width: 550px) {
  .team-ceo .team-card { max-width: 240px; margin: 0 auto; }
  .team-members-section .team-card { flex: 0 0 130px; max-width: 130px; }
}