.hero{
  background:#ffffff;
}

.hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(32px, 4vw, 56px);
  align-items:center;
}

.hero-content{
  max-width:620px;
}

.hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#666666;
}

.hero-title{
  margin-bottom:20px;
  font-size:clamp(34px, 5vw, 56px);
  font-weight:700;
  line-height:1.05;
  color:#111111;
}

.hero-text{
  max-width:60ch;
  font-size:clamp(17px, 2vw, 19px);
  line-height:1.7;
  color:#333333;
}

.hero-cta{
  display:inline-flex;
  width:fit-content;
  margin-top:28px;
  font-size:18px;
  min-height:56px;
  padding:0 32px;
}

.hero-visual{
  width:100%;
  aspect-ratio:4 / 3;
  border-radius:24px;
  background:#f3f3f3;
  border:1px solid #e5e5e5;
}

@media (max-width:900px){

  .hero-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .hero-content{
    max-width:none;
  }

  .hero-text{
    max-width:none;
  }

}

@media (max-width:768px){

  .hero-kicker{
    margin-bottom:12px;
    font-size:12px;
  }

  .hero-title{
    margin-bottom:16px;
    line-height:1.1;
  }

  .hero-cta{
    width:100%;
    padding:0 24px;
  }

  .hero-visual{
    border-radius:18px;
  }

}