section.introduction {
    padding: clamp(50px, 10vw, 100px) 0;
    background: var(--white);
}

section.introduction .wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(30px, 6vw, 60px);
}

.showcased-work-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.showcased-work h2 {
    color: var(--brown);
    text-align: center;
    font-family: "Cormorant Garamond";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 53px;
    margin-top: 0;
}

.introduction-content-wrapper h2 {
    color: var(--brown);
    font-family:"Cormorant Garamond";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.introduction-content p {
    color: var(--slate);
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.introduction-content-wrapper h3 {
    color: var(--slate);
    font-family: Mulish;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
}

.introduction-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.introduction-image img {
    width: 100%;
    height: auto;
}

.introduction-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

section.showcased-work {
    background: var(--white);
    padding: 0;
}

section.content {
    background: var(--white);
    padding: clamp(50px, 10vw, 100px) 0;
}

section.content .wrap {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: clamp(50px, 10vw, 100px);
    max-width: 1000px;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-text p {
    margin: 0;
    color: var(--slate);
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 800px) {
    section.content .wrap,
    section.introduction .wrap,
    .showcased-work-gallery {
        grid-template-columns: 1fr;
    }
}
