/* About Page Styles */

.about-header {
    background: var(--bg-alt);
}

/* Story Section */
.story-section {
    padding: 6rem 3rem;
    background: var(--bg);
}

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

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Process Section */
.process-section {
    padding: 6rem 3rem;
    background: var(--bg-alt);
}

.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-header .section-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.process-header h2 {
    margin-bottom: 0.5rem;
}

.process-header p {
    color: var(--text-muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg);
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.step-icon {
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 6rem 3rem;
    background: var(--bg);
}

.values-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.value-card:hover {
    border-color: var(--gold);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 3rem;
    background: var(--bg-alt);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    padding: 6rem 3rem;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        order: -1;
    }
    
    .process-grid,
    .values-content,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-section,
    .process-section,
    .values-section,
    .cta-section,
    .stats-section {
        padding: 4rem 1.5rem;
    }
    
    .process-grid,
    .values-content,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}