/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #2c2c2c;
  background: #fff;
  font-size: 15px;
  line-height: 1.75;
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  text-decoration: none;
  color: #555;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #1a1a2e;
  background: rgba(91, 158, 201, 0.08);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    url('hero-bg.jpg') center center / cover no-repeat,
    linear-gradient(160deg, #b8cfe0 0%, #d6e4ed 40%, #e8eef2 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 35, 55, 0.30) 0%,
    rgba(20, 35, 55, 0.20) 60%,
    rgba(20, 35, 55, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =====================
   TEAM SECTION
   ===================== */
.team-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.section-title {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #1a1a2e;
  margin-bottom: 3.5rem;
}

.team-member {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
  align-items: start;
}

.team-member:last-child {
  margin-bottom: 0;
}

.member-photo-wrap {
  position: sticky;
  top: 84px;
}

.member-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #c8d8e4;
  border-radius: 2px;
}

.member-photo.placeholder {
  background: linear-gradient(145deg, #c5d8e8, #a8c0d4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo.placeholder::after {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.member-bio h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.member-bio p {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.member-bio p:last-child {
  margin-bottom: 0;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #f5f7f9;
  border-top: 1px solid #e4e9ed;
  text-align: center;
  padding: 1.75rem 1rem;
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.03em;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 680px) {
  .nav-brand span {
    display: none;
  }

  .team-member {
    grid-template-columns: 1fr;
  }

  .member-photo-wrap {
    position: static;
    max-width: 220px;
  }

  .hero-content h1 {
    font-size: 1.65rem;
  }
}
