* {
    font-family: 'Pretendard', 'Segoe UI', sans-serif;
}

/* Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

/* Section Common Styles */
section {
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    text-align: left;
}

.section-tag {
    font-family: 'Pretendard', 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #ff7a0c;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 40px;
    font-weight: 600 !important;
    line-height: 1.2;
    color: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #ff7a0c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #e66a00;
    color: #ffffff;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Desktop Large (1200px and up) */
@media (min-width: 1200px) {

}

/* Desktop (1024px to 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .section-container {
        max-width: 1024px;
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* Tablet (820px to 1023px) */
@media (max-width: 1023px) and (min-width: 820px) {
    .section-container {
        max-width: 820px;
        padding: 0 25px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-tag {
        font-size: 18px;
    }
}

/* Mobile (280px to 819px) */
@media (max-width: 819px) {
    .section-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
        text-align: left;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-tag {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* Small Mobile (280px to 480px) */
@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
}


/* ==========================================================================
   Landing Page Styles
   ========================================================================== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

/* Intersection Observer Animation Classes */
.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Property Section */
.property-section {
    position: relative;
    height: 640px;
    overflow: hidden;
}

/* Ensure Swiper wrapper fills the section height */
.property-swiper {
    height: 100%;
}

.property-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.property-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.property-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.property-text {
    margin-bottom: auto;
    margin-top: 250px;
}

.property-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.property-subtitle {
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 28px;
}

.property-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff7a0c;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 210px;
    height: 46px;
}

.property-cta-btn:hover {
    background-color: #e66a00;
}

/* Swiper pagination styled to match previous dots */
.property-pagination.swiper-pagination {
    position: absolute;
    left: 40px;
    bottom: 50px;
    width: auto;
    display: flex;
    gap: 12px;
}
.property-pagination .swiper-pagination-bullet {
    width: 84px;
    height: 5px;
    border-radius: 0;
    background: rgba(255,255,255,0.3);
    opacity: 1;
}
.property-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

/* Desktop >=1200px: align to .property-content inner left (max-width reached) */
@media (min-width: 1200px) {
    .property-pagination.swiper-pagination {
        /* left: calc(50% - 600px + 40px); */
        left: calc(50% - 600px);
    }
}

/* Life & Stay Section */
#landing .lifestyle-section {
    padding: 100px 0;
    background-color: #ffffff;
}

#landing .lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    width: 100%;
}

#landing .lifestyle-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    width: 100%;
}

#landing .card-background {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 40%;
    height: 100%;
    z-index: 1;
}

#landing .card-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#landing .life-card {
    background-color: #ff7a0c;
}

#landing .stay-card {
    background-color: #ffefd8;
}

#landing .card-content {
    position: relative;
    z-index: 2;
    padding: 26px;
    color: #ffffff;
    width: 60%;
}
/* ensure text panel does not overlap image area */
.lifestyle-card .card-content {
    box-sizing: border-box;
}

#landing .stay-card .card-content {
    color: #000000;
}

#landing .landing-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    align-items: baseline;
}

#landing .card-title {
    font-size: 40px;
    font-weight: 500;
}

#landing .card-badge {
    font-size: 18px;
    font-weight: 500;
}

#landing .card-description {
    font-size: 20px;
    line-height: 1.4;
}

/* Position card description at bottom-right within text panel on larger screens */
@media (min-width: 820px) {
    #landing .card-content {
        min-height: 100%;
    }
    #landing .card-description {
        position: absolute;
        left: 26px;
        bottom: 30px;
        text-align: left;
        padding-right: 24px;
        word-break: auto-phrase;
    }
}

/* Locations Section */
#landing .locations-section {
    padding: 80px 0 30px 0;
    background-color: #f8f4f0;
    position: relative;
}

/* Navigation overlay anchor */
#landing .locations-section .locations-viewport { position: relative; }

/* Swiper wrapper spacing matches original viewport */
#landing .locations-section .locations-swiper { margin: 30px 0; position: relative; overflow: hidden; }

/* Swiper manages layout; keep gap via spaceBetween */

#landing .locations-section .location-card {
    overflow: hidden;
}

#landing .locations-section .location-image {
    position: relative;
    height: 380px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

/* img 태그 사용 제거: background-image 사용으로 대체 */

#landing .locations-section .location-badges {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
}

#landing .locations-section .location-badge {
    padding: 4px 16px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    height: 22px;
    display: flex;
    align-items: center;
}

#landing .locations-section .location-badge.life {
    background-color: #ff7a0c;
}

#landing .locations-section .location-badge.stay {
    background-color: #ffefd8;
    color: #000000;
}

#landing .locations-section .location-info {
    padding: 18px 0 24px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#landing .locations-section .location-name {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}

#landing .locations-section .location-description {
    font-size: 15px;
    color: #6e6e6e;
    line-height: 1.4;
}

#landing .locations-section .locations-navigation { position: absolute; top: 0; left: 0; right: 0; height: 380px; pointer-events: none; }

#landing .locations-section .nav-arrow {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: all;
    transition: opacity 0.3s ease;
    transform: translateY(-50%);
    z-index: 2;
}

#landing .locations-section .nav-arrow.prev { left: -30px; }
#landing .locations-section .nav-arrow.next { right: -30px; }

#landing .locations-section .nav-arrow:hover {
    opacity: 0.7;
}

#landing .locations-section .nav-arrow img {
    width: 100%;
    height: 100%;
}

/* Process Section */
#landing .process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

#landing .process-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Process: 제목(PC/모바일 전환) */
#landing .process-section .section-title .title-desktop { display: inline; }
#landing .process-section .section-title .title-mobile { display: none; }

#landing .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

#landing .process-step {
    text-align: center;
    position: relative;
}

/* PC: 카드형 박스와 화살표 연결 (process-section 네임스페이스 한정) */
#landing .process-section .process-step {
    background: #fdf5ec;
    padding: 22px 26px 22px 26px;
}

#landing .process-section .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -54px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('https://lifestay-clients.s3.ap-northeast-2.amazonaws.com/landing/arrow-right.svg') center/contain no-repeat;
    opacity: 0.6;
}

#landing .step-number {
    margin-bottom: 20px;
}

#landing .step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff7a0c;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
}

/* PC: 원형 뱃지 스타일 미세 조정 (네임스페이스 우선) */
#landing .process-section .step-circle {
    width: 44px;
    height: 44px;
    background-color: #000000;
    font-size: 18px;
}

#landing .step-title {
    font-size: 24px;
    font-weight: 700;
    color: #ff7a0c;
    margin-bottom: 20px;
}

#landing .process-section .step-title {
    font-size: 22px;
    margin-bottom: 8px;
}

#landing .step-description {
    font-size: 16px;
    color: #000000;
    line-height: 1.5;
}

#landing .process-section .step-description {
    line-height: 1.4;
}

/* About Section */
#landing .about-section {
    padding: 100px 0;
    background-color: #f8f4f0;
}

/* About: 헤더/설명 2열 그리드 (PC) */
#landing .about-section .section-container {
    display: grid;
    grid-template-columns: 0.8fr 1.1fr;
    gap: 0px 80px;
    align-items: start;
}

#landing .about-section .about-description {
    margin-top:84px;
}

/* PC: 우측 설명문 톤 다운 및 너비 제한 */
#landing .about-section .about-description p {
    color: #6e6e6e;
    font-size: 15px;
    line-height: 1.4;
    word-break: auto-phrase;
}

#landing .about-description {
    margin-bottom: 80px; /* 모바일/태블릿에서 유지될 기본 값 */
}

#landing .about-description p {
    font-size: 20px;
    color: #000000;
    line-height: 1.5;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

#landing .about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* 시안처럼 균등 라인 구분에 맞춰 간격은 아이템 내부로 처리 */
    margin: 24px 0 64px 0;
    grid-column: 1 / -1; /* 헤더/설명 아래 전체 가로 영역 차지 */
    position: relative; /* 좌우 구분선 기준 */
    padding-top: 20px;   /* 구분선과 인접 콘텐츠 간격 */
    padding-bottom: 20px;/* 구분선과 인접 콘텐츠 간격 */
}

/* PC: 좌/우 시작·끝 구분선 (내용 영역만큼만 보이도록 상하 20px 여백) */
#landing .about-features::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    width: 2px; /* 기존 대비 +1px 두껍게 */
    background: #e8e2da;
}

#landing .about-features::before { left: 0; }
#landing .about-features::after  { right: 0; }

#landing .feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 48px; /* 구분선과 내용 사이 여백 ~20px */
}

/* 세로 구분선 (PC) */
#landing .about-features .feature-item:not(:last-child) {
    border-right: 2px solid #e8e2da; /* 기존 대비 +1px */
}

#landing .feature-icon {
    width: 32px;
    height: 32px;
    align-self: flex-start;
}

#landing .feature-content {
    align-self: flex-start;
}

#landing .feature-icon img {
    width: 100%;
    height: 100%;
}

#landing .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

#landing .feature-description {
    font-size: 16px;
    color: #6e6e6e;
    line-height: 1.5;
}

/* PC only: constrain feature text width and improve wrapping */
@media (min-width: 1024px) {
    #landing .feature-description {
        width: 80%;
        word-break: auto-phrase;
    }
}

#landing .about-image {
    text-align: center;
    grid-column: 1 / -1; /* 이미지도 섹션 전체 폭 사용 */
}

#landing .about-image img {
    max-width: 1200px;
    width: 100%;
    height: auto;
}


/* CTA Section */
#landing .cta-section {
    background-color: #ffefd8;
    padding: 20px 0;
}

#landing .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

#landing .cta-title {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 40px;
}

#landing .cta-title-bold {
    font-weight: 700;
}

#landing .cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

#landing .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background-color: #ff7a0c;
    color: #ffffff;
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 184px;
    height: 46px;
}

#landing .cta-button:hover {
    background-color: #e66a00;
    color: #ffffff;
}

#landing .cta-image {
    flex-shrink: 0;
}

#landing .cta-image img {
    width: 282px;
    height: auto;
}

/* ===================== Responsive: Tablet ===================== */
@media (max-width: 1023px) and (min-width: 820px) {
    #landing .about-section .section-container {
        grid-template-columns: 1fr; /* 한 컬럼 정렬 */
        gap: 24px;
    }
    #landing .about-section .about-description { margin: 0 0 40px 0; }
    #landing .about-features {
        grid-template-columns: 1fr; /* 아이템 세로 스택 */
        border-bottom: none;
        gap: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #landing .about-features::before, #landing .about-features::after { display: none; }
    #landing .about-features .feature-item { border-right: none; border-bottom: 1px solid #e8e2da; }
    #landing .about-features .feature-item:last-child { border-bottom: none; }
    
    #landing .cta-title {
        font-size: 26px;
    }
    
    #landing .cta-button {
        font-size: 18px;
        min-width: 160px;
        height: 42px;
    }
    
    #landing .cta-image img {
        width: 200px;
    }
}

/* ===================== Responsive: Mobile ===================== */
@media (max-width: 819px) {
    #landing .about-section .section-container {
        display: block; /* 기본 블록 흐름: 시안과 동일한 단일 컬럼 */
    }
    #landing .about-section .section-header {
        margin-bottom: 20px;
    }
    /* Lifestyle 전용 타이틀 사이즈 (공통 section-title에서 분리 관리) */
    #landing .lifestyle-section .section-title,
    #landing .locations-section .section-title,
    #landing .process-section .section-title,
    #landing .about-section .section-title {
        font-size: 28px;
    }

    #landing .locations-section .location-badge {
        padding: 0px 14px;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        color: #ffffff;
        height: 18px;
        display: flex;
        align-items: center;
    }
    #landing .locations-section .location-description {
        font-size: 14px;
        color: #6e6e6e;
        line-height: 1.4;
    }

    #landing .about-section .about-description {
        margin:0px;
    }
    #landing .about-description p { text-align: left; }
    #landing .about-features {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 24px 0 16px 0;
        border-bottom: none;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    #landing .about-features::before, #landing .about-features::after { display: none; }
    #landing .about-features .feature-item {
        padding: 18px 0;
        align-items: center;
        border-right: none;
        border-bottom: 1px solid #e8e2da; /* 가로 구분선 */
    }
    #landing .about-features .feature-item:last-child { border-bottom: none; }
    #landing .about-features .feature-item:not(:last-child) {
        border-right: none;
    }
    #landing .feature-title { font-size: 20px; }
    #landing .feature-description { font-size: 14px; }

    #landing .cta-section {
        padding: 20px 0;
    }
    
    #landing .cta-container {
        gap: 1px;
    }
    
    #landing .cta-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    #landing .cta-buttons {
        align-items: center;
        gap: 5px;
    }
    
    #landing .cta-button {
        font-size: 12px;
        min-width: 100px;
        height: 26px;
        padding: 10px 10px;
    }
    
    #landing .cta-image img {
        width: 120px;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Desktop (1024px to 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .property-content {
        padding: 0 30px;
    }
    
    .property-subtitle {
        font-size: 44px;
    }
    
    .property-cta-btn {
        font-size: 20px;
        width: 190px;
    }
    
    /* 슬라이더 반응형 특이 설정 없음 */
    
    .about-features {
        gap: 40px;
    }

    /* Align pagination with .property-content padding on desktop 1024-1199px */
    .property-pagination.swiper-pagination {
        left: 30px;
        margin-left: 0;
    }
}

/* Tablet (820px to 1023px) */
@media (max-width: 1023px) and (min-width: 820px) {
    .property-section {
        height: 500px;
    }
    
    .property-content {
        padding: 0 25px;
    }
    
    .property-text {
        margin-top: 150px;
    }
    
    .property-subtitle {
        font-size: 36px;
    }
    
    .property-cta-btn {
        font-size: 18px;
        width: 170px;
        height: 42px;
    }
    
    /* Align pagination with .property-content padding on tablet */
    .property-pagination.swiper-pagination {
        left: 25px;
        margin-left: 0;
    }
    
    .pagination-dot {
        width: 60px;
    }
    
    #landing .lifestyle-section,
    #landing .locations-section,
    #landing .process-section,
    #landing .about-section {
        padding: 80px 0;
    }
    
    #landing .lifestyle-section .lifestyle-grid {
        gap: 30px;
    }
    
    #landing .lifestyle-section .lifestyle-card {
        height: 300px;
    }
    
    #landing .lifestyle-section .card-content {
        padding: 30px;
    }
    
    #landing .lifestyle-section .card-title {
        font-size: 32px;
    }
    
    #landing .lifestyle-section .card-description {
        font-size: 18px;
        margin-bottom: 0px;
    }
    
    /* 슬라이더 반응형 특이 설정 없음 */
    
    #landing .locations-section .location-image { width: 280px; height: 380px; }
    
    .location-info {
        height: 160px;
        padding: 30px 20px;
    }
    
    .location-name {
        font-size: 20px;
    }
    
    .location-description {
        font-size: 16px;
    }
    
    .process-steps {
        gap: 60px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-item {
        align-items: center;
    }
}

/* Mobile (280px to 819px) */
@media (max-width: 819px) {
    /* Property pagination: center bottom on mobile */
    .property-pagination.swiper-pagination {
        left: 50%;
        transform: translateX(-50%);
        bottom: 26px;
        gap: 10px;
    }
    .property-pagination .swiper-pagination-bullet {
        width: 50px;
        height: 3px;
    }
    /* prevent horizontal scroll on Life & Stay section */
    .lifestyle-section .section-container,
    .lifestyle-grid,
    .lifestyle-card {
        overflow: hidden;
    }
    .property-section {
        height: 570px;
    }
    
    .property-content {
        padding: 0 20px;
        justify-content: flex-end;
    }
    
    .property-text {
        margin-top: auto;
        margin-bottom: 80px;
    }
    
    .property-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .property-subtitle {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .property-cta-btn {
        font-size: 16px;
        width: 160px;
        height: 36px;
        padding: 0px 8px;
    }
    
    .property-pagination {
        margin-left: 0;
        justify-content: center;
    }
    
    .pagination-dot {
        width: 42px;
        height: 3px;
    }
    
    #landing .lifestyle-section,
    #landing .locations-section,
    #landing .process-section,
    #landing .about-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    #landing .lifestyle-section .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    #landing .lifestyle-section .lifestyle-card {
        height: auto;
        min-height: 210px;
    }
    
    #landing .lifestyle-section .card-content {
        padding: 20px;
        width: 60%;
        min-height: 100%;
    }
    
    #landing .lifestyle-section .landing-card-header {
        margin-bottom: 20px;
        gap: 15px;
    }
    
    #landing .lifestyle-section .card-title {
        font-size: 32px;
    }
    
    #landing .lifestyle-section .card-badge {
        font-size: 14px;
    }
    
    #landing .lifestyle-section .card-description {
        font-size: 14px;
        position: absolute;
        left: 20px;
        bottom: 20px;
        text-align: left;
        padding-right: 10px;
        padding-right: 20px;
        word-break: auto-phrase;
        margin-bottom: 0px;
    }
    
    #landing .locations-section .locations-viewport {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    #landing .locations-section .locations-track {
        gap: 16px;
    }
    
    #landing .locations-section .location-card {
        display: block;
        height: auto;
    }
    
    #landing .locations-section .location-image {
        width: 220px;
        height: 320px;
    }
    
    #landing .locations-section .location-info {
        height: auto;
        padding: 20px 0 0 0;
        background-color: transparent;
        display: block;
    }
    
    .location-name {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .location-description {
        font-size: 14px;
    }
    
    #landing .locations-section .locations-navigation {
        display: none;
    }
    
    /* Process (Mobile) */
    #landing .process-section .section-title .title-desktop { display: none; }
    #landing .process-section .section-title .title-mobile { display: inline; }
    
    #landing .process-section .section-header {
        text-align: left;
        margin-bottom: 40px;
    }
    /* 섹션 태그는 모바일에서 대문자 변환 제거 (디자인 시안과 동일) */
    #landing .process-section .section-tag {
        text-transform: none;
    }
    
    #landing .process-section .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
        max-width: 560px;
        margin: 0;
    }
    
    /* Step: media-object + timeline connector */
    #landing .process-section .process-step {
        background: transparent;
        border-radius: 0;
        padding: 0 0 12px 0;
        display: grid;
        grid-template-columns: 40px 1fr;
        column-gap: 16px;
        align-items: start;
        text-align: left;
    }
    #landing .process-section .process-step:not(:last-child)::after { display: none; }
    
    #landing .process-section .step-number {
        position: relative;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 2px;
    }
    #landing .process-section .process-step:not(:last-child) .step-number::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 38px;
        transform: translateX(-50%);
        width: 2px;
        height: 78px;
        background: #000000;
        opacity: 0.6;
    }
    
    #landing .process-section .step-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
        background: #000000;
    }
    
    #landing .process-section .step-title {
        font-size: 20px;
        margin: 0 0 4px 0;
        position: relative;
    }
    #landing .process-section .step-title::before { content: none; }
    
    #landing .process-section .step-description {
        font-size: 14px;
        line-height: 1.4;
        color: #6e6e6e;
    }

    /* 텍스트 컨테이너 좌측 정렬 고정 */
    #landing .process-section .step-content { text-align: left; }
    
    .process-section .section-header {
        text-align: left;
        margin-bottom: 60px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .step-number {
        margin-bottom: 20px;
    }
    
    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .about-description p {
        font-size: 15px;
        text-align: left;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .feature-item {
        align-items: flex-start;
        gap: 15px;
    }
    
    .feature-icon {
        width: 25px;
        height: 25px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
}

/* Small Mobile (280px to 480px) */
@media (max-width: 480px) {
    .property-section {
        height: 500px;
    }
    
    .property-subtitle {
        font-size: 28px;
    }
    
    .property-cta-btn {
        width: 140px;
        font-size: 14px;
    }
    
    .lifestyle-card {
        height: 180px;
    }
    
    .card-content {
        padding: 16px;
        width: 60%;
        min-height: 100%;
    }
    
    .card-title {
        font-size: 28px;
    }
    
    .location-image {
        width: 180px;
        height: 280px;
    }
    
    .location-info {
        padding: 16px;
    }
}