.text-center { text-align: center; }
.left-aligned-title { text-align: left; }

.hero.secondary-hero.architecture-hero {
    min-height: 55vh;
    min-height: 55svh;
    align-items: center;
    padding: var(--space-8) var(--space-4);
}

.hero.secondary-hero.architecture-hero .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hero-intro-text {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: var(--space-4) 0 var(--space-5) 0;
    max-width: 640px;
}

.our-story-section {
    padding: var(--space-7) var(--space-4);
    background-color: var(--background);
}

.split-story-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    max-width: var(--container);
    margin: 0 auto;
}

.story-image-block {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.story-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-badge {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-xs);
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.story-title-main {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 var(--space-4) 0;
    letter-spacing: -0.01em;
}

.story-para {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 var(--space-4) 0;
}

.story-para:last-child {
    margin-bottom: 0;
}

.about-experience-matrix {
    padding: var(--space-6) var(--space-4);
    background-color: var(--background-dark);
}

.experience-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: var(--container);
    margin: 0 auto;
}

.matrix-card {
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-5) var(--space-3);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.matrix-number {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.1;
}

.matrix-line {
    width: 32px;
    height: 1px;
    background-color: var(--accent);
    margin: 0 auto var(--space-2) auto;
}

.matrix-desc {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.team-section {
    padding: var(--space-7) var(--space-4);
    background-color: var(--surface);
    border-top: 1px solid var(--border-color);
}

.team-cards-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    max-width: var(--container);
    margin: var(--space-6) auto 0 auto;
}

.team-card-node {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.team-card-node:hover {
    transform: var(--hover);
    box-shadow: var(--shadow-md);
}

.team-card-node.highlighted-team-card {
    border-color: var(--accent-light);
    background-color: #FAF8F5;
}

.team-photo-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--background-dark);
}

.team-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-details {
    padding: var(--space-5);
}

.member-name {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 var(--space-1) 0;
}

.member-role {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin: 0 0 var(--space-3) 0;
}

.member-bio {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.how-we-work-section {
    padding: var(--space-7) var(--space-4);
    background-color: var(--background);
    border-top: 1px solid var(--border-color);
}

.workflow-grid-split {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    max-width: var(--container);
    margin: 0 auto;
}

.workflow-text-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workflow-main-heading {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--text);
    margin: var(--space-2) 0 var(--space-4) 0;
    letter-spacing: -0.01em;
}

.workflow-paragraph {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 var(--space-4) 0;
}

.workflow-paragraph:last-child {
    margin-bottom: 0;
}

.workflow-image-side {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.workflow-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: var(--space-7) var(--space-4);
    background-color: var(--surface);
    border-top: 1px solid var(--border-color);
}

.values-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: var(--container);
    margin: var(--space-6) auto 0 auto;
}

.value-card-item {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    padding: var(--space-5);
    border-radius: var(--radius-md);
}

.value-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 var(--space-2) 0;
}

.value-card-desc {
    font-size: var(--fs-base);
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.about-page-cta {
    padding: var(--space-8) var(--space-4);
    background-color: var(--background-dark);
    border-top: 1px solid var(--border-color);
}

.cta-heading-custom {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 var(--space-2) 0;
    letter-spacing: -0.01em;
}

.cta-text-helper {
    font-size: var(--fs-base);
    color: var(--text-light);
    margin: 0 0 var(--space-5) 0;
}

.about-page-cta .btn {
    min-width: 200px;
}

@media (min-width: 768px) {
    .our-story-section, .team-section, .how-we-work-section, .values-section {
        padding: var(--section-pad) var(--space-5);
    }

    .hero.secondary-hero.architecture-hero {
        min-height: 60vh;
        padding: var(--hero-pad) var(--space-6);
    }
    
    .hero-intro-text {
        font-size: var(--fs-lg);
    }

    .split-story-grid {
        flex-direction: row;
        gap: var(--space-6);
    }
    .story-image-block, .story-text-block { flex: 1; }
    .story-title-main { font-size: var(--fs-3xl); }

    .workflow-grid-split {
        flex-direction: row-reverse;
        gap: var(--space-6);
    }
    .workflow-text-side, .workflow-image-side { flex: 1; }
    .workflow-main-heading { font-size: var(--fs-3xl); }

    .experience-grid-row {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-5);
    }
    .matrix-card { padding: var(--space-6) var(--space-4); }
    .matrix-number { font-size: var(--fs-4xl); }

    .team-card-node {
        flex-direction: row;
        align-items: stretch;
    }
    .team-photo-frame {
        width: 240px;
        height: auto;
        aspect-ratio: auto;
        flex-shrink: 0;
    }
    .team-details {
        padding: var(--space-6);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .values-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
    
    .cta-heading-custom {
        font-size: var(--fs-4xl);
    }
}

@media (min-width: 1024px) {
    .split-story-grid, .workflow-grid-split { gap: var(--space-8); }
    
    .team-cards-grid { gap: var(--space-6); }
    .team-photo-frame { width: 280px; }
    
    .values-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }

    .value-card-item:nth-child(4) {
        grid-column: span 1;
    }
    .value-card-item:nth-child(5) {
        grid-column: span 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}