.features{
    padding: 100px 0;
    background: #fff;
  }
  
  .features-head{
    text-align: center;
    margin: 0 auto 60px;
    max-width: 900px;
  }
  
  .features-head h2{
    font-family: 'EB Garamond', serif;
    font-size: clamp(34px, 4vw, 54px);
    color:#8c2388;
    margin-bottom: 18px;
  }
  
  .features-head p{
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 760px;
    text-wrap: balance;
  }
  
  /* grid */
  .features-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
  }
  
  .feature-card{
    background: #fff;
    border-radius: 22px;
    padding: 48px 28px;
    text-align: center;
  
    box-shadow: 0 10px 30px rgba(140, 35, 136, 0.10);
    border: 1px solid rgba(140, 35, 136, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
  }
  
  .feature-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(140, 35, 136, 0.14);
  }
  
  .feature-icon{
    font-size: 56px;
    line-height: 1;
    margin-bottom: 22px;
  }
  
  .feature-card h3{
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    color: #8c2388;
    margin: 0 0 10px;
  }
  
  .feature-card p{
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 240px;
  }
  
  /* responsive */
  @media (max-width: 992px){
    .features-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 576px){
    .features-grid{ grid-template-columns: 1fr; }
    .feature-card{ min-height: auto; padding: 36px 22px; }
  }