*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; margin: 0; }

/* ── Sticky nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}
header.nav-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* ── Hero ── */
.hero {
  position: relative;
  background-color: #4a5a4a;
  will-change: transform, opacity;
  transform-origin: center center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero.png') center / cover no-repeat;
  filter: blur(6px);
  transform: scale(1.05);
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }

/* ── Card icon ── */
.card-icon {
  width: 36px; height: 36px;
  border: 1.5px solid #e2e2e2;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Tilt card ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* ── Team photos ── */
.team-photo {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Orange decorative parallelograms ── */
.team-deco-right {
  position: absolute;
  bottom: -24px; right: 0;
  width: 200px; height: 48px;
  background: #E85320;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 3;
}
.team-deco-left {
  position: absolute;
  bottom: -24px; left: 0;
  width: 200px; height: 48px;
  background: #E85320;
  clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 0% 100%);
  z-index: 3;
}

/* ── Mobile menu ── */
.mobile-nav { display: none; }
.mobile-nav.open { display: flex; }

/* ── Image placeholder ── */
.img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 13px; font-style: italic;
}
