/* ===========================
   About Page Styles
   Calm, readable layout for
   YAMATOMO's mission statement
   =========================== */

/* Hero Section */
.about-hero {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 60px;
    text-align: center;
    background: #fafaf8;
    border-bottom: 1px solid #eee;
}

.about-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* Article Body */
.about-article {
    padding: 80px 24px 100px;
}

.about-article-inner {
    max-width: 680px;
    margin: 0 auto;
}

/* Sections */
.about-section {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.about-h2-sub {
    display: block;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 400;
    color: var(--text-sub);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.about-section p {
    font-size: 15.5px;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    text-align: justify;
    word-break: break-all;
    overflow-wrap: break-word;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* Divider between sections */
.about-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 56px auto;
}

/* Closing Statement */
.about-closing {
    margin-top: 64px;
    padding: 48px 32px;
    text-align: center;
    background: #fafaf8;
    border-radius: 16px;
    border: 1px solid #eee;
}

.about-closing-text {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.about-closing-sub {
    font-size: 15px;
    color: var(--text-sub);
    font-weight: 400;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
    .about-hero {
        padding-top: calc(var(--header-height) + 56px);
        padding-bottom: 44px;
    }

    .about-article {
        padding: 56px 20px 72px;
    }

    .about-section h2 {
        margin-bottom: 24px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.95;
        text-align: left;
    }

    .about-divider {
        margin: 44px auto;
    }

    .about-closing {
        margin-top: 48px;
        padding: 36px 24px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 36px;
    }

    .about-article {
        padding: 40px 16px 56px;
    }

    .about-section p {
        font-size: 14.5px;
        margin-bottom: 16px;
    }

    .about-divider {
        margin: 36px auto;
    }

    .about-closing {
        padding: 28px 20px;
    }

    .about-closing-text {
        font-size: 18px;
    }
}
