@charset "UTF-8";

/* =============================== */
/* About Hero Section              */
/* =============================== */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2026/02/about-hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 90px 0;
}

.about-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-hero-label {
    font-size: 60px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.about-hero-title {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
}

/* =============================== */
/* Who We Are Section              */
/* =============================== */
.about-who {
    padding: 120px 0;
    background: var(--white);
}

.about-who .section-label {
    font-size: 24px;
    padding-bottom: 20px;
}

.about-who-content {
    display: flex;
    gap: 80px;
}

.about-who-left {
    flex: 1;
}

.about-who-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.25;
}

.about-who-title strong {
    font-weight: 700;
}

.about-who-right {
    flex: 1;
}

.about-who-desc {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-top: 200px;
}

/* =============================== */
/* Company History Section         */
/* =============================== */
.about-history {
    position: relative;
    padding: 120px 0 150px;
    overflow: hidden;
}

.about-history-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2026/02/about-history-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.about-history-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-history .inner-wrap {
    position: relative;
    z-index: 3;
}

.about-history-content {
    padding: 0;
}

.about-history .section-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-history-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 60px;
}

.about-history-title strong {
    font-weight: 800;
    display: block;
}

/* 타임라인 전체 */
.history-timeline {
    margin-top: 60px;
}

/* 공통: 5분할 그리드 */
.history-above,
.history-line-row,
.history-below {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* 라인 위 영역 */
.history-above {
    align-items: flex-end;
    margin-bottom: 0;
}

.history-above-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 16px;
}

.history-above-item--1,
.history-above-item--3,
.history-above-item--5 {
    /* 빈 칸 */
}

.history-above-label {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.history-above-year {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* 가로선 + 도트 행 */
.history-line-row {
    position: relative;
    height: 14px;
    align-items: center;
}

.history-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
}

.history-dot-col {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.history-dot--active {
    width: 14px;
    height: 14px;
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

/* 라인 아래 영역 */
.history-below {
    margin-top: 20px;
}

.history-below-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.history-below-item--2,
.history-below-item--4 {
    /* 빈 칸 */
}

.history-below-year {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    display: block;
}

.history-below-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-top: 4px;
}

.history-below-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* =============================== */
/* Our Values Section              */
/* =============================== */
.about-values {
    padding: 120px 0;
    background: var(--white);
}

.about-values-content {
    display: flex;
    align-items: flex-start;
    gap: 200px;
}

.about-values-left {
}

.about-values .section-label {
    color: var(--text-tertiary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-values-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.3;
}

.about-values-title strong {
    font-weight: 700;
    display: block;
}

.about-values-right {
    flex: 1;
}

.about-value-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(35 35 35 / 0.5);
}

.about-value-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(35 35 35 / 0.5);
}

.about-value-label {
    font-size: 20px;
    font-weight: 800;
    color: #232323;
    letter-spacing: 0.3px;
}

.about-value-text {
    font-size: 36px;
    font-weight: 800;
    color: #232323;
    color: var(--text-primary);
    line-height: 1.2;
}

/* =============================== */
/* Process Section                 */
/* =============================== */
.about-process {
    padding: 120px 0;
    background: var(--white);
}

.about-process-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-process-left {
    flex: 0 0 240px;
}

.about-process-left .section-label {
    color: var(--text-tertiary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-process-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.25;
}

.about-process-right {
    flex: 1;
}

.process-list {
    display: flex;
}

.process-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-item:last-child {
    border-right: none;
    padding-left: 40px;
    padding-right: 0;
}

.process-item:not(:first-child):not(:last-child) {
    padding-left: 40px;
}

.process-num {
	position: relative;
    font-size: 80px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -2px;
    display: block;
}

.process-num:after {
	content: "";
	display: block;
	width: 100%;
	height: 13px;
	background: #fff;
	border-top: 1px solid rgba(35, 35, 35, 0.50);
	position: absolute;
	bottom: 10px;
	left: 0;
}

.process-sub {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.process-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.process-desc {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================== */
/* Service Section                 */
/* =============================== */
.about-service {
    padding: 120px 0;
    background: var(--white);
}

.about-service .section-label {
	font-size: 24px;
	color: var(--text-tertiary);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0 0 0 / 0.5);
    margin-bottom: 40px;
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-service-item {
    display: flex;
    flex-direction: column;
}

.about-service-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.about-service-img--realestate {
    background-image: url('/wp-content/uploads/2026/02/about_service01.jpg');
}

.about-service-img--finance {
    background-image: url('/wp-content/uploads/2026/02/about_service02.jpg');
}

.about-service-img--wealth {
    background-image: url('/wp-content/uploads/2026/02/about_service03.jpg');
}

.about-service-info {
    padding: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-service-name {
    font-size: 48px;
    font-weight: 300;
    color: #1f1f1f;
}

.about-service-desc {
    font-size: 24px;
    font-weight: 400;
    color: #3f3f3f;
    line-height: 1.7;
    letter-spacing: -1.5px;
}

.about-service-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;
    background: #fff;
    border-radius: 999px;
    margin-top: 8px;
    transition: border-color var(--transition-normal), color var(--transition-normal);
}

.about-service-link:hover {
    background: #957E62;
    color: #fff;
}

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

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

/* =============================== */
/* Responsive                      */
/* =============================== */
@media (max-width: 1200px) {
    .about-who-title {
        font-size: 32px;
    }

    .about-history-title {
        font-size: 40px;
    }

    .about-values-title {
        font-size: 32px;
    }

    .about-values-left {
        flex: 0 0 260px;
    }

    .about-value-text {
        font-size: 24px;
    }

    .about-process-title {
        font-size: 32px;
    }

    .about-process-left {
        flex: 0 0 200px;
    }

    .process-num {
        font-size: 64px;
    }

    .process-name {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .about-hero-content {
        padding: 60px 0;
    }

    .about-hero-label {
        font-size: 40px;
    }

    .about-hero-title {
        font-size: 20px;
    }

    .about-who {
        padding: 80px 0;
    }

    .about-who-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-who-title {
        font-size: 28px;
    }

    .about-who-desc {
        font-size: 17px;
    }

    .about-history {
        padding: 80px 0;
    }

    .about-history-title {
        font-size: 36px;
    }

    .history-above-year {
        font-size: 22px;
    }

    .history-below-year {
        font-size: 20px;
    }

    .about-values {
        padding: 80px 0;
    }

    .about-values-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-values-left {
        flex: none;
    }

    .about-process {
        padding: 80px 0;
    }

    .about-process-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .about-process-left {
        flex: none;
    }

    .process-list {
        flex-direction: column;
    }

    .process-item {
        padding: 32px 0;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .process-item:last-child {
        padding-left: 0;
        padding-right: 0;
        border-bottom: none;
    }

    .process-item:not(:first-child):not(:last-child) {
        padding-left: 0;
    }

    .process-num {
        font-size: 56px;
    }

    .about-service-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-service-img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .about-hero-label {
        font-size: 32px;
    }

    .about-hero-title {
        font-size: 16px;
    }

    .about-who {
        padding: 60px 0;
    }

    .about-who-title {
        font-size: 22px;
    }

    .about-who-desc {
        font-size: 14px;
    }

    .about-history {
        padding: 60px 0;
    }

    .about-history-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .history-above {
        display: none;
    }

    .history-below {
        flex-direction: column;
        gap: 32px;
        margin-top: 24px;
    }

    .history-below-item--2,
    .history-below-item--4 {
        display: none;
    }

    .history-dot-row {
        justify-content: space-between;
    }

    .history-below-year {
        font-size: 18px;
    }

    .history-below-title {
        font-size: 13px;
    }

    .history-below-desc {
        font-size: 13px;
    }

    .about-values {
        padding: 60px 0;
    }

    .about-values-title {
        font-size: 26px;
    }

    .about-value-text {
        font-size: 20px;
    }

    .about-process {
        padding: 60px 0;
    }

    .about-process-title {
        font-size: 28px;
    }

    .process-num {
        font-size: 48px;
    }

    .process-name {
        font-size: 22px;
    }

    .process-desc {
        font-size: 14px;
    }

    .about-service {
        padding-bottom: 80px;
    }

    .about-service-img {
        height: 220px;
        border-radius: var(--radius-sm);
    }

    .about-service-name {
        font-size: 22px;
    }
}
