*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f8f8f6;
  color:#111;
  overflow-x:hidden;
}

/* HERO */

.about-hero{
  height:320px;
  display:grid;
  grid-template-columns:42% 58%;
  background:#fff;
  overflow:hidden;
}

.about-text{
  padding:24px 55px;
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.about-text span,
.story-text span,
.leaders span{
  color:#b78b4f;
  font-weight:700;
  font-size:14px;
  letter-spacing:.5px;
}

.about-text h1{
  margin-top:10px;
  font-size:34px;
  line-height:1.18;
  font-weight:800;
}

.about-text p{
  margin-top:14px;
  max-width:560px;
  font-size:14px;
  line-height:1.6;
  color:#333;
}

.about-image{
  position:relative;
  height:320px;
}

.about-image::before{
  content:"";
  position:absolute;
  left:-2px;
  top:0;
  width:260px;
  height:100%;
  background:linear-gradient(
    90deg,
    #fff 0%,
    rgba(255,255,255,.96) 35%,
    rgba(255,255,255,.65) 72%,
    rgba(255,255,255,0) 100%
  );
  z-index:1;
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* STATS */

.stats{
  min-height:120px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
}

.stat-box{
  padding:18px 35px;
  display:flex;
  align-items:center;
  gap:18px;
  border-right:1px solid #ddd;
  transition:.35s ease;
}

.stat-box:last-child{
  border-right:none;
}

.stat-box:hover{
  transform:translateY(-5px);
}

.stat-icon{
  width:62px;
  height:62px;
  border:2px solid #c49a60;
  border-radius:50%;
  color:#c49a60;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  flex-shrink:0;
  transition:.35s ease;
}

.stat-box:hover .stat-icon{
  background:#c49a60;
  color:#fff;
  transform:scale(1.06);
}

.stat-box h2{
  font-size:30px;
  line-height:1;
  font-weight:800;
}

.stat-box p{
  margin-top:7px;
  font-size:12px;
  font-weight:600;
}

/* STORY */

.story-section{
  display:grid;
  grid-template-columns:30% 24% 46%;
  gap:34px;
  padding:42px 55px;
  background:#fbfbfa;
  align-items:start;
}

.story-text h2{
  margin-top:16px;
  font-size:29px;
  line-height:1.3;
  font-weight:800;
}

.story-text p{
  margin-top:22px;
  font-size:13px;
  line-height:1.7;
  color:#333;
}

.signature{
  margin-top:28px;
  font-family:'Pacifico', cursive;
  font-size:28px;
  font-weight:400;
  color:rgba(183,139,79,.55);
  transform:rotate(-4deg);
  display:inline-block;
}

.story-image{
  padding-top:45px;
}

.story-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}

/* LEADERS */

.leaders{
  width:100%;
  text-align:center;
}

.leaders > span{
  display:block;
  text-align:center;
  margin-bottom:15px;
}

.leader-grid{
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:24px;
  max-width:720px;
}

.leader-card{
  width:300px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  overflow:hidden;
  text-align:center;
}

.leader-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.leader-card h3{
  margin-top:14px;
  font-size:17px;
  font-weight:700;
}

.leader-card p{
  margin-top:8px;
  color:#b78b4f;
  font-size:12px;
  font-weight:600;
}

.line{
  width:88px;
  height:1px;
  background:#c49a60;
  margin:13px auto;
}

.socials{
  display:flex;
  justify-content:center;
  gap:28px;
  font-size:21px;
  padding-bottom:14px;
}

/* RESPONSIVE */

@media(max-width:1200px){
  .about-text h1{
    font-size:30px;
  }

  .story-section{
    grid-template-columns:1fr;
  }

  .story-image{
    padding-top:0;
  }

  .leaders{
    text-align:left;
  }

  .leaders > span{
    text-align:left;
  }

  .leader-grid{
    justify-content:flex-start;
  }
}

@media(max-width:900px){
  .about-hero{
    height:auto;
    grid-template-columns:1fr;
  }

  .about-text{
    padding:35px;
  }

  .about-image{
    height:280px;
  }

  .about-image::before{
    display:none;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }

  .leader-grid{
    justify-content:center;
  }
}

@media(max-width:600px){
  .about-text{
    padding:30px 24px;
  }

  .about-text h1{
    font-size:27px;
  }

  .about-text p{
    font-size:13px;
  }

  .about-image{
    height:220px;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .stat-box{
    padding:20px 24px;
    border-right:none;
    border-bottom:1px solid #ddd;
  }

  .story-section{
    padding:28px 24px;
  }

  .story-text h2{
    font-size:25px;
  }

  .signature{
    font-size:25px;
  }

  .leader-grid{
    flex-direction:column;
    align-items:center;
    gap:22px;
  }

  .leader-card{
    width:100%;
    max-width:330px;
  }

  .leader-card img{
    height:220px;
  }
}