.about-content {
    padding: 12rem 2rem 6rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    width: 100%;
}

.about-text {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    order: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* Optional: adds a slight softness */
}

.about-title {
    font-family: var(--font-display);
    font-size: 8vw;
    line-height: 1;
    margin: 0 0 4rem 0;
    font-weight: 400;
    text-align: center;
    order: 0;
}

.about-title span {
    display: inline-block;
}

.about-bio {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-cooking {
    margin-top: 5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
}

.cooking-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.cooking-list {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-footer {
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.footer-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.footer-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.footer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media screen and (min-width: 53em) {
    .about-title {
        font-size: 6vw;
    }
}

@media screen and (max-width: 53em) {
    .about-content {
        padding: 4rem 1.5rem 4rem;
        /* Reduced top padding */
    }

    .about-title {
        font-size: 18vw;
        margin-bottom: 3rem;
        line-height: 0.9;
    }

    .about-grid {
        gap: 4rem;
    }

    .about-text {
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-link {
        font-size: 2rem;
    }
}