*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    background-color: #111;
    height: 100svh;
    min-height: 100svh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.about-page-main {
    min-height: 80svh;
    display: flex;
    padding-top: 76px;
    align-items: center;
    justify-content: center
}

.about-container {
    max-width: 1100px;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center
}

.about-image-wrapper {
    position: relative;
    opacity: 0
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
    border: 1px solid rgba(255, 255, 255, .1)
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.about-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    background: linear-gradient(to bottom, #fff 40%, #666 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 550px
}

.contact-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, .03);
    border-radius: 16px;
    width: fit-content
}

.contact-box p {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: .5;
    transition: color .3s;
    padding-bottom: 2px
}

.reveal {
    opacity: 0;
    transform: translateY(40px)
}

footer {
    padding-bottom: 0;
    margin-bottom: 0
}

@media (max-width:768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px
    }

    .about-content p {
        margin: 0 auto
    }

    .contact-box {
        margin: 20px auto 0
    }

    .about-page-main {
        padding-top: 40px;
        padding-bottom: 40px
    }
}