@charset "UTF-8";

/* =============================== */
/* Page Base                       */
/* =============================== */
.wealth-page {
    padding: 220px 0 140px;
    background: #fff;
}

.wm-section-label {
    font-size: 24px;
    font-weight: 600;
    color: rgba(0 0 0 / 50%);
}

/* =============================== */
/* Intro Section                   */
/* =============================== */
.wm-intro-head {
    display: flex;
    align-items: flex-start;
}

.wm-page-title {
    width: 50%;
    font-size: 92px;
    font-weight: 600;
    color: #1f1f1f;
    line-height: 1;
    white-space: nowrap;
}

.wm-page-desc {
    padding-top: 130px;
    font-size: 24px;
    font-weight: 400;
    color: #1f1f1f;
    line-height: 1.6;
}

.wm-hero-block {
    margin-top: 56px;
}

.wm-hero-image {
    width: 100%;
    height: 700px;
    background: url('/wp-content/uploads/2026/02/wm-hero-image.jpg') center / cover no-repeat;
}

.wm-hero-caption {
    width: min(100%, 1280px);
    background: #fff;
    margin-top: -128px;
    margin-left: auto;
    padding: 34px 56px;
    position: relative;
    z-index: 2;
}

.wm-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #1f1f1f;
}

/* =============================== */
/* Service Section                 */
/* =============================== */
.wm-service {
    margin-top: 48px;
}

.wm-split {
    display: flex;
    align-items: flex-start;
    gap: 90px;
}

.wm-split-left {
    width: 330px;
    flex-shrink: 0;
}

.wm-split-right {
    flex: 1;
}

.wm-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    border-top: 1px solid rgba(35, 35, 35, 0.2);
}

.wm-service-item {
    padding: 18px 0 30px;
    border-bottom: 1px solid rgba(35, 35, 35, 0.2);
}

.wm-service-name {
    font-size: 20px;
    font-weight: 800;
    color: #232323;
    margin-bottom: 14px;
}

.wm-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wm-service-list li {
    font-size: 22px;
    font-weight: 400;
    color: #232323;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.wm-service-list li::before {
    content: '-';
    position: absolute;
    left: 0;
}

.wm-service-list-bold {
    font-weight: 700 !important;
}

.wm-service-list-sub {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(35, 35, 35, 0.6);
    line-height: 1.55;
    margin-top: 4px;
    padding-left: 0;
}

/* =============================== */
/* Other Service Section           */
/* =============================== */
.wm-other {
    padding-top: 170px;
}

.wm-section-label--line {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(35, 35, 35, 0.2);
    margin-bottom: 34px;
}

.wm-other-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.wm-other-card {
    display: flex;
    flex-direction: column;
}

.wm-other-image {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    background-size: cover;
    background-position: center;
}

.wm-other-image--realestate {
    background-image: url('/wp-content/uploads/2026/02/re-other-image-realestate.jpg');
}

.wm-other-image--finance {
    background-image: url('/wp-content/uploads/2026/02/re-other-image-finance.jpg');
}

.wm-other-info {
    padding-top: 20px;
}

.wm-other-title {
    font-size: 48px;
    font-weight: 300;
    color: #1f1f1f;
    line-height: 1.2;
}

.wm-other-desc {
    margin-top: 32px;
    font-size: 24px;
    font-weight: 400;
    color: #2d2d2d;
    line-height: 1.6;
}

.wm-other-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 36px;
    font-size: 16px;
    font-weight: 400;
    color: #957e62;
    border: 1px solid #957e62;
    border-radius: 999px;
    margin-top: 32px;
    transition: border-color var(--transition-normal), color var(--transition-normal), background var(--transition-normal);
}

.wm-other-link:hover {
    background: #957e62;
    color: #fff;
}

/* =============================== */
/* Scroll Animations               */
/* =============================== */
.wm-will-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.wm-will-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================== */
/* Responsive                      */
/* =============================== */
@media (max-width: 1200px) {
    .wealth-page {
        padding-top: 130px;
    }

    .wm-section-label {
        font-size: 22px;
    }

    .wm-page-title {
        font-size: 64px;
    }

    .wm-page-desc {
        font-size: 24px;
    }

    .wm-hero-image {
        height: 540px;
    }

    .wm-hero-title {
        font-size: 44px;
    }

    .wm-split {
        gap: 80px;
    }

    .wm-split-left {
        width: 220px;
    }

    .wm-service-list li {
        font-size: 18px;
    }

    .wm-other-title {
        font-size: 40px;
    }

    .wm-other-desc {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .wealth-page {
        padding: 110px 0 100px;
    }

    .wm-intro-head {
        flex-direction: column;
        gap: 20px;
    }

    .wm-page-title {
        width: 100%;
        font-size: 54px;
    }

    .wm-page-desc {
        font-size: 20px;
        padding-top: 0;
    }

    .wm-hero-block {
        margin-top: 40px;
    }

    .wm-hero-image {
        height: 420px;
    }

    .wm-hero-caption {
        margin-top: -40px;
        margin-left: 18px;
        padding: 24px 28px;
    }

    .wm-hero-title {
        font-size: 34px;
    }

    .wm-split {
        flex-direction: column;
        gap: 24px;
    }

    .wm-split-left {
        width: 100%;
    }

    .wm-service-grid {
        column-gap: 20px;
    }

    .wm-service-list li {
        font-size: 16px;
    }

    .wm-other {
        padding-top: 120px;
    }

    .wm-other-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 767px) {
    .wealth-page {
        padding: 90px 0 80px;
    }

    .wm-section-label {
        font-size: 16px;
    }

    .wm-page-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .wm-page-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .wm-hero-image {
        height: 260px;
    }

    .wm-hero-caption {
        width: calc(100% - 16px);
        margin-left: 16px;
        margin-top: -28px;
        padding: 18px 16px;
    }

    .wm-hero-title {
        font-size: 24px;
    }

    .wm-service {
        margin-top: 8px;
    }

    .wm-service-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .wm-service-item {
        padding: 14px 0 20px;
    }

    .wm-service-name {
        font-size: 14px;
    }

    .wm-service-list li {
        font-size: 14px;
    }

    .wm-service-list-sub {
        font-size: 12px;
    }

    .wm-other {
        padding-top: 80px;
    }

    .wm-section-label--line {
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .wm-other-grid {
        gap: 26px;
    }

    .wm-other-info {
        padding-top: 14px;
    }

    .wm-other-title {
        font-size: 30px;
    }

    .wm-other-desc {
        margin-top: 12px;
        font-size: 14px;
    }

    .wm-other-link {
        width: 100px;
        height: 30px;
        font-size: 12px;
        margin-top: 14px;
    }
}
