/* ── Reset & Base ─────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #2d2d2d;
  line-height: 1.7;
}

/* ── Navbar ───────────────────────────────────── */
.navbar {
  background: #1a1a2e;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-brand {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #aab4c8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

/* ── Hero Section ─────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  color: white;
  padding: 80px 40px;
  text-align: center;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.1rem;
  color: #aab4c8;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: #e94560;
  color: white;
}

.btn-primary:hover {
  background: #c73652;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
  border-color: white;
}

/* ── Main Content ─────────────────────────────── */
.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* ── Section ──────────────────────────────────── */
.section {
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e94560;
}

.section-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 28px;
  max-width: 780px;
}

/* ── Cards ────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 3px solid #e94560;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

/* ── Team ─────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.team-card {
  background: white;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.team-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a2e;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.team-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.82rem;
  color: #777;
}

/* ── Figures ──────────────────────────────────── */
.figure {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin: 24px 0;
}

.figure img {
  width: 100%;
  display: block;
}

.figure figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  border-top: 1px solid #f0f0f0;
}

/* ── Callout ──────────────────────────────────── */
.callout {
  border-left: 4px solid #e94560;
  background: #fff5f6;
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: #333;
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: #1a1a2e;
  color: #aab4c8;
  text-align: center;
  padding: 32px 40px;
  font-size: 0.88rem;
}

.footer a {
  color: #e94560;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ── Page Navigation ──────────────────────────── */
.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 40px 0;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .nav-container { flex-direction: column; height: auto; padding: 16px 0; gap: 12px; }
  .main-content { padding: 40px 20px; }
}