

/* css/about.css */
.about-hero {
    background: linear-gradient(rgba(255,248,242,.35), rgba(255,248,242,.55)),
                url('https://images.unsplash.com/photo-1499636136210-6f4ee915583e?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
    height: 75vh;
    min-height: 520px;
}

/* Story Section */
.story-section {
    padding: 100px 24px;
    background: #FFF8F2;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #6B4F43;
}

.story-text p {
    margin-bottom: 1.4rem;
}

.story-text strong {
    color: #D9776A;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover .story-img {
    transform: scale(1.05);
}

/* Values */
.values-section {
    padding: 90px 24px;
    background: #FFFFFF;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #F5EAE3;
    padding: 40px 28px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #E8D7CF;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    border-color: #D9776A;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3);
}

.value-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 24px;
    background: rgba(217,119,106,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #D9776A;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #A65A4D;
}

/* Journey */
.journey-section {
    padding: 90px 24px;
    background: #FFF8F2;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.journey-card {
    background: #F5EAE3;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E8D7CF;
}

.journey-card:hover {
    border-color: #D9776A;
    transform: translateY(-8px);
}

.icon-journey {
    font-size: 3rem;
    color: #D9776A;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero {
        height: 65vh;
    }
}

