html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Poppins, sans-serif;
  color: #4d4643;
  background: #fff;
}

.page-shell {
  width: 100%;
  background: #fff;
}

.about-section {
  padding: 80px 0;
  background: #fff;
}

.page-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f18d1b;
}

.about-copy {
  margin: 22px 0 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: #5c544f;
}

.about-copy + .about-copy {
  margin-top: 16px;
}

.about-photo {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2, .7, .3, 1);
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 48px 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.about-image-wrap:hover .about-photo {
  transform: scale(1.05);
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .45) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}

.about-image-wrap:hover::after {
  opacity: 1;
}

.team-card {
  background: #f7f3ef;
  border-radius: 0 0 38px 0;
  border: 1px solid #e8e1d9;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(60, 60, 60, .05);
  transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s ease;
}

.team-section {
  padding: 74px 0;
  background: #eeeae7;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  color: #000;
}

.section-heading span {
  display: inline-block;
  margin-top: 14px;
  width: 50px;
  height: 3px;
  background: #f18d1b;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}


.team-card img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s cubic-bezier(.2, .7, .3, 1);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(241, 141, 27, .18) !important;
}

.team-card:hover img {
  transform: scale(1.06);
}

.team-image-wrap {
  position: relative;
  overflow: hidden;
}

.team-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .45) 100%);
  opacity: 0;
  transition: opacity .35s ease;
}

.team-card:hover .team-image-wrap::after {
  opacity: 1;
}

.team-body {
  padding: 20px 22px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.team-card h3 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  color: #f18d1b;
}

.team-position {
  margin-top: 5px;
  font-size: 13.5px;
  color: #8a837e;
}

.team-linkedin {
  flex: 0 0 auto;
  color: #b3aca7;
  transition: color .2s;
}

.team-linkedin:hover {
  color: #f18d1b;
}

.team-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #827a73;
  padding: 28px 0;
}

.team-skeleton {
  background: #f7f3ef;
  border-radius: 0 0 38px 0;
  border: 1px solid #e8e1d9;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(60, 60, 60, .05);
}

.skeleton-block {
  position: relative;
  overflow: hidden;
  background: #e4ded8;
}

.skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  animation: skeleton-shimmer 1.35s infinite;
}

.team-skeleton-image {
  height: 260px;
}

.team-skeleton-body {
  padding: 20px 22px 24px;
}

.team-skeleton-title {
  width: 72%;
  height: 22px;
  border-radius: 6px;
}

.team-skeleton-line {
  width: 58%;
  height: 13px;
  margin-top: 10px;
  border-radius: 6px;
}

.value-card {
  border: 1px solid #e8e1d9;
  border-radius: 0 0 34px 0;
  background: #fff;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(60, 60, 60, .05);
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .page-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .about-photo {
    height: 250px;
  }

  .page-title {
    font-size: 36px !important;
  }

  .hero-banner {
    height: 315px !important;
  }
}

@media (max-width: 430px) {
  .team-grid {
    grid-template-columns: 1fr !important;
  }
}
