        /* page-specific */
        .page-hero {
            background-image:
                linear-gradient(120deg, rgba(255,255,255,0.74) 0%, rgba(234,240,248,0.5) 50%, rgba(216,226,240,0.55) 100%),
                url('../../images/team-photo.jpg');
        }
        .philosophy {
            padding: 110px 0 70px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .philosophy .container { position: relative; z-index: 2; }
        .philosophy .section-label {
            letter-spacing: 0.25em;
            font-size: 13px;
        }
        .philosophy h2 {
            font-size: 36px;
            line-height: 1.5;
            margin: 12px 0 28px;
            color: var(--navy);
            font-weight: 700;
        }
        .philosophy p {
            font-size: 16px;
            line-height: 2;
            color: #444;
            max-width: 800px;
            margin: 0 auto 18px;
        }
        .philosophy + .philosophy {
            padding-top: 0;
            border-top: 1px solid rgba(5,5,72,0.08);
            margin-top: 30px;
            padding-top: 90px;
        }

        .greeting {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        .greeting-wrap {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 60px;
            align-items: start;
        }
        .greeting-photo {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 24px;
            background: #eef0f4 url("../../images/staff-default.jpg") center/cover;
        }
        .greeting-body h2 {
            font-size: 30px;
            margin-bottom: 28px;
            line-height: 1.5;
        }
        .greeting-body p {
            font-size: 15px;
            line-height: 2;
            color: #444;
            margin-bottom: 16px;
        }
        .greeting-signature {
            margin-top: 30px;
            text-align: right;
            font-size: 14px;
            color: var(--navy);
            line-height: 1.8;
        }
        .greeting-signature .name {
            font-size: 18px;
            font-weight: 700;
            display: block;
            margin-top: 4px;
        }

        .overview { padding: 100px 0; position: relative; overflow: hidden; }
        .overview h2 {
            font-size: 36px;
            margin-bottom: 10px;
            font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
        }
        .overview .lead {
            color: #666;
            font-size: 15px;
            margin-bottom: 30px;
        }

        /* Biz CTA */
        .biz-cta {
            padding: 110px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--pink) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .biz-cta h2 { font-size: 32px; color: var(--white); margin-bottom: 20px; line-height: 1.5; }
        .biz-cta p { font-size: 15px; opacity: 0.9; margin-bottom: 36px; }
        .biz-cta .btn-group { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

        @media (max-width: 1199px) {
            .biz-cta { padding: 80px 0; }
            .biz-cta h2 { font-size: 22px; }
            .philosophy { padding: 80px 0 50px; }
            .philosophy-card { padding: 50px 28px; border-radius: 24px; }
            .philosophy-card h2 { font-size: 24px; }
            .greeting { padding: 70px 0; }
            .greeting-wrap { grid-template-columns: 1fr; gap: 30px; }
            .greeting-photo { max-width: 360px; margin: 0 auto; }
            .greeting-body h2 { font-size: 24px; }
            .overview { padding: 70px 0; }
            .overview h2 { font-size: 28px; }
        }
        @media (max-width: 640px) {
            .philosophy { padding: 60px 0 30px; }
            .philosophy-card { padding: 36px 20px; }
            .philosophy-card h2 { font-size: 19px; }
            .philosophy-card p { font-size: 14px; }
            .greeting { padding: 60px 0; }
            .greeting-body h2 { font-size: 20px; }
            .greeting-body p { font-size: 14px; }
            .overview { padding: 60px 0; }
            .overview h2 { font-size: 22px; }
        }
