/* =========================
   About Us Section
========================= */

.about-us-tagline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.4;
    text-align: center;
}

.about-us-dual-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-us-text-column {
    flex: 0 0 calc(65% - 30px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
}

/* Base Body Text */
.about-us-body {
    font-size: 28px;
    line-height: 1.2;
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    text-align: left;
    margin: 0;
    width: 100%;
}

.about-us-body p {
    margin: 0;
}

.about-us-image-column {
    flex: 0 0 calc(35% - 30px);
    display: flex;
    justify-content: flex-end;
}

.about-us-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .about-us-tagline {
        font-size: 2.0rem;
        margin-bottom: 40px;
    }

    .about-us-body {
        font-size: 1rem;
        line-height: 1.2;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
    }

    .about-us-body p {
        margin-bottom: 1.2em;
    }

    .about-us-body br {
        display: none;
    }

    .about-us-text-column {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .about-us-image-column {
        flex: 1 1 100%;
        max-height: 400px;
    }
}