.formma-hero {
  min-height: auto !important;
 padding:120px 7vw 150px !important;
  background:
    radial-gradient(circle at 70% 20%, rgba(222, 189, 173, .42), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbf7f3 55%, #f3e5dc 100%);
}

.formma-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 78px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.formma-hero h1{

    font-family:Georgia,"Times New Roman",serif;

    font-size:clamp(72px,8vw,118px);

    line-height:.92;

    letter-spacing:-2px;

    color:var(--formma-brown);

    margin-bottom:34px;

    font-weight:400;
}


.formma-lead {
  color: var(--formma-muted);
  font-size: 20px;
  line-height: 1.75;
  max-width: 560px;
  margin: 28px 0 0;
}

.formma-hero-photo{
    position:relative;
    height:700px;
    overflow:hidden;
    border-radius:260px 260px 0 0;
    background:#f3e5dc;
    box-shadow:
        0 45px 90px rgba(72,40,22,.10),
        0 12px 30px rgba(72,40,22,.08);
}



.formma-hero-video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:inherit;
}

.formma-hero-photo img{
    overflow:hidden;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:58% center;
    display:block;
    transform:none;
}


.formma-actions{

    display:flex;

    gap:20px;

    margin-top:45px;

    align-items:center;
}


.formma-hero-photo{

    position:relative;
}

.formma-hero-photo::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(0,0,0,.08)
    );

    pointer-events:none;
}