/* --- O nas: Hero --- */
.about-hero-modern {
    padding: 160px 20px 100px;
    background-color: var(--bg-color);
}

.about-hero-modern h1 {
    font-size: 72px;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 24px;
    color: #000;
}

.about-hero-modern .lead {
    font-size: 28px;
    font-weight: 400;
    color: #1d1d1f;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.004em;
}

.text-center {
    text-align: center;
}

/* --- O nas: Historia (Grid ze zdjęciem) --- */
.about-story-section {
    padding: 80px 0 140px;
    background-color: var(--bg-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image {
    width: 100%;
}

.story-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    object-fit: cover;
}

.story-content h2 {
    font-size: 48px;
    line-height: 1.08349;
    letter-spacing: -0.003em;
    margin-bottom: 30px;
    color: #000;
}

.story-content p {
    font-size: 21px;
    line-height: 1.47059;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.story-content strong {
    color: #000;
}

/* --- O nas: Filozofia --- */
.about-philosophy {
    padding: 140px 0;
    background-color: #000;
    color: #fff;
}

.about-philosophy h2 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.005em;
}

.philosophy-intro {
    font-size: 24px;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
}

.philosophy-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    border-bottom: 2px solid #fff;
    padding-bottom: 16px;
    display: inline-block;
}

.philosophy-card p {
    font-size: 17px;
    color: #fff;
    line-height: 1.5;
}

/* --- O nas: CTA na dole --- */
.about-cta {
    padding: 120px 0;
    background-color: var(--bg-color);
}

.about-cta h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #000;
}

/* --- Responsywność --- */
@media (max-width: 1024px) {
    .about-hero-modern h1 { font-size: 64px; }
    .about-philosophy h2 { font-size: 48px; }
    .story-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .about-hero-modern {
        padding: 120px 20px 60px;
    }
    .about-hero-modern h1 {
        font-size: 42px;
    }
    .about-hero-modern .lead {
        font-size: 21px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: 2; /* Zdjęcie na dole na mobilkach, żeby tekst był wyżej */
    }
    
    .story-content {
        order: 1;
    }
    
    .story-content h2 {
        font-size: 36px;
    }
    
    .about-philosophy {
        padding: 80px 20px;
    }
    
    .about-philosophy h2 {
        font-size: 36px;
    }
    
    .philosophy-intro {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-card {
        padding: 40px 30px;
    }
    
    .about-cta {
        padding: 80px 20px;
    }
    .about-cta h2 {
        font-size: 32px;
    }
}