/* Story Section */
.story {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
}

.story-header {
    grid-column: span 5;
}

.story-header h2 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.accent-bar {
    width: 6rem;
    height: 4px;
    background: var(--primary-container);
}

.story-body {
    grid-column: span 7;
    font-size: 1.125rem;
    color: var(--secondary);
}

.story-body p {
    margin-bottom: 2rem;
}

.drop-cap::first-letter {
    font-family: var(--font-headline);
    font-size: 4rem;
    font-weight: 900;
    float: left;
    margin-right: 0.5rem;
    color: var(--primary);
    line-height: 1;
}

/* Leadership */
.leadership {
    background-color: var(--surface-container-low);
    padding: 6rem 0;
}

.leadership-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.leader-img-wrapper {
    flex: 1;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 0.5rem;
    background: var(--surface-container-high);
}

.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.leader-info {
    flex: 1;
}

.leader-label {
    color: var(--primary);
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.leader-name {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 0.9;
    margin-bottom: 0.25rem;
}

.leader-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: italic;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.achievement-card {
    background: var(--surface-container-lowest);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-container);
}

.achievement-card h4 {
    font-family: var(--font-headline);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.achievement-card p {
    font-size: 0.875rem;
    color: var(--secondary);
}

/* Values */
.values {
    padding: 6rem 0;
}

.values-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

.values-quote {
    max-width: 350px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-style: italic;
    text-align: right;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--surface-container-lowest);
    padding: 2.5rem;
    transition: background-color var(--transition);
}

.value-card:hover {
    background: var(--surface-container-high);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.value-icon .material-symbols-outlined {
    color: white;
}

.value-card h4 {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--secondary);
    line-height: 1.6;
}

/* Stats */
.stats {
    background: #1a1c1c;
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-number {
    font-family: var(--font-headline);
    font-weight: 900;
    font-size: 3rem;
    color: var(--primary-container);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-header,
    .story-body {
        grid-column: auto;
    }

    .leadership-grid {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        /* grid-template-columns: repeat(2, 1fr); */
        grid-template-columns: 1fr;
    }

    /* .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    } */
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}