/* Hero Section */
.hero {
    padding-top: 240px;
    margin-bottom: 86px;
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.hero-title {
    font-family: 'Museo Sans', sans-serif;
    font-size: 48px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -1%;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 1240px;
}

.hero-subtitle {
    font-size: var(--text-lg);
    line-height: 1.5;
    letter-spacing: -2%;
    color: #848A8F;
    max-width: 1240px;
}

/* Main Image */
.main-video-section {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto 100px auto;
    padding: 0 100px;
    
}
.main-image {
    position: relative;
    width: 100%;
}

.main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Philosophy Section */
.philosophy {
    max-width: 1440px;
    margin: 0 auto 100px auto;
    padding: 0 130px;
}

.philosophy-text {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -2%;
    color: #12171A;
    text-align: left;
    max-width: 707px;
}

/* Feature Sections */
.feature-section {
    max-width: 1440px;
    margin: 0 auto 140px auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    max-width: 940px;
}

.feature-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.feature-content {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-content.right-align {
    align-items: flex-end;
    text-align: right;
}

.feature-number {
    font-family: 'Museo Sans', sans-serif;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -2%;
    line-height: 1.5;
    color: #12171A;
}

.feature-description {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -2%;
    color: #53585D;
    max-width: 280px;
    margin-bottom: 0;
}

/* Large Image Section */
.video-section {
    max-width: 1440px;
    margin: 0 auto 150px auto;
    padding: 0 120px;
    position: relative;
}

.large-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
        margin-bottom: 50px;
    }

    .hero-content, .philosophy {
        padding: 0 20px;
    
    }

    .main-video-section {
        padding: 0;
    }

    .main-image, .large-image {
        padding: 0;
    }

    .large-image {
        margin-bottom: 80px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .feature-section {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
        align-items: flex-start;
    }

    .feature-image {
        padding-right: 20px;
    }

    .feature-image.reverse {
        padding-right: 0;
        padding-left: 20px;
    }
    
    .feature-section.reverse {
        flex-direction: column;
    }
    
    .feature-content {
        flex: none;
        padding: 0 20px;
    }
    
    .feature-content.right-align {
        align-items: flex-start;
        text-align: left;
    }
    
    .interior-section {
        flex-direction: column;
        margin: 0 20px;
    }
    
    .interior-info {
        padding: 30px 20px;
    }

    .video-section {
        padding: 0;
        margin: 0 auto;
    }

    .large-image {
        height: auto;
    }
    
}